/* ==========================================================================
   DOSSHA — App Landing Page
   Premium monochrome (black & white) design system
   Font: Plus Jakarta Sans
   ========================================================================== */

/* ----------  Design tokens  ---------- */
:root {
  --ink:        #0a0a0a;
  --ink-soft:   #1a1a1a;
  --paper:      #ffffff;
  --paper-warm: #f6f5f3;
  --smoke-100:  #f2f2f0;
  --smoke-200:  #e6e5e2;
  --smoke-300:  #cfcecb;
  --smoke-400:  #9c9b98;
  --smoke-500:  #6b6a67;
  --smoke-600:  #43423f;

  --line:       rgba(10,10,10,.12);
  --line-strong:rgba(10,10,10,.24);
  --line-light: rgba(255,255,255,.14);

  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 34px;

  --shadow-sm: 0 4px 20px rgba(10,10,10,.06);
  --shadow:    0 24px 60px -20px rgba(10,10,10,.20);
  --shadow-xl: 0 50px 120px -30px rgba(10,10,10,.45);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --nav-h: 74px;
  --maxw: 1240px;
}

/* ----------  Reset & base  ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

::selection { background: var(--ink); color: var(--paper); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* Fine-grain film overlay for premium texture */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ----------  Utility type  ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--smoke-500);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--smoke-400);
}
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: rgba(255,255,255,.6); }
.eyebrow.light::before { background: rgba(255,255,255,.4); }

.display {
  font-size: clamp(2.9rem, 8vw, 6.4rem);
  letter-spacing: -0.045em;
}
.section-title { font-size: clamp(2.1rem, 4.6vw, 3.7rem); }
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: var(--smoke-600);
  font-weight: 400;
  line-height: 1.55;
  max-width: 46ch;
}

.section { padding: clamp(80px, 11vw, 150px) 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .5s var(--ease-out), background .3s, color .3s, box-shadow .5s;
  will-change: transform;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line-strong); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); box-shadow: inset 0 0 0 1px var(--ink); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn svg { width: 18px; height: 18px; }

/* ----------  Store badges  ---------- */
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px 12px 20px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--paper);
  transition: transform .5s var(--ease-out), box-shadow .5s;
  will-change: transform;
}
.store-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.store-badge svg { width: 26px; height: 26px; flex: none; }
.store-badge .sb-txt { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-badge .sb-small { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; opacity: .7; font-weight: 600; }
.store-badge .sb-big { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; }
.store-badge.on-dark { background: var(--paper); color: var(--ink); }

.store-row { display: flex; gap: 14px; flex-wrap: wrap; }
/* device-detection: hide non-matching by default state via JS classes */
.store-row[data-device="ios"] .badge-android,
.store-row[data-device="android"] .badge-ios { display: none; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex; align-items: center;
  transition: height .4s var(--ease), background .4s, box-shadow .4s, backdrop-filter .4s;
}
.nav.scrolled {
  height: 62px;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 22px; width: auto; transition: opacity .3s; }
.nav-links { display: flex; gap: 38px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--smoke-600);
  position: relative; transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0;
  background: var(--ink); transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .btn { padding: 11px 22px; font-size: 14px; }
.nav-burger { display: none; width: 30px; height: 20px; position: relative; }
.nav-burger span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink); transition: .35s var(--ease); }
.nav-burger span:nth-child(1){ top: 0; }
.nav-burger span:nth-child(2){ top: 9px; }
.nav-burger span:nth-child(3){ top: 18px; }
body.menu-open .nav-burger span:nth-child(1){ top: 9px; transform: rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2){ opacity: 0; }
body.menu-open .nav-burger span:nth-child(3){ top: 9px; transform: rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--paper);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: 0 32px;
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
}
body.menu-open .mobile-menu { transform: translateY(0); }
.mobile-menu a { font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; padding: 10px 0; border-bottom: 1px solid var(--line); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; padding-top: calc(var(--nav-h) + 40px); overflow: hidden; }
.hero-marquee {
  position: absolute; top: 42%; left: 0; right: 0;
  font-size: clamp(9rem, 26vw, 26rem);
  font-weight: 800; letter-spacing: -0.06em;
  color: var(--smoke-100);
  white-space: nowrap; z-index: 0; pointer-events: none;
  transform: translateY(-50%);
  user-select: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
  min-height: calc(100vh - var(--nav-h) - 60px);
}
.hero-copy { max-width: 560px; }
.hero-copy .display { margin: 22px 0 8px; }
.hero-copy .display em {
  font-style: normal; position: relative; white-space: nowrap;
}
.hero-copy .lead { margin: 26px 0 38px; }
.hero-actions { display: flex; flex-direction: column; gap: 20px; }
.hero-rating { display: flex; align-items: center; gap: 16px; color: var(--smoke-500); font-size: 14px; }
.hero-stars { display: flex; gap: 2px; color: var(--ink); }
.hero-stars svg { width: 16px; height: 16px; }
.hero-avatars { display: flex; }
.hero-avatars span {
  width: 32px; height: 32px; border-radius: 50%; margin-left: -10px;
  border: 2px solid var(--paper); background: var(--smoke-200);
  background-size: cover; background-position: center;
}

/* Phone mockup */
.phone-stage { position: relative; display: flex; justify-content: center; align-items: center; perspective: 1600px; }
.phone {
  position: relative;
  width: 300px; aspect-ratio: 300 / 620;
  background: var(--ink);
  border-radius: 46px;
  padding: 11px;
  box-shadow: var(--shadow-xl), inset 0 0 0 2px rgba(255,255,255,.08);
  will-change: transform;
}
.phone::before { /* notch / dynamic island */
  content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px; background: #000; border-radius: 20px; z-index: 5;
}
.phone-screen {
  position: relative; width: 100%; height: 100%;
  border-radius: 36px; overflow: hidden; background: var(--paper);
}
.phone-screen img.app-shot { width: 100%; height: 100%; object-fit: cover; }

/* App UI built over a product photo */
.app-ui { position: absolute; inset: 0; display: flex; flex-direction: column; color: #fff; }
.app-ui .au-photo { position: absolute; inset: 0; }
.app-ui .au-photo img { width: 100%; height: 100%; object-fit: cover; }
.app-ui .au-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.32) 0%, rgba(0,0,0,0) 26%, rgba(0,0,0,0) 52%, rgba(0,0,0,.72) 100%); }
.app-ui .au-top { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; padding: 40px 20px 0; font-size: 12px; font-weight: 700; letter-spacing: .06em; }
.app-ui .au-top img { height: 15px; width: auto; filter: brightness(0) invert(1); }
.app-ui .au-top .au-ic { display: flex; gap: 14px; }
.app-ui .au-top .au-ic i { width: 20px; height: 20px; display: block; border-radius: 6px; background: rgba(255,255,255,.22); }
.app-ui .au-spacer { flex: 1; }
.app-ui .au-tag {
  position: relative; z-index: 2; align-self: flex-start; margin: 0 0 12px 20px;
  background: rgba(255,255,255,.16); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.28);
  padding: 6px 14px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: .04em;
}
.app-ui .au-info { position: relative; z-index: 2; padding: 0 20px 4px; }
.app-ui .au-info h5 { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 3px; }
.app-ui .au-info .au-price { font-size: 15px; font-weight: 600; opacity: .9; }
.app-ui .au-cart {
  position: relative; z-index: 2; margin: 14px 20px 0;
  background: #fff; color: #0a0a0a; text-align: center;
  padding: 14px; border-radius: 16px; font-weight: 700; font-size: 14px;
}
.app-ui .au-nav {
  position: relative; z-index: 2; display: flex; justify-content: space-around; align-items: center;
  padding: 18px 20px 26px;
}
.app-ui .au-nav i { width: 22px; height: 22px; border-radius: 7px; background: rgba(255,255,255,.30); display: block; }
.app-ui .au-nav i.on { background: #fff; }

/* floating price chip near phone */
.phone-chip {
  position: absolute; z-index: 6;
  background: var(--paper); color: var(--ink);
  border-radius: 18px; padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
  will-change: transform;
}
.phone-chip .pc-ic { width: 38px; height: 38px; border-radius: 12px; background: var(--ink); color: #fff; display: grid; place-items: center; }
.phone-chip .pc-ic svg { width: 20px; height: 20px; }
.phone-chip small { display: block; font-size: 11px; color: var(--smoke-500); font-weight: 600; }
.phone-chip b { font-size: 15px; letter-spacing: -0.02em; }
.chip-1 { top: 12%; left: -6%; }
.chip-2 { bottom: 14%; right: -8%; }

/* ==========================================================================
   MARQUEE STRIP (brand values)
   ========================================================================== */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; overflow: hidden; }
.marquee { display: flex; gap: 60px; width: max-content; animation: slide 32s linear infinite; }
.marquee span { font-size: 26px; font-weight: 800; letter-spacing: -0.03em; color: var(--smoke-300); display: inline-flex; align-items: center; gap: 60px; }
.marquee span::after { content: "✦"; font-size: 14px; color: var(--ink); }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .marquee { animation: none; } }

/* ==========================================================================
   STATS
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; }
.stat .num { font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.05em; line-height: 1; }
.stat .lbl { margin-top: 12px; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--smoke-500); }

/* ==========================================================================
   FEATURES
   ========================================================================== */
.features-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.feature {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; background: var(--paper);
  transition: transform .6s var(--ease-out), box-shadow .6s, border-color .4s;
  position: relative; overflow: hidden;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature .f-ic {
  width: 52px; height: 52px; border-radius: 14px; background: var(--ink); color: #fff;
  display: grid; place-items: center; margin-bottom: 22px;
}
.feature .f-ic svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.35rem; margin-bottom: 10px; letter-spacing: -0.03em; }
.feature p { color: var(--smoke-600); font-size: 15.5px; line-height: 1.55; margin: 0; }
.feature.span-6 { grid-column: span 6; }
.feature.span-4 { grid-column: span 4; }
.feature.span-8 { grid-column: span 8; }
.feature.dark { background: var(--ink); color: var(--paper); border-color: transparent; }
.feature.dark p { color: rgba(255,255,255,.66); }
.feature.dark .f-ic { background: rgba(255,255,255,.14); }
/* feature with image */
.feature.media { padding: 0; display: flex; flex-direction: column; }
.feature.media .f-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.feature.media .f-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.feature.media:hover .f-img img { transform: scale(1.06); }
.feature.media .f-body { padding: 30px 34px 34px; }

/* ==========================================================================
   SHOWCASE (alternating phone + copy)
   ========================================================================== */
.showcase-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.showcase-row + .showcase-row { margin-top: clamp(90px, 12vw, 160px); }
.showcase-row.rev .sc-visual { order: 2; }
.sc-copy .step { font-size: 13px; font-weight: 800; letter-spacing: .2em; color: var(--smoke-300); text-transform: uppercase; }
.sc-copy h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin: 14px 0 18px; }
.sc-copy p { color: var(--smoke-600); font-size: 1.08rem; max-width: 44ch; }
.sc-list { margin: 26px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.sc-list li { display: flex; gap: 14px; align-items: flex-start; font-weight: 500; }
.sc-list li svg { width: 22px; height: 22px; flex: none; margin-top: 2px; }
.sc-visual { display: flex; justify-content: center; }
.sc-visual .phone { width: 288px; }

/* ==========================================================================
   LOOKBOOK GALLERY
   ========================================================================== */
.lookbook { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.look {
  position: relative; aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden;
  background: var(--smoke-100);
}
.look img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.look:hover img { transform: scale(1.07); }
.look::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.6)); opacity: .85; }
.look .look-cap { position: absolute; left: 20px; bottom: 18px; z-index: 2; color: #fff; }
.look .look-cap b { display: block; font-size: 16px; font-weight: 700; letter-spacing: -0.02em; }
.look .look-cap span { font-size: 12.5px; opacity: .82; }
.look.tall { grid-row: span 1; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; background: var(--paper); }
.quote .q-stars { display: flex; gap: 3px; color: var(--ink); margin-bottom: 18px; }
.quote .q-stars svg { width: 16px; height: 16px; }
.quote p { font-size: 1.05rem; line-height: 1.55; margin: 0 0 24px; letter-spacing: -0.01em; }
.quote .q-who { display: flex; align-items: center; gap: 12px; }
.quote .q-who .q-av { width: 42px; height: 42px; border-radius: 50%; background: var(--smoke-200); display: grid; place-items: center; font-weight: 800; }
.quote .q-who b { font-size: 15px; }
.quote .q-who span { font-size: 13px; color: var(--smoke-500); display: block; }

/* ==========================================================================
   DOWNLOAD CTA
   ========================================================================== */
.cta { background: var(--ink); color: var(--paper); border-radius: clamp(28px, 4vw, 48px); overflow: hidden; position: relative; }
.cta-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; padding: clamp(48px, 7vw, 96px); position: relative; z-index: 2; }
.cta-marq { position: absolute; inset: 0; z-index: 0; display: flex; align-items: center; opacity: .05; }
.cta-marq span { font-size: 16rem; font-weight: 800; white-space: nowrap; letter-spacing: -0.05em; }
.cta h2 { font-size: clamp(2.3rem, 4.4vw, 3.8rem); letter-spacing: -0.04em; }
.cta p { color: rgba(255,255,255,.66); font-size: 1.12rem; margin: 20px 0 34px; max-width: 42ch; }
.cta .store-row { margin-bottom: 26px; }
.cta .qr { display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,.7); font-size: 13.5px; }
.cta .qr .qr-box { width: 74px; height: 74px; border-radius: 14px; background: #fff; padding: 8px; flex: none; }
.cta .qr .qr-box svg { width: 100%; height: 100%; }
.cta-visual { display: flex; justify-content: center; align-items: center; }
.cta-visual .phone { width: 270px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 4px; text-align: left; font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; }
.faq-q .faq-plus { position: relative; width: 20px; height: 20px; flex: none; }
.faq-q .faq-plus::before, .faq-q .faq-plus::after { content: ""; position: absolute; background: var(--ink); transition: transform .4s var(--ease); }
.faq-q .faq-plus::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-q .faq-plus::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq-item.open .faq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a p { color: var(--smoke-600); padding: 0 4px 26px; margin: 0; font-size: 1.02rem; max-width: 68ch; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--ink); color: var(--paper); padding: 84px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid var(--line-light); }
.footer-brand img { height: 26px; filter: brightness(0) invert(1); margin-bottom: 22px; }
.footer-brand p { color: rgba(255,255,255,.55); max-width: 32ch; font-size: 15px; }
.footer-brand .socials { display: flex; gap: 12px; margin-top: 24px; }
.footer-brand .socials a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; box-shadow: inset 0 0 0 1px var(--line-light); transition: background .3s, color .3s; }
.footer-brand .socials a:hover { background: #fff; color: var(--ink); }
.footer-brand .socials svg { width: 18px; height: 18px; }
.footer-col h5 { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); margin: 0 0 20px; font-weight: 700; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.72); font-size: 14.5px; margin-bottom: 13px; transition: color .25s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; flex-wrap: wrap; gap: 14px; }
.footer-bottom, .footer-bottom a { color: rgba(255,255,255,.42); font-size: 13px; }
.footer-bottom .fb-links { display: flex; gap: 24px; }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"]{ transition-delay: .08s; }
[data-reveal][data-delay="2"]{ transition-delay: .16s; }
[data-reveal][data-delay="3"]{ transition-delay: .24s; }
[data-reveal][data-delay="4"]{ transition-delay: .32s; }
@media (prefers-reduced-motion: reduce){ [data-reveal]{ opacity: 1; transform: none; } }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; min-height: auto; padding-bottom: 40px; }
  .hero-copy { max-width: 620px; }
  .phone-stage { margin-top: 10px; }
  .feature.span-6, .feature.span-8 { grid-column: span 12; }
  .feature.span-4 { grid-column: span 6; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-visual { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-burger { display: block; }
  .stats { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .showcase-row { grid-template-columns: 1fr; gap: 40px; }
  .showcase-row.rev .sc-visual { order: 0; }
  .lookbook { grid-template-columns: 1fr 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .feature.span-4 { grid-column: span 12; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .hero-actions .store-row { width: 100%; }
  .phone { width: 260px; }
  .lookbook { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .chip-1 { left: -2%; }
  .chip-2 { right: -2%; }
}
