/* ===========================================================
   드림랩 DreamLAB — 홈페이지
   디자인 원본: 드림랩 홈페이지.dc.html (Claude Design)
   =========================================================== */

:root {
  --ink: #14171d;
  --ink-2: #3d434d;
  --muted: #656b76;
  --muted-2: #8c929c;
  --muted-3: #b0b6c0;

  --blue: #336dc9;
  --blue-dark: #24518f;
  --blue-light: #4a80d8;
  --blue-tint: #eef3fc;
  --blue-tint-2: #f4f8ff;
  --blue-border: #dbe4f4;

  --gold: #f2c540;
  --gold-tint: #fdf5e0;
  --red: #c0392b;
  --green: #6ee7a8;

  --night: #0b1020;
  --night-hero: #080d18;
  --night-card: #121a2e;
  --night-line: #1f2a44;
  --night-line-2: #1c2438;
  --night-text: #97a5bd;
  --night-text-2: #9aa8c0;
  --night-text-3: #b6c3d8;
  --night-dim: #6d7d99;
  --footer-text: #8a9ab4;

  --bg-soft: #f6f7f9;
  --bg-soft-2: #fafbfc;
  --surface-2: #f1f3f6;
  --chip: #f2f4f7;

  --line: #eceef2;
  --border: #e5e8ed;
  --border-2: #e8eaef;
  --border-3: #dfe3e9;
  --border-4: #e2e5ea;

  --wrap: 1200px;
  --pad-x: 32px;
  --header-h: 68px;
}

/* ---------- reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  letter-spacing: -.022em;
  word-break: keep-all;
  font-family: "Pretendard Variable", Pretendard, "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); text-decoration: underline; }

img { max-width: 100%; }
input, select, textarea, button { font-family: inherit; }

/* 컴포넌트에서 display:flex 등을 지정하면 UA의 [hidden]{display:none}을
   이겨버리므로, JS로 토글하는 hidden이 항상 우선하도록 못 박는다. */
[hidden] { display: none !important; }
h1, h2, h3 { margin: 0; }
p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 8px 0;
  font-size: 14px;
  font-weight: 700;
}
.skip-link:focus { left: 0; color: #fff; text-decoration: none; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- keyframes ---------- */
@keyframes dl-glow { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }
@keyframes dl-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.dl-up { animation: dl-up .3s ease both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ---------- typography helpers ---------- */
.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .13em;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--red { color: var(--red); }

.h-sec {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -.045em;
}
.h-sec--sm { font-size: 34px; line-height: 1.34; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 54px;
  padding: 0 30px;
  border: none;
  border-radius: 11px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }

.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-light); color: #fff; }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--blue); color: #fff; }

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .24);
}
.btn--ghost-light:hover { border-color: #fff; color: #fff; }

.btn--outline {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border-3);
}
.btn--outline:hover { border-color: var(--ink); color: var(--ink); }

.btn--block { width: 100%; }
.btn--sm { height: 46px; padding: 0 26px; font-size: 15px; border-radius: 10px; }

/* ===========================================================
   header
   =========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-header__logo { display: flex; align-items: center; flex: none; }
.site-header__logo img { height: 26px; width: auto; display: block; }

.site-nav {
  display: flex;
  gap: 30px;
  font-size: 15px;
  font-weight: 600;
  color: #4a4f58;
}
.site-nav a { color: inherit; }
.site-nav a:hover { color: var(--blue); text-decoration: none; }

.site-header__spacer { flex: 1; }
.site-header__actions { display: flex; align-items: center; gap: 12px; }

.cart-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 14px;
  border: 1px solid var(--border-3);
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: border-color .16s ease, color .16s ease;
}
.cart-btn:hover { border-color: var(--blue); color: var(--blue); text-decoration: none; }

/* 장바구니 아이콘 — 디자인 원본의 CSS 도형을 그대로 유지 */
.cart-ico {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 13px;
  border: 1.8px solid currentColor;
  border-top: none;
  border-radius: 0 0 4px 4px;
}
.cart-ico::before {
  content: "";
  position: absolute;
  left: 2px;
  top: -6px;
  width: 9px;
  height: 7px;
  border: 1.8px solid currentColor;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
}

.buy-btn {
  display: flex;
  align-items: center;
  height: 38px;
  padding: 0 18px;
  background: var(--blue);
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  transition: background-color .16s ease;
}
.buy-btn:hover { background: var(--blue-dark); color: #fff; text-decoration: none; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 38px;
  border: 1px solid var(--border-3);
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 11px;
  width: 16px;
  height: 1.8px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .18s ease, opacity .18s ease;
}
.nav-toggle::before { top: 13px; }
.nav-toggle span { top: 18px; }
.nav-toggle::after { top: 23px; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-5px) rotate(-45deg); }

/* ===========================================================
   01 hero
   =========================================================== */
.hero {
  position: relative;
  background: var(--night-hero);
  color: #fff;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; }
.hero[data-tone="night"] .hero__bg {
  background: radial-gradient(1100px 620px at 78% 18%, #1b2b4d 0%, #0c1424 46%, #070b14 100%);
}
.hero[data-tone="dawn"] .hero__bg {
  background: radial-gradient(1100px 620px at 78% 18%, #4a4266 0%, #23253e 44%, #101420 100%);
}

.hero__inner {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 48px;
  min-height: 660px;
}

.hero__copy { padding: 96px 0; }

.hero__tag {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
}
.hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: dl-glow 2.6s ease-in-out infinite;
}
.hero__tag span:last-child {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .13em;
  color: #9fb3d4;
}

.hero h1 {
  font-size: 60px;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -.05em;
}
.hero h1 em { font-style: normal; color: var(--gold); }

.hero__lead {
  margin-top: 32px;
  font-size: 18.5px;
  line-height: 1.86;
  color: #b8c4d8;
  max-width: 480px;
}
.hero__lead b { color: #fff; font-weight: 700; }

.hero__cta { display: flex; gap: 12px; margin-top: 44px; flex-wrap: wrap; }

.hero__stats {
  display: flex;
  gap: 34px;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .11);
}
.hero__stats dt {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -.03em;
}
.hero__stats dd {
  margin: 5px 0 0;
  font-size: 13px;
  color: #8a9ab4;
}

.hero__media { position: relative; height: 660px; }
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% 50%;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--night-hero) 0%, rgba(8, 13, 24, .35) 26%, rgba(8, 13, 24, 0) 58%);
}

.hero__badge {
  position: absolute;
  left: 34px;
  bottom: 40px;
  z-index: 1;
  background: rgba(10, 15, 26, .62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 13px;
  padding: 15px 19px;
}
.hero__badge b {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
}
.hero__badge span {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #e8eefa;
  margin-top: 5px;
}

/* ===========================================================
   02 why
   =========================================================== */
.why {
  background: var(--bg-soft);
  padding: 96px 0;
}
.why__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
.why h2 {
  font-size: 38px;
  line-height: 1.34;
  font-weight: 800;
  letter-spacing: -.045em;
}
.why__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 8px;
}

.card-plain {
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: 15px;
  padding: 30px 26px;
}
.card-plain h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.03em;
  margin-bottom: 11px;
}
.card-plain p {
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--muted);
}

.why__ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why__ico--blue { background: var(--blue-tint); }
.why__ico--gold { background: var(--gold-tint); }
.why__ico i {
  display: block;
  font-style: normal;
}
.why__ico--blue .ico-ring {
  width: 15px; height: 15px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  border-top-color: transparent;
}
.why__ico--gold .ico-square {
  width: 14px; height: 14px;
  border-radius: 4px;
  background: var(--gold);
}
.why__ico--blue .ico-pillow {
  width: 16px; height: 9px;
  border-radius: 5px 5px 2px 2px;
  background: var(--blue);
}

/* ===========================================================
   03 products
   =========================================================== */
.products { padding: 104px 0; background: #fff; }

.products__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}
.products__head p {
  font-size: 15px;
  line-height: 1.8;
  color: #6b7280;
  max-width: 340px;
  text-align: right;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.product__media {
  position: relative;
  height: 250px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product__media img { width: 100%; height: 100%; object-fit: cover; }

.product__placeholder { text-align: center; padding: 0 28px; }
.product__placeholder .shape {
  width: 74px;
  height: 42px;
  margin: 0 auto 16px;
  border-radius: 20px 20px 9px 9px;
  background: #dfe3ea;
}
.product__placeholder span {
  font-size: 13px;
  font-weight: 700;
  color: #9aa1ac;
  line-height: 1.7;
}
.product__placeholder small { font-weight: 400; font-size: 12px; }

.product__en {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, .94);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--ink);
}

.product__body {
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product__body h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.04em;
  margin-bottom: 9px;
}
.product__desc {
  font-size: 14.5px;
  line-height: 1.76;
  color: var(--muted);
  margin-bottom: 18px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}
.tag {
  background: var(--chip);
  border-radius: 6px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 600;
  color: #545a65;
}

.product__spacer { flex: 1; }

.product__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}
.product__price b {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -.04em;
}
.product__price span { font-size: 13px; color: var(--muted-2); }

.product__buy { display: flex; gap: 8px; }

.stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-3);
  border-radius: 9px;
  height: 44px;
  overflow: hidden;
  flex: none;
}
.stepper button {
  width: 38px;
  height: 100%;
  border: none;
  background: #fff;
  font-size: 17px;
  color: #545a65;
  cursor: pointer;
  transition: background-color .14s ease;
}
.stepper button:hover { background: var(--chip); }
.stepper output {
  width: 32px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.stepper--sm { height: 36px; border-radius: 8px; }
.stepper--sm button { width: 32px; font-size: 15px; }
.stepper--sm output { width: 28px; font-size: 14px; }

.product__add {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  background: var(--ink);
  border: none;
  border-radius: 9px;
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: background-color .16s ease;
}
.product__add:hover { background: var(--blue); }

/* bundle */
.bundle {
  margin-top: 20px;
  border: 1px solid var(--blue-border);
  background: linear-gradient(100deg, var(--blue-tint-2), #fff);
  border-radius: 18px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.bundle__text { flex: 1; }
.bundle__labels {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.badge-blue {
  background: var(--blue);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 5px;
}
.bundle__labels em {
  font-style: normal;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
}
.bundle h3 {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -.04em;
  margin-bottom: 7px;
}
.bundle p { font-size: 14.5px; line-height: 1.76; color: #5d636e; }

.bundle__buy { text-align: right; flex: none; }
.bundle__was {
  font-size: 13.5px;
  color: var(--muted-2);
  text-decoration: line-through;
}
.bundle__now {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -.04em;
  margin: 2px 0 12px;
}
.bundle__buy .btn--sm { background: var(--blue); color: #fff; }
.bundle__buy .btn--sm:hover { background: var(--blue-dark); }

/* ===========================================================
   04 recovery system
   =========================================================== */
.system {
  background: var(--night);
  color: #fff;
  padding: 104px 0;
}
.system__head { text-align: center; margin-bottom: 60px; }
.system__head h2 { margin-bottom: 18px; }
.system__head p {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--night-text);
}

.system__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  background: var(--night-card);
  border: 1px solid var(--night-line);
  border-radius: 18px;
  padding: 34px 30px;
}
.step-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 26px;
}
.step-card__time {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.step-card__no {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--night-dim);
}
.step-card h3 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.035em;
  margin-bottom: 13px;
}
.step-card p {
  font-size: 15px;
  line-height: 1.82;
  color: var(--night-text-2);
  margin-bottom: 22px;
}
.step-card__foot {
  font-size: 13px;
  font-weight: 700;
  color: #e4eaf5;
  border-top: 1px solid var(--night-line);
  padding-top: 16px;
}

/* ===========================================================
   05 routi
   =========================================================== */
.routi { padding: 104px 0; background: #fff; }

.routi__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 56px;
}
.routi h2 {
  font-size: 40px;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: -.048em;
  margin-bottom: 22px;
}
.routi__lead {
  font-size: 16.5px;
  line-height: 1.86;
  color: #5d636e;
  margin-bottom: 32px;
}

.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.feat {
  border-left: 2px solid var(--blue);
  padding: 3px 0 3px 15px;
}
.feat dt { font-size: 15.5px; font-weight: 700; }
.feat dd {
  margin: 4px 0 0;
  font-size: 13.5px;
  color: #7a808b;
}

/* recovery score card */
.score {
  background: var(--night);
  border-radius: 20px;
  padding: 34px;
  color: #fff;
}
.score__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}
.score__head span:first-child {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--night-text);
}
.score__date { font-size: 12px; font-weight: 700; color: var(--gold); }

.score__value {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 30px;
}
.score__value b {
  font-size: 68px;
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.score__delta {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  padding-bottom: 12px;
}

.score__bars { display: flex; flex-direction: column; gap: 15px; }
.score__row-label {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  margin-bottom: 7px;
}
.score__row-label span:first-child { color: var(--night-text-3); }
.score__row-label span:last-child { font-weight: 700; font-variant-numeric: tabular-nums; }
.score__track {
  height: 6px;
  border-radius: 3px;
  background: var(--night-line);
  overflow: hidden;
}
.score__fill { height: 100%; border-radius: 3px; }
.score__fill--blue { background: var(--blue); }
.score__fill--gold { background: var(--gold); }
.score__fill--green { background: var(--green); }

.score__note {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--night-line);
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--night-text-3);
}

/* photo cards */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.photo-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 12, 24, .82) 0%, rgba(6, 12, 24, 0) 52%);
}
.photo-card__cap {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: #fff;
}
.photo-card__cap b {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.03em;
}
.photo-card__cap span {
  display: block;
  font-size: 13.5px;
  color: #c3cfe2;
  margin-top: 5px;
}

/* ===========================================================
   06 reboot routine
   =========================================================== */
.reboot {
  background: var(--bg-soft);
  padding: 104px 0;
}
.reboot__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 60px;
  align-items: center;
}
.reboot__frame {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--border-2);
}
.reboot__frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.reboot h2 {
  font-size: 40px;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: -.048em;
  margin-bottom: 22px;
}
.reboot__lead {
  font-size: 16.5px;
  line-height: 1.86;
  color: #5d636e;
  margin-bottom: 30px;
}
.ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 30px;
}
.ingredients li {
  list-style: none;
  background: #fff;
  border: 1px solid var(--border-4);
  border-radius: 7px;
  padding: 8px 13px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
}
.ingredients { padding: 0; margin-top: 0; }

.spec {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-4);
  border: 1px solid var(--border-4);
  border-radius: 12px;
  overflow: hidden;
}
.spec > div { background: #fff; padding: 20px 18px; }
.spec dt {
  font-size: 12px;
  color: var(--muted-2);
  margin-bottom: 6px;
}
.spec dd {
  margin: 0;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.5;
}

/* ===========================================================
   07 checkout
   =========================================================== */
.checkout {
  padding: 104px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}
.checkout__head { margin-bottom: 40px; }

.steps {
  display: flex;
  align-items: stretch;
  margin-bottom: 40px;
  border: 1px solid var(--border);
  border-radius: 13px;
  overflow: hidden;
}
.steps__item {
  flex: 1;
  padding: 19px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  border-right: 1px solid var(--border);
}
.steps__item:last-child { border-right: none; }
.steps__item.is-current { background: var(--blue-tint-2); }
.steps__item.is-current::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--blue);
}
.steps__mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #eef0f4;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.steps__item.is-active .steps__mark { background: var(--blue); color: #fff; }
.steps__label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.03em;
}

.checkout__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}

.panel {
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 28px 26px;
}
.panel + .panel { margin-top: 16px; }
.panel h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.035em;
  margin-bottom: 20px;
}

/* cart list */
.cart-empty {
  padding: 30px 0;
  text-align: center;
  font-size: 14.5px;
  color: var(--muted-2);
}
.cart-list { display: flex; flex-direction: column; gap: 14px; }
.cart-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f2f5;
}
.cart-item__thumb {
  width: 68px;
  height: 68px;
  border-radius: 10px;
  background: var(--surface-2);
  flex: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__thumb .shape {
  width: 30px;
  height: 17px;
  border-radius: 9px 9px 4px 4px;
  background: #dfe3ea;
}
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -.03em;
}
.cart-item__opt {
  font-size: 13px;
  color: var(--muted-2);
  margin-top: 4px;
}
.cart-item__line {
  width: 104px;
  text-align: right;
  font-size: 15.5px;
  font-weight: 700;
  flex: none;
  font-variant-numeric: tabular-nums;
}
.cart-item__remove {
  width: 30px;
  height: 30px;
  border: none;
  background: none;
  color: var(--muted-3);
  font-size: 17px;
  cursor: pointer;
  flex: none;
  border-radius: 6px;
}
.cart-item__remove:hover { color: var(--ink); }

/* subscription toggle */
.sub-box {
  margin-top: 18px;
  background: var(--blue-tint-2);
  border: 1px solid var(--blue-border);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.switch {
  position: relative;
  width: 46px;
  height: 27px;
  border-radius: 14px;
  border: none;
  background: #d7dce4;
  cursor: pointer;
  flex: none;
  padding: 0;
  transition: background-color .18s ease;
}
.switch[aria-checked="true"] { background: var(--blue); }
.switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
  transition: left .18s ease;
}
.switch[aria-checked="true"]::after { left: 22px; }

.sub-box__text { flex: 1; }
.sub-box__text b {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.03em;
}
.sub-box__text span {
  display: block;
  font-size: 13px;
  color: #5d636e;
  margin-top: 4px;
}
.sub-box__save {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  flex: none;
}

/* form */
.field { display: block; }
.field > span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #545a65;
  margin-bottom: 7px;
}
.input,
.select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--border-3);
  border-radius: 9px;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .14s ease;
}
.select { padding: 0 12px; }
.input:focus,
.select:focus { border-color: var(--blue); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-block { margin-top: 14px; }
.form-block > span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #545a65;
  margin-bottom: 7px;
}
.form-block .input + .input { margin-top: 8px; }
.zip-row { display: flex; gap: 8px; margin-bottom: 8px; }
.zip-row .input { width: 150px; }
.zip-btn {
  height: 46px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  background: #fff;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  flex: none;
  transition: background-color .16s ease, color .16s ease;
}
.zip-btn:hover { background: var(--ink); color: #fff; }

/* payment methods */
.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
}
.panel__head h3 { margin-bottom: 0; }
.panel__pg { font-size: 12.5px; font-weight: 600; color: var(--muted-2); }

.pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.pay-method {
  position: relative;
  border: 1.5px solid var(--border-4);
  background: #fff;
  border-radius: 12px;
  padding: 18px 16px;
  text-align: left;
  cursor: pointer;
  min-height: 78px;
  transition: border-color .14s ease;
}
.pay-method:hover { border-color: #b9c6de; }
.pay-method[aria-pressed="true"] {
  border-color: var(--blue);
  border-width: 2px;
  padding: 17.5px 15.5px;
  background: rgba(51, 109, 201, .05);
}
.pay-method__check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  display: none;
}
.pay-method[aria-pressed="true"] .pay-method__check { display: block; }
.pay-method__check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}
.pay-method b {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.03em;
}
.pay-method__sub {
  display: block;
  font-size: 12.5px;
  color: var(--muted-2);
  margin-top: 5px;
}

.pay-detail {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #f0f2f5;
}
.pay-detail__note {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted-2);
}

.pay-info {
  margin-top: 22px;
  padding: 20px;
  background: var(--bg-soft);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.8;
  color: #545a65;
}
.pay-info b { color: var(--ink); font-weight: 700; }
.pay-info--easy {
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.7;
}
.pay-info__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
  flex: none;
}

/* agreements */
.agree-all {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 16px 18px;
  cursor: pointer;
  text-align: left;
  margin-bottom: 8px;
  transition: border-color .14s ease;
}
.agree-all:hover { border-color: #b9c6de; }
.agree-all b {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--ink);
}
.check-box {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.8px solid #cfd5de;
  background: #fff;
  flex: none;
}
.agree-all[aria-checked="true"] .check-box {
  background: var(--blue);
  border-color: var(--blue);
}
.agree-all[aria-checked="true"] .check-box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2.2px 2.2px 0;
  transform: rotate(42deg);
}

.agree-list { display: flex; flex-direction: column; }
.agree-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  padding: 13px 18px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  border-radius: 8px;
  transition: background-color .14s ease;
}
.agree-item:hover { background: var(--bg-soft-2); }
.check-dot {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.8px solid #cfd5de;
  background: #fff;
  flex: none;
}
.agree-item[aria-checked="true"] .check-dot {
  background: var(--blue);
  border-color: var(--blue);
}
.agree-item[aria-checked="true"] .check-dot::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}
.agree-item__label { flex: 1; font-size: 14.5px; color: var(--ink-2); }
.agree-item__req { font-size: 12.5px; font-weight: 700; color: var(--muted-2); }

/* done */
.done {
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 56px 40px;
  text-align: center;
}
.done__mark {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--blue);
  margin: 0 auto 26px;
  position: relative;
}
.done__mark::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 17px;
  width: 13px;
  height: 25px;
  border: solid #fff;
  border-width: 0 3.4px 3.4px 0;
  transform: rotate(42deg);
}
.done h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.045em;
  margin-bottom: 12px;
}
.done > p {
  font-size: 16px;
  line-height: 1.8;
  color: #5d636e;
  margin-bottom: 34px;
}
.done__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-2);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  margin-bottom: 30px;
}
.done__meta > div { background: var(--bg-soft-2); padding: 17px 20px; }
.done__meta dt {
  font-size: 12.5px;
  color: var(--muted-2);
  margin-bottom: 5px;
}
.done__meta dd {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.done__actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.done__actions .btn { height: 50px; padding: 0 26px; font-size: 15px; border-radius: 10px; }

/* summary */
.summary {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 26px 24px;
  background: var(--bg-soft-2);
}
.summary h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.035em;
  margin-bottom: 20px;
}
.summary__lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
}
.summary__lines > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.summary__lines span:first-child { color: var(--muted); }
.summary__lines span:last-child { font-weight: 600; font-variant-numeric: tabular-nums; }
.summary__discount span:last-child { font-weight: 700; color: var(--blue); }

.summary__rule { height: 1px; background: var(--border); margin: 20px 0; }

.summary__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.summary__total span { font-size: 15px; font-weight: 700; }
.summary__total b {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}
.summary__point {
  text-align: right;
  font-size: 12.5px;
  color: var(--muted-2);
  margin-bottom: 22px;
}

.summary__cta {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 11px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: var(--ink);
  transition: background-color .16s ease;
}
.summary__cta:hover { background: var(--blue); }
.summary__cta--pay { background: var(--blue); }
.summary__cta--pay:hover { background: var(--blue-dark); }
.summary__cta:disabled,
.summary__cta--disabled {
  background: #c8cdd6;
  cursor: not-allowed;
}
.summary__cta--disabled:hover { background: #c8cdd6; }

.summary__back {
  width: 100%;
  height: 44px;
  margin-top: 8px;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-2);
  cursor: pointer;
  border-radius: 8px;
}
.summary__back:hover { color: var(--ink); }

.summary__done {
  padding: 14px 16px;
  background: var(--blue-tint);
  border-radius: 10px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--blue-dark);
  font-weight: 600;
}

.summary__notes {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--muted-2);
}

/* ===========================================================
   08 brand
   =========================================================== */
.brand {
  background: var(--bg-soft);
  padding: 96px 0;
}
.brand__grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: start;
}
.brand__mark {
  width: 62px;
  height: auto;
  display: block;
  margin-bottom: 26px;
}
.brand h2 { margin-bottom: 20px; }
.brand__lead {
  font-size: 15.5px;
  line-height: 1.88;
  color: #5d636e;
}
.brand__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.brand__cards .card-plain > .kicker {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--blue);
  margin-bottom: 14px;
}
.brand__cards .card-plain h3 { font-size: 18px; margin-bottom: 9px; }
.brand__cards .card-plain p { font-size: 14px; line-height: 1.76; }

/* ===========================================================
   09 support
   =========================================================== */
.support { padding: 96px 0; background: #fff; }
.support__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}
.support h2 { margin-bottom: 26px; }
.support__contact {
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 22px 24px;
}
.support__contact dt {
  font-size: 13px;
  color: var(--muted-2);
  margin-bottom: 7px;
}
.support__contact dd { margin: 0; }
.support__tel {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.support__hours {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
}

.faq { display: flex; flex-direction: column; }
.faq__item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq__item h3 {
  font-size: 17.5px;
  font-weight: 700;
  letter-spacing: -.03em;
  margin-bottom: 11px;
}
.faq__item p {
  font-size: 15px;
  line-height: 1.82;
  color: var(--muted);
}

/* ===========================================================
   footer
   =========================================================== */
.site-footer {
  background: var(--night);
  color: var(--footer-text);
  padding: 64px 0 44px;
}
.site-footer a { color: var(--footer-text); }
.site-footer a:hover { color: #fff; text-decoration: none; }

.site-footer__top {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--night-line-2);
}
.site-footer__logo {
  height: 26px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}
.site-footer__tagline { font-size: 13.5px; line-height: 1.8; }

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.site-footer__cols h2 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}
.site-footer__cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
}

.site-footer__biz {
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 12.5px;
  line-height: 1.9;
}
.site-footer__copy {
  margin-top: 18px;
  font-size: 12.5px;
  color: #5d6b85;
}

/* ===========================================================
   toast
   =========================================================== */
.toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%, 20px);
  z-index: 120;
  background: var(--ink);
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 11px;
  box-shadow: 0 8px 28px rgba(11, 16, 32, .28);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ===========================================================
   responsive
   =========================================================== */
@media (max-width: 1080px) {
  :root { --pad-x: 24px; }

  .site-nav { gap: 22px; font-size: 14.5px; }
  .site-header__inner { gap: 24px; }

  .hero__inner { grid-template-columns: 1fr .9fr; gap: 32px; min-height: 560px; }
  .hero h1 { font-size: 48px; }
  .hero__media { height: 560px; }
  .hero__copy { padding: 72px 0; }

  .why__grid { grid-template-columns: 1fr; gap: 36px; }
  .why h2 { font-size: 32px; }

  .routi__top { gap: 40px; }
  .reboot__grid { gap: 40px; }
  .brand__grid { grid-template-columns: 1fr; gap: 36px; }
  .support__grid { grid-template-columns: 1fr; gap: 36px; }

  .checkout__layout { grid-template-columns: 1fr 320px; }
}

@media (max-width: 900px) {
  .h-sec { font-size: 32px; }
  .h-sec--sm { font-size: 28px; }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: none; }
  .nav-toggle { display: block; }
  .site-header__inner { gap: 14px; }
  .buy-btn { display: none; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
  }
  .hero__copy { padding: 64px 0 40px; }
  .hero h1 { font-size: 40px; }
  .hero__lead { font-size: 17px; margin-top: 24px; }
  .hero__cta { margin-top: 32px; }
  .hero__cta .btn { flex: 1; min-width: 150px; }
  .hero__stats { margin-top: 40px; gap: 24px; }
  .hero__media {
    height: 360px;
    margin: 0 calc(var(--pad-x) * -1);
  }
  .hero__media img { object-position: 50% 45%; }
  .hero__media::after {
    background: linear-gradient(180deg, var(--night-hero) 0%, rgba(8, 13, 24, .25) 30%, rgba(8, 13, 24, 0) 60%);
  }
  .hero__badge { left: 24px; bottom: 24px; }

  .why__cards { grid-template-columns: 1fr; }

  .products, .routi, .reboot, .checkout, .system { padding: 72px 0; }
  .why, .brand, .support { padding: 72px 0; }

  .products__head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .products__head p { text-align: left; max-width: none; }
  .product-grid { grid-template-columns: 1fr; }
  .product__media { height: 280px; }

  .bundle { flex-direction: column; align-items: stretch; gap: 22px; }
  .bundle__buy { text-align: left; }

  .system__grid { grid-template-columns: 1fr; }
  .routi__top { grid-template-columns: 1fr; gap: 40px; }
  .routi h2, .reboot h2 { font-size: 32px; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-card { height: 260px; }

  .reboot__grid { grid-template-columns: 1fr; }
  .spec { grid-template-columns: repeat(2, 1fr); }

  .checkout__layout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .steps__item { padding: 15px 14px; gap: 9px; }
  .steps__label { font-size: 13.5px; }
  .pay-grid { grid-template-columns: repeat(2, 1fr); }

  .brand__cards { grid-template-columns: 1fr; }

  .site-footer__top { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 560px) {
  :root { --pad-x: 18px; }

  .hero h1 { font-size: 33px; }
  .hero__stats { flex-wrap: wrap; gap: 18px 28px; }
  .hero__media { height: 300px; }

  .h-sec { font-size: 27px; }
  .h-sec--sm { font-size: 25px; }
  .why h2, .routi h2, .reboot h2 { font-size: 27px; }

  .panel { padding: 22px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .zip-row .input { width: auto; flex: 1; }

  .cart-item { flex-wrap: wrap; gap: 12px; }
  .cart-item__thumb { width: 54px; height: 54px; }
  .cart-item__info { flex: 1 1 100%; order: -1; }
  .cart-item__line { width: auto; flex: 1; }

  .sub-box { flex-wrap: wrap; }
  .sub-box__save { width: 100%; }

  .pay-grid { grid-template-columns: 1fr; }
  .pay-method { min-height: 0; }

  .spec { grid-template-columns: 1fr; }
  .score { padding: 26px 22px; }
  .score__value b { font-size: 56px; }
  .feat-grid { grid-template-columns: 1fr; }

  .steps__label { display: none; }
  .steps__item { justify-content: center; }

  .done { padding: 40px 22px; }
  .done__meta { grid-template-columns: 1fr; }

  .site-footer__cols { grid-template-columns: 1fr; gap: 26px; }
}

/* ---------- 토스페이먼츠 결제위젯 컨테이너 ----------
   위젯은 자체 iframe으로 내부 패딩을 갖고 있어 최소 여백만 준다. */
.toss-widget { margin-top: 8px; }
#toss-agreement { margin-top: 4px; }
