/* LookOn's visual system, inspired by ISO Meet's quiet editorial layout. */
:root {
  --ink: #111111;
  --copy: #4e4e50;
  --paper: #ffffff;
  --blush: #f7f7f6;
  --pink: #27272b;
  --line: #e6e6e5;
  --soft-lilac: #f2ecfb;
  --soft-blue: #edf4f8;
  --soft-green: #eef5ed;
  --max: 1240px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Instrument Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, input, a { font-family: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
input:focus-visible,
html.keyboard-navigation :is(a, button, summary):focus-visible {
  outline: 2px solid #5c63ad;
  outline-offset: 4px;
}
html:not(.keyboard-navigation) :is(a, button, summary):focus-visible {
  outline: none;
}
::selection { background: #e5d7ff; color: var(--ink); }

.page-grid, .nav-wrap { width: min(var(--max), calc(100% - 80px)); }
.hero .page-grid, .nav-wrap { width: min(1340px, calc(100% - 80px)); }
.section-white { background: var(--paper); }
.section-pink { background: var(--paper); }

.topbar {
  height: 78px;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(17, 17, 17, .08);
  backdrop-filter: blur(24px);
}
.brand-wordmark, .footer-brand {
  font-family: "Instrument Sans", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.065em;
}
.brand-wordmark { font-size: 29px; }
.footer-brand { font-size: 24px; }
.topbar nav { gap: 9px; }
.button {
  height: 43px;
  min-width: 0;
  padding: 0 21px;
  border-radius: 99px;
  border: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 600;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.topbar .button { min-width: 0; }
.button:hover, .stack-button:hover { transform: translateY(-2px); }
.button-light { background: transparent; border-color: var(--line); }
.button-light:hover { background: var(--blush); }
.button-dark, .stack-dark { background: var(--ink); color: #fff; }
.button-dark:hover, .stack-dark:hover { background: #34343a; }

.hero {
  padding: clamp(88px, 5vw, 97px) 0 clamp(90px, 9vw, 132px);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(231, 220, 251, .28), transparent 29%),
    var(--paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 3vw, 50px);
  align-items: center;
}
.hero-copy { width: 100%; text-align: left; }
.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: 63px;
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 400;
}
.italic-letter-span {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.lede {
  max-width: 430px;
  margin: 25px 0 79px;
  color: #99999b;
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: -.02em;
}
.hero-actions {
  width: min(100%, 380px);
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}
.hero-actions .stack-button {
  flex: 1 1 0;
  min-width: 0;
  width: 0;
  height: 44px;
  padding: 0 14px;
  border: 0;
  font-size: 15px;
  font-weight: 500;
}
.hero-actions .stack-button span { font-size: 15px; }
.hero-actions .stack-light {
  background: #e5e5e5;
  color: var(--ink);
}
.hero-actions .stack-light:hover { background: #d8d8d8; }
.stack-button {
  min-width: 205px;
  height: 62px;
  padding: 0 23px;
  border-radius: 99px;
  font-weight: 600;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}
.stack-button span { font-size: 15px; }
.stack-button small { font-size: 11px; font-weight: 400; }
.stack-light {
  background: #fff;
  color: var(--ink);
  border-color: #d9d9da;
}
.stack-light:hover { background: var(--blush); border-color: #c2c2c4; }

.hero-media {
  width: 100%;
  margin: 0;
}
.hero-media .gradient-frame {
  padding: 0;
  background: transparent;
  box-shadow: 0 24px 52px rgba(27, 25, 31, .14);
}
.gradient-frame {
  padding: 12px;
  border-radius: 30px;
  background: linear-gradient(135deg, #eee8fa 0%, #f6f2f9 48%, #eaf2f7 100%);
  box-shadow: 0 34px 90px rgba(40, 35, 53, .1);
}
.gradient-frame img, .gradient-frame video { border-radius: 19px; }
.hero-video {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
}
.hero-media figcaption, .why-media figcaption {
  margin-top: 16px;
  color: #77777b;
  font-size: 12px;
  text-align: left;
}

@media (min-width: 1151px) {
  /* Hero fills the first screen below the 78px topbar; the next section starts at the fold. */
  .hero { min-height: calc(100svh - 78px); display: flex; align-items: center; }
  .hero-grid { align-items: stretch; }
  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 30px;
  }
  .hero-main { display: flex; flex-direction: column; gap: 72px; }
  .lede { margin: 18px 0 0; }
  /* How it works matches the hero: one full screen below the topbar. */
  .demo { min-height: calc(100svh - 78px); display: flex; align-items: center; }
}

.demo, .why, .numbers, .activate, .platforms, .qa, .voices {
  padding: clamp(80px, 9vw, 124px) 0;
}
.eyebrow {
  color: #727276;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .11em;
}
.one-column h2, .why h2 {
  max-width: 880px;
  margin: 19px 0 18px;
  font-size: clamp(45px, 5.4vw, 74px);
  line-height: .99;
  letter-spacing: -.066em;
  font-weight: 500;
}
.section-intro {
  color: var(--copy);
  font-size: 18px;
  line-height: 1.55;
}
.wide-intro { max-width: 690px; }
.caption-wide {
  margin-top: 20px;
  color: #77777b;
  font-size: 13px;
}
.demo-prompt {
  position: absolute;
  left: 0;
  bottom: calc(100% + 16px);
  z-index: 3;
  width: min(310px, 100%);
  margin: 0;
  padding: 14px 18px;
  border: 1px solid #e3e3e3;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
  font-size: 14px;
  line-height: 1.4;
  pointer-events: none;
  animation: demo-prompt-in .25s ease-out;
}
.demo-prompt::after {
  content: '';
  position: absolute;
  left: 37px;
  bottom: -8px;
  width: 14px;
  height: 14px;
  border-right: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  background: #fff;
  transform: rotate(45deg);
}
.demo-prompt strong, .demo-prompt span { display: block; }
.demo-prompt strong { font-size: 14px; font-weight: 700; }
.demo-prompt span { margin-top: 2px; color: var(--copy); font-size: 13px; }
.demo-prompt[hidden] { display: none; }
@keyframes demo-prompt-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .demo-prompt { animation: none; }
}

.garment-grid {
  position: relative;
  gap: 17px;
  margin-top: 100px;
}
.demo.is-choosing .garment {
  border: 2px solid transparent;
  background:
    linear-gradient(#efefed, #efefed) padding-box,
    linear-gradient(130deg, #b7a0db, #e5b4d5 48%, #9cc9dd) border-box;
}
.garment {
  border: 1px solid #ededed;
  border-radius: 20px;
  background: #efefed;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .035);
}
.garment:hover {
  border-color: #d8d3df;
  box-shadow: 0 20px 36px rgba(34, 27, 49, .1);
}
.garment::after { background: linear-gradient(180deg, rgba(0, 0, 0, .07), transparent 35%); }
.try-badge {
  left: 15px;
  top: 15px;
  padding: 9px 13px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 99px;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
  font-size: 12px;
  animation: none;
}
.try-badge::before { display: none; }
.try-badge::after { color: var(--ink); }
.try-spark { color: var(--ink); animation: none; }
.garment:hover .try-badge, .garment:focus-visible .try-badge {
  animation: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .11);
}

.why { background: #fff; }
.split-grid {
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(50px, 7vw, 100px);
}
.why h2 { max-width: 600px; }
.why .section-intro { max-width: 570px; }
/* Same bare frame as the hero: just the video with a soft shadow. */
.why-media .gradient-frame {
  padding: 0;
  background: transparent;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 52px rgba(27, 25, 31, .14);
}
.why-media .gradient-frame video { display: block; width: 100%; height: auto; border-radius: 0; }

.numbers { background: var(--paper); }
.numbers .page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.numbers-title {
  grid-column: 1 / -1;
  max-width: 900px;
  margin: 0 0 14px;
  font-size: 63px;
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 400;
}
.numbers .metric {
  --metric-wash: #f0f4ff;
  --metric-tint: #cedcfa;
  --metric-border: #cad8f0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 240px;
  padding: 32px;
  border: 1px solid var(--metric-border);
  border-radius: 24px;
  background: linear-gradient(155deg, var(--metric-wash) 0%, var(--metric-tint) 100%);
  box-shadow: 0 8px 24px rgba(30, 35, 55, .05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.numbers .metric:nth-of-type(2) { --metric-wash: #fcf0f6; --metric-tint: #efd0e1; --metric-border: #ebc8db; }
.numbers .metric:nth-of-type(3) { --metric-wash: #f0f8ec; --metric-tint: #cfe8c5; --metric-border: #c9e1c0; }
.numbers .metric:hover { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(30, 35, 55, .12); }
.metric-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 15px;
  background: #f2f2f2;
}
.metric-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.numbers .metric h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.03em;
}
.numbers .metric p {
  margin: 0;
  color: #99999b;
  font-size: 16px;
  line-height: 1.5;
}
.numbers .metric p strong { color: var(--ink); font-weight: 600; }

.activate-intro { max-width: 720px; }
.option-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}
.option-card {
  min-height: 420px;
  padding: 37px;
  border: 1px solid rgba(20, 20, 20, .055);
  border-radius: 24px;
}
.option-light { background: var(--soft-blue); }
.option-accent {
  background: var(--soft-lilac);
  border-color: rgba(20, 20, 20, .055);
  color: var(--ink);
}
.option-label, .option-accent .option-label {
  color: #5d5d64;
  font-size: 11px;
  font-weight: 600;
}
.option-label span { width: 28px; height: 28px; }
.option-card h3 {
  max-width: 390px;
  margin: 35px 0 15px;
  font-size: clamp(28px, 2.9vw, 39px);
  line-height: 1.05;
  letter-spacing: -.055em;
}
.option-card p, .option-accent p, .plain-points li {
  color: #55555a;
  font-size: 15px;
  line-height: 1.55;
}
.option-card .stack-button {
  align-self: flex-start;
  width: auto;
  min-width: 210px;
  margin-top: auto;
}
.option-light .stack-button {
  width: auto;
  min-width: 210px;
  margin-top: auto;
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.option-light .stack-button:hover { background: #34343a; }
.option-accent .install-white {
  width: auto;
  min-width: 210px;
  margin: auto 0 0;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}
.option-accent .install-white:hover { background: #faf9fc; }
.plain-points { margin: 22px 0 26px; }
.plain-points li::before { background: var(--ink); }

.platforms { background: var(--paper); }
.platforms .one-column h2 {
  max-width: 900px;
  margin: 19px 0 18px;
  font-size: 63px;
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 400;
}
.platforms .section-intro {
  max-width: 760px;
  margin: 0;
  color: #99999b;
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: -.02em;
}
.platform-grid {
  counter-reset: platform;
  gap: 14px;
  margin-top: 43px;
}
.platform {
  --platform-wash: #f0f4ff;
  --platform-tint: #cedcfa;
  --platform-border: #cad8f0;
  counter-increment: platform;
  align-items: flex-start;
  gap: 0;
  min-height: 174px;
  padding: 22px;
  border: 1px solid var(--platform-border);
  border-radius: 20px;
  background: linear-gradient(155deg, var(--platform-wash) 0%, var(--platform-tint) 100%);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(30, 35, 55, .05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.platform:nth-child(3n + 2) { --platform-wash: #fcf0f6; --platform-tint: #efd0e1; --platform-border: #ebc8db; }
.platform:nth-child(3n) { --platform-wash: #f0f8ec; --platform-tint: #cfe8c5; --platform-border: #c9e1c0; }
.platform:hover { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(30, 35, 55, .12); }
.platform::before {
  content: counter(platform, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .75);
  color: #55555a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -.02em;
  opacity: 1;
  transition: background .2s ease, color .2s ease;
}
.platform:hover::before { background: #fff; color: var(--ink); }
.platform strong { margin-top: 0; color: var(--ink); font-size: 17px; font-weight: 600; letter-spacing: -.025em; }
.platform span { margin-top: 7px; color: #5f6065; font-size: 13px; line-height: 1.45; }

.qa h2 { margin-bottom: 44px; }
.accordion { border-top: 0; }
.accordion details { border-bottom: 0; }
/* Rows bleed 18px left so the question text stays aligned with the heading. */
summary {
  margin: 0 -18px;
  padding: 26px 58px 26px 18px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -.01em;
  color: #1c1c1e;
  transition: background .2s ease, color .2s ease;
}
summary::after { right: 22px; color: var(--ink); transition: transform .25s ease; }
summary:hover { background: #f4f4f3; }
summary:hover::after { transform: rotate(90deg); }
details[open] summary:hover::after { transform: none; }
details p {
  max-width: 820px;
  color: var(--copy);
  font-size: 16px;
}

.voices { background: var(--paper); }
.voices-title {
  margin: 18px 0 14px;
  font-size: clamp(45px, 5.4vw, 74px);
  line-height: .99;
  letter-spacing: -.066em;
  font-weight: 500;
}
.voices-intro {
  max-width: 660px;
  color: var(--copy);
  font-size: 17px;
  line-height: 1.55;
}
.voice-grid { gap: 16px; margin-top: 43px; }
.voice {
  border: 1px solid #e9e9e8;
  border-radius: 19px;
  box-shadow: 0 9px 27px rgba(0, 0, 0, .035);
  transition: transform .2s ease, box-shadow .2s ease;
}
.voice:hover { transform: translateY(-4px); box-shadow: 0 18px 30px rgba(0, 0, 0, .08); }
.voice-media { height: 220px; background: #efefef; }
.voice-media span {
  left: 14px;
  bottom: 14px;
  width: 32px;
  height: 32px;
  box-shadow: 0 4px 13px rgba(0, 0, 0, .12);
}
.voice blockquote {
  height: auto;
  min-height: 82px;
  padding: 21px 18px 14px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -.025em;
}
.voice footer {
  height: 48px;
  padding: 0 18px 14px;
  color: #757579;
  font-size: 12px;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: #fff;
  color: #66666b;
}
.footer-row nav { gap: 22px; }
.footer-row a:hover, .text-link:hover { color: #6660a0; }

.sheet, .tryon-sheet {
  border: 1px solid var(--line);
  border-radius: 23px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .18);
  font-family: "Instrument Sans", Arial, sans-serif;
}
dialog::backdrop { background: rgba(20, 20, 25, .48); }
.close { background: #f2f2f2; }
.sheet-body h3, .tryon-content h3 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -.045em;
}
.sheet-body p, .tryon-content p { color: var(--copy); }
.sheet-body input {
  border-color: #d3d3d5;
  border-radius: 11px;
}
.tryon-stage { background: #151515; }

.tryon-sheet {
  width: min(510px, calc(100% - 28px));
  max-height: calc(100dvh - 28px);
  overflow-y: auto;
  border-radius: 27px;
}
.tryon-sheet .close {
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 23px;
  line-height: 1;
}
.tryon-content { padding: 30px 38px 26px; text-align: left; }
.tryon-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding-right: 44px;
}
.tryon-eyebrow {
  color: #77727f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.tryon-content .tryon-heading-copy h3 { margin: 10px 0 0; }
.tryon-content .camera-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  padding: 8px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, #eee8fa, #f6f2f9 50%, #eaf2f7);
}
.tryon-content .camera-icon[hidden], #camera-demo[hidden], #tryon-preview-garment[hidden] { display: none; }
#tryon-preview-garment {
  position: absolute;
  inset: 8px;
  display: block;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  object-fit: contain;
}
.tryon-content h3 { font-size: 36px; line-height: 1.08; }
.tryon-content #tryon-copy {
  max-width: 390px;
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}
#camera-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  margin-top: 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
}
.tryon-content #tryon-note:not(:empty) {
  display: block;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f7f7f6;
  color: #69696d;
  font-size: 12px;
  line-height: 1.5;
}
.tryon-content #tryon-note:empty { display: none; }
.tryon-content .tryon-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 20px 0 0;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.4;
}
.tryon-next .text-link { flex: none; color: var(--ink); font-weight: 700; text-decoration: none; }
.tryon-next .text-link::after { content: '↗'; margin-left: 5px; }
@media (max-width: 520px) {
  .tryon-content { padding: 25px 24px 22px; }
  .tryon-content .camera-icon { width: 64px; height: 64px; border-radius: 18px; }
  .tryon-content h3 { font-size: 32px; }
  .tryon-content .tryon-next { align-items: flex-start; flex-direction: column; gap: 7px; }
}

@media (max-width: 1150px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-copy { max-width: 760px; margin-inline: auto; text-align: center; }
  .hero h1 { max-width: 760px; margin-inline: auto; }
  .lede { max-width: 650px; margin-inline: auto; }
  .hero-actions { justify-content: center; margin-inline: auto; }
  .hero-media { width: min(100%, 800px); margin-inline: auto; order: 0; }
  .hero-media figcaption { text-align: center; }
}

@media (max-width: 940px) {
  .page-grid, .nav-wrap { width: calc(100% - 48px); }
  .hero .page-grid { width: calc(100% - 48px); }
  .split-grid { grid-template-columns: 1fr; gap: 45px; }
  .why-media { width: min(100%, 650px); }
  .option-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .option-card { min-height: 460px; }
  .numbers .page-grid { gap: 12px; }
  .numbers .metric { padding: 26px; }
}

@media (max-width: 760px) {
  .topbar { height: 68px; }
  .brand-wordmark { font-size: 26px; }
  .hero { padding: 74px 0 76px; }
  .hero-grid { gap: 45px; }
  .hero h1 { font-size: clamp(45px, 6.3vw, 59px); }
  .hero-media { order: 0; }
  .hero-video { aspect-ratio: auto; object-position: center; }
  .lede { font-size: 18px; }
  .demo, .why, .numbers, .activate, .platforms, .qa, .voices { padding: 80px 0; }
  .one-column h2, .why h2, .voices-title { font-size: clamp(40px, 6.8vw, 56px); }
  .numbers .page-grid { grid-template-columns: 1fr; gap: 12px; }
  .numbers-title { font-size: clamp(45px, 6.3vw, 59px); }
  .numbers .metric { min-height: 0; padding: 26px; }
  .option-grid { grid-template-columns: 1fr; }
  .option-card { min-height: 395px; }
}

@media (max-width: 560px) {
  .page-grid, .nav-wrap { width: calc(100% - 36px); }
  .hero .page-grid { width: calc(100% - 36px); }
  .topbar .button-light { display: none; }
  .topbar .button-dark { height: 39px; padding: 0 17px; }
  .hero { padding: 65px 0 70px; }
  .hero h1 { font-size: clamp(41px, 10vw, 49px); letter-spacing: -.02em; }
  .lede { margin: 23px auto 36px; font-size: 17px; }
  /* Keep the two CTAs side by side as on desktop; stacked full-width pills read too heavy. */
  .hero-actions { width: min(100%, 340px); gap: 10px; }
  .hero-actions .stack-button { height: 48px; padding: 0 12px; }
  .gradient-frame { padding: 8px; border-radius: 21px; }
  .gradient-frame img, .gradient-frame video { border-radius: 14px; }
  .hero-media figcaption, .why-media figcaption { font-size: 11px; }
  .demo, .why, .numbers, .activate, .platforms, .qa, .voices { padding: 69px 0; }
  .one-column h2, .why h2, .voices-title { font-size: clamp(39px, 10vw, 50px); }
  .numbers-title { font-size: clamp(41px, 10vw, 49px); }
  .section-intro, .voices-intro { font-size: 16px; }
  .garment-grid { gap: 18px; margin-top: 100px; }
  .garment { border-radius: 13px; }
  .try-badge { left: 8px; top: 8px; padding: 6px 9px; font-size: 10px; }
  .option-card { min-height: 380px; padding: 26px; }
  .option-card h3 { margin-top: 30px; }
  .platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .platform { min-height: 160px; padding: 18px; }
  .platform::before { margin-bottom: 18px; }
  .platform strong { font-size: 15px; }
  .platform span { font-size: 12px; }
  .voice-grid { grid-template-columns: 1fr; }
  .voice-media { height: 235px; }
  summary { font-size: 16px; }
  .footer-row { align-items: flex-start; gap: 24px; }
  .footer-row nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  .button, .stack-button, .numbers .metric, .platform, .platform::before, .voice { transition: none; }
  .button:hover, .stack-button:hover, .numbers .metric:hover, .platform:hover, .voice:hover { transform: none; }
}

/* Match the demo and problem headings and subtitles to the hero typography. */
.demo h2, .why h2, .qa h2 {
  max-width: 650px;
  font-size: 63px;
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 400;
}
.demo .section-intro, .why .section-intro {
  color: #99999b;
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: -.02em;
}
.why h2 { font-size: 62px; }
.why .section-intro { font-size: 17px; }
.demo .wide-intro {
  max-width: none;
  white-space: nowrap;
}

@media (max-width: 940px) {
  .demo .wide-intro { white-space: normal; }
}

@media (max-width: 760px) {
  .demo h2, .qa h2 { font-size: clamp(45px, 6.3vw, 59px); }
  .why h2 { font-size: clamp(44px, 6.2vw, 58px); }
  .demo .section-intro { font-size: 18px; }
  .why .section-intro { font-size: 16px; }
}

@media (max-width: 560px) {
  .demo h2, .qa h2 { font-size: clamp(41px, 10vw, 49px); }
  .why h2 { font-size: clamp(40px, 9.8vw, 48px); }
  .demo .section-intro { font-size: 17px; }
  .why .section-intro { font-size: 15px; }
}

.store-types {
  overflow: hidden;
  padding: 80px 0 120px;
}
.store-types h2 {
  margin: 0 24px 64px;
  text-align: center;
  font-size: clamp(37px, 3.7vw, 49px);
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 400;
}
/* Band sits inside the page, not edge to edge; ends fade out. */
.store-marquees {
  display: grid;
  gap: 36px;
  width: min(1440px, calc(100% - 48px));
  margin-inline: auto;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 14%, #000 86%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 14%, #000 86%, transparent);
}
.store-marquee { overflow: hidden; padding: 8px 0; }
.store-track {
  display: flex;
  width: max-content;
  animation: store-scroll 16s linear infinite;
}
.store-marquee-reverse .store-track { animation-direction: reverse; }
.store-group {
  display: flex;
  align-items: center;
  flex: none;
  gap: 40px;
  padding-right: 40px;
}
.store-type {
  display: flex;
  flex: none;
  align-items: center;
  gap: 18px;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.store-type img {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(20, 20, 25, .16);
  transform: rotate(-8deg);
}
.store-type:nth-child(even) img { transform: rotate(6deg); }
.store-type:nth-child(3n) img { transform: rotate(-4deg); }
@keyframes store-scroll {
  to { transform: translateX(-50%); }
}

@media (max-width: 760px) {
  .platforms .one-column h2 { font-size: clamp(45px, 6.3vw, 59px); }
  .platforms .section-intro { font-size: 18px; }
  .store-types { padding: 66px 0 96px; }
  .store-types h2 { margin-bottom: 52px; }
  .store-marquees { gap: 22px; }
  .store-group { gap: 26px; padding-right: 26px; }
  .store-type { gap: 12px; font-size: 16px; }
  .store-type img { width: 52px; height: 52px; }
}

@media (max-width: 560px) {
  .platforms .one-column h2 { font-size: clamp(41px, 10vw, 49px); }
  .platforms .section-intro { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .store-track { animation: none; }
  .store-marquee { overflow-x: auto; }
}

/* Getting started: centered intro over two visual cards (wide + narrow). */
.steps-wrap { width: min(1330px, calc(100% - 80px)); }
.activate .steps-title {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  font-size: 56px;
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 400;
}
.steps-intro {
  max-width: 760px;
  margin: 22px auto 56px;
  color: #99999b;
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: -.02em;
  text-align: center;
}
.steps-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 20px;
}
.step-card {
  position: relative;
  min-height: 560px;
  padding: 46px 46px 0;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.step-try { background: linear-gradient(160deg, #f4f4f3 0%, #ebebea 100%); }
.step-setup { background: linear-gradient(160deg, #f5f1fc 0%, #e6dcf8 100%); }
.step-copy { position: relative; z-index: 2; max-width: 340px; }
.step-card h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 400;
}
.step-card p {
  margin: 10px 0 0;
  color: #8a8a8d;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -.01em;
}
.step-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  margin-top: 24px;
  padding: 0 18px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.step-cta:hover { transform: translateY(-3px); }
.step-cta-dark { border: 0; background: var(--ink); color: #fff; }
.step-cta-dark:hover { background: #34343a; box-shadow: 0 10px 20px rgba(17, 17, 17, .18); }
.step-cta-light { border: 1px solid rgba(0, 0, 0, .1); background: #fff; color: var(--ink); }
.step-cta-light:hover { background: #faf9fc; box-shadow: 0 10px 20px rgba(40, 30, 60, .12); }
.step-visual { position: relative; flex: 1; min-height: 300px; }

/* Card 1: phone playing the try-on video, with a floating steps sheet. */
.step-phone {
  position: absolute;
  top: -150px;
  right: 40px;
  width: 290px;
  height: 590px;
  padding: 10px;
  border-radius: 46px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 30px 60px rgba(20, 20, 25, .18);
}
.step-phone video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 37px;
  object-fit: cover;
  object-position: 50% 50%;
}
.step-sheet {
  position: absolute;
  left: 60px;
  bottom: 44px;
  z-index: 3;
  width: 318px;
  margin: 0;
  padding: 6px 20px;
  list-style: none;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(20, 20, 25, .12);
}
.step-sheet li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  color: #8a8a8d;
  font-size: 14px;
  line-height: 1.35;
}
.step-sheet li + li { border-top: 1px solid #efefef; }
.step-sheet b { display: block; color: var(--ink); font-size: 15px; font-weight: 500; }
.step-sheet svg {
  flex: none;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Card 2: tilted store card stacked on a ghost card. */
.store-card, .store-card-back {
  position: absolute;
  left: 50%;
  top: 40px;
  width: 340px;
  border-radius: 18px;
}
.store-card-back {
  height: 300px;
  background: rgba(255, 255, 255, .45);
  transform: translateX(-54%) rotate(-16deg);
}
.store-card {
  padding: 16px;
  background: #fff;
  box-shadow: 0 24px 50px rgba(60, 40, 110, .16);
  transform: translateX(-46%) rotate(-7deg);
}
.store-card-head { display: flex; align-items: center; gap: 12px; }
.store-card-head b { display: block; font-size: 16px; font-weight: 500; }
.store-card-head small { color: #8a8a8d; font-size: 13px; }
.store-card-logo {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
}
.store-card-shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 14px 0 12px;
}
.store-card-shots img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  object-fit: cover;
  background: #f2f2f2;
}
.step-card .store-card-note {
  display: flex;
  gap: 8px;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
}
.store-card-check {
  display: grid;
  flex: none;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1f9d55;
  color: #fff;
  font-size: 11px;
}

@media (max-width: 1150px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step-phone { right: 24px; }
}
@media (max-width: 760px) {
  .steps-wrap { width: calc(100% - 36px); }
  .steps-title { font-size: clamp(38px, 8vw, 50px); }
  .steps-intro { font-size: 17px; margin-bottom: 40px; }
  .step-card { min-height: 540px; padding: 30px 26px 0; }
  .step-card h3 { font-size: 26px; }
  .step-try { min-height: 0; padding-bottom: 24px; }
  .step-try .step-visual {
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    min-height: 0;
    margin-top: 20px;
  }
  .step-try .step-phone {
    position: relative;
    inset: auto;
    width: min(250px, 100%);
    height: auto;
    aspect-ratio: 414 / 572;
    transform: none;
  }
  .step-try .step-phone video { object-fit: contain; background: #e9e9e7; }
  .step-try .step-sheet {
    position: relative;
    inset: auto;
    width: min(300px, 100%);
    transform: none;
  }
  .store-card, .store-card-back { width: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  .step-cta { transition: none; }
  .step-cta:hover { transform: none; }
}

/* Scroll reveal: script.js adds .reveal-on to <html> (skipped for reduced motion),
   then fades each block up as it enters the viewport. */
.reveal-on .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-on .reveal.is-visible {
  opacity: 1;
  transform: none;
}
