/* ==========================================================================
   Wear The Mood — landing site styles
   Premium fashion-tech: midnight plum / black-violet, rose + lavender glows.
   Hand-built, no framework. Mobile-first.
   ========================================================================== */

:root {
  --bg:            #0b0712;
  --bg-soft:       #120b20;
  --plum:          #1a1030;
  --surface:       rgba(255, 255, 255, 0.045);
  --surface-2:     rgba(255, 255, 255, 0.07);
  --border:        rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text:  #f4f1f8;
  --muted: #c2b9d4;
  --faint: #8d83a6;

  --rose:     #f7a8c4;
  --blush:    #f6c9da;
  --mauve:    #c79be8;
  --lavender: #a89cf2;

  --grad:      linear-gradient(120deg, #f7a8c4 0%, #c79be8 48%, #a89cf2 100%);
  --grad-text: linear-gradient(120deg, #fbc2d6 0%, #d3aef0 50%, #b6abf6 100%);
  --grad-soft: linear-gradient(135deg, rgba(247,168,196,0.16), rgba(168,156,242,0.16));

  --shadow:    0 24px 70px -28px rgba(0, 0, 0, 0.75);
  --glow-rose: 0 0 80px -20px rgba(247, 168, 196, 0.55);
  --glow-lav:  0 0 80px -20px rgba(168, 156, 242, 0.55);

  --radius:    20px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --maxw: 1160px;
  --nav-h: 70px;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ambient page background: layered radial glows over deep plum */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 12% -5%, rgba(247, 168, 196, 0.16), transparent 60%),
    radial-gradient(900px 700px at 92% 8%, rgba(168, 156, 242, 0.18), transparent 60%),
    radial-gradient(1200px 800px at 50% 110%, rgba(199, 155, 232, 0.14), transparent 60%),
    linear-gradient(180deg, #0b0712 0%, #0e0a1a 45%, #0a0712 100%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 0.5px, transparent 0.5px);
  background-size: 26px 26px;
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 30%, transparent 90%);
}

a { color: var(--lavender); text-decoration: none; }
a:hover { color: var(--blush); }
img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; margin: 0; }

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

.section { padding: 84px 0; position: relative; }
.section--tight { padding: 64px 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mauve);
  padding: 6px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  background: var(--surface);
  backdrop-filter: blur(6px);
}

.section-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4.5vw, 44px); margin: 16px 0 12px; letter-spacing: -0.01em; }
.section-head p { color: var(--muted); font-size: 17px; margin: 0; }

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  --b-pad: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: var(--b-pad);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--lavender); outline-offset: 3px; }
.btn--primary {
  background: var(--grad);
  color: #1a0f24;
  box-shadow: 0 14px 36px -14px rgba(199, 155, 232, 0.75);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -14px rgba(199, 155, 232, 0.9); color: #1a0f24; }
.btn--ghost { background: var(--surface); color: var(--text); border-color: var(--border-strong); backdrop-filter: blur(8px); }
.btn--ghost:hover { transform: translateY(-2px); background: var(--surface-2); border-color: var(--lavender); color: var(--text); }
.btn--sm { --b-pad: 10px 17px; font-size: 14px; }
.btn--block { width: 100%; }

/* store buttons */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px 11px 18px;
  border-radius: 16px;
  background: #ffffff;
  color: #15101f;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 14px 34px -18px rgba(0, 0, 0, 0.7);
}
.store-btn:hover { transform: translateY(-2px); color: #15101f; box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.85); }
.store-btn svg { width: 26px; height: 26px; flex: none; }
.store-btn .s1 { display: block; font-size: 10.5px; line-height: 1; letter-spacing: 0.06em; text-transform: uppercase; color: #6a6175; }
.store-btn .s2 { display: block; font-size: 17px; font-weight: 700; font-family: var(--font-display); line-height: 1.15; }
.store-btn--soon { background: var(--surface); color: var(--muted); border: 1px solid var(--border-strong); backdrop-filter: blur(8px); box-shadow: none; }
.store-btn--soon .s1 { color: var(--faint); }
.store-btn--soon .s2 { color: var(--text); }
.store-btn--soon svg { fill: var(--muted); }

.store-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- navbar ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12, 8, 22, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
  box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.8);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--text); }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.brand b { font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: 0.01em; }
.brand span { display: block; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-top: -2px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); font-size: 14.5px; font-weight: 500; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px;
  background: var(--grad); border-radius: 2px; transition: right 0.25s ease;
}
.nav-links a:hover::after { right: 0; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: var(--surface); border: 1px solid var(--border-strong); color: var(--text); width: 42px; height: 42px; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 20px; height: 20px; }

/* ---------- hero ---------- */
.hero { position: relative; padding: calc(var(--nav-h) + 60px) 0 70px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero-tag { margin-bottom: 22px; }
.hero h1 { font-size: clamp(36px, 6vw, 62px); letter-spacing: -0.02em; margin-bottom: 20px; }
.hero h1 .lead { display: block; color: var(--text); }
.hero .sub { font-size: clamp(16px, 2.2vw, 19px); color: var(--muted); max-width: 560px; margin-bottom: 30px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 18px; }
.hero-secondary { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 500; font-size: 14.5px; }
.hero-secondary:hover { color: var(--text); }
.hero-secondary svg { width: 18px; height: 18px; }

.trust-strip { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; }
.trust-strip .ti { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); }
.trust-strip .ti svg { width: 16px; height: 16px; color: var(--mauve); }

/* ---------- phone mockup ---------- */
.phone-stage { position: relative; display: flex; justify-content: center; }
.phone-stage::before {
  content: ""; position: absolute; inset: -8% -4% -4% -4%; z-index: 0;
  background: radial-gradient(60% 55% at 60% 40%, rgba(247,168,196,0.4), transparent 70%),
              radial-gradient(55% 50% at 30% 70%, rgba(168,156,242,0.42), transparent 70%);
  filter: blur(34px); opacity: 0.85;
}
.phone {
  position: relative; z-index: 1;
  width: 270px; max-width: 78vw;
  aspect-ratio: 9 / 19;
  border-radius: 40px;
  padding: 11px;
  background: linear-gradient(160deg, rgba(255,255,255,0.16), rgba(255,255,255,0.03));
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.phone-screen {
  position: relative; height: 100%; border-radius: 30px; overflow: hidden;
  background: linear-gradient(180deg, #170d27 0%, #120a20 100%);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column;
}
.phone-notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 19px; border-radius: 12px; background: #0a0612; z-index: 3;
}
.scr-top { padding: 30px 16px 10px; display: flex; align-items: center; justify-content: space-between; }
.scr-top .t { font-family: var(--font-display); font-size: 15px; }
.scr-dot { width: 26px; height: 26px; border-radius: 50%; background: var(--grad); opacity: 0.9; }
.scr-hero {
  margin: 4px 14px 12px; border-radius: 16px; aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(247,168,196,0.55), rgba(168,156,242,0.55));
  position: relative; overflow: hidden;
}
.scr-hero::after { content:""; position:absolute; inset:0; background: radial-gradient(60% 60% at 70% 20%, rgba(255,255,255,0.35), transparent 60%); }
.scr-pills { display: flex; gap: 7px; padding: 0 14px 12px; flex-wrap: wrap; }
.scr-pill { height: 22px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--border); flex: 0 0 auto; padding: 0 12px; display:flex; align-items:center; font-size: 10px; color: var(--muted); }
.scr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; padding: 0 14px 14px; flex: 1; }
.scr-card { border-radius: 13px; background: var(--surface); border: 1px solid var(--border); }
.scr-card.g { background: linear-gradient(135deg, rgba(168,156,242,0.35), rgba(247,168,196,0.25)); }
.scr-bar { height: 54px; margin: auto 12px 14px; border-radius: 16px; background: var(--surface-2); border: 1px solid var(--border); display:flex; align-items:center; justify-content:space-around; }
.scr-bar i { width: 22px; height: 22px; border-radius: 7px; background: var(--surface-2); border: 1px solid var(--border); display:block; }
.scr-bar i.on { background: var(--grad); border: 0; }

/* ---------- generic cards ---------- */
.grid { display: grid; gap: 20px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-5px); border-color: var(--border-strong); background: var(--surface-2); box-shadow: var(--shadow); }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14.5px; margin: 0; }

.ic {
  width: 50px; height: 50px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  background: var(--grad-soft);
  border: 1px solid var(--border-strong);
  color: var(--blush);
}
.ic svg { width: 24px; height: 24px; }
.card:hover .ic { color: #fff; box-shadow: var(--glow-rose); }

/* compact icon cards (what-is / why) */
.mini { display: flex; gap: 14px; align-items: flex-start; }
.mini .ic { width: 44px; height: 44px; margin: 0; border-radius: 12px; flex: none; }
.mini .ic svg { width: 21px; height: 21px; }
.mini h3 { font-size: 16.5px; margin-bottom: 3px; }
.mini p { font-size: 13.5px; }

/* feature card accent number */
.feat .ic { margin-bottom: 18px; }

/* ---------- steps timeline ---------- */
.steps { display: grid; gap: 16px; max-width: 880px; margin: 0 auto; }
.step {
  display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 22px; transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.step:hover { border-color: var(--border-strong); transform: translateX(4px); background: var(--surface-2); }
.step .n {
  width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; font-weight: 600; color: #1a0f24;
  background: var(--grad); box-shadow: 0 10px 26px -12px rgba(199,155,232,0.8);
}
.step h3 { font-size: 18px; margin-bottom: 4px; }
.step p { color: var(--muted); font-size: 14.5px; margin: 0; }
.note { text-align: center; color: var(--faint); font-size: 14px; margin-top: 26px; font-style: italic; }

/* ---------- showcase phones ---------- */
.showcase { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; align-items: end; }
.show-item { text-align: center; }
.show-item .phone { width: 100%; max-width: 210px; margin: 0 auto 14px; }
.show-cap { font-family: var(--font-display); font-size: 16px; margin-bottom: 2px; }
.show-sub { color: var(--faint); font-size: 12.5px; }
.ph-label {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%); z-index: 4;
  font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint);
  background: rgba(10,6,18,0.7); padding: 3px 8px; border-radius: 999px; border: 1px solid var(--border);
}

/* ---------- download band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(60% 120% at 15% 10%, rgba(247,168,196,0.22), transparent 60%),
    radial-gradient(60% 120% at 90% 90%, rgba(168,156,242,0.24), transparent 60%),
    var(--surface);
  padding: 56px 40px; text-align: center;
  backdrop-filter: blur(10px);
}
.cta-band h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 12px; }
.cta-band p { color: var(--muted); font-size: 17px; max-width: 560px; margin: 0 auto 26px; }
.cta-band .store-row { justify-content: center; }
.cta-band .small { color: var(--faint); font-size: 13.5px; margin-top: 18px; font-style: italic; }

/* ---------- plans ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 26px; transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.plan:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.plan--featured { border-color: transparent; background: linear-gradient(180deg, rgba(199,155,232,0.16), rgba(168,156,242,0.06)), var(--surface); box-shadow: var(--glow-lav); position: relative; }
.plan--featured::before { content:""; position:absolute; inset:0; border-radius: var(--radius-lg); padding:1px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events:none; }
.plan .tier { font-family: var(--font-display); font-size: 23px; margin-bottom: 6px; }
.plan .badge { position: absolute; top: 18px; right: 18px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #1a0f24; background: var(--grad); padding: 5px 11px; border-radius: 999px; }
.plan .lede { color: var(--faint); font-size: 13.5px; margin-bottom: 18px; }
.plan ul { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 11px; flex: 1; }
.plan li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 14.5px; }
.plan li svg { width: 18px; height: 18px; color: var(--mauve); flex: none; margin-top: 2px; }

/* ---------- tips / guidelines ---------- */
.list-cards { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
.lc { display: flex; gap: 12px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; }
.lc:hover { border-color: var(--border-strong); }
.lc svg { width: 20px; height: 20px; color: var(--blush); flex: none; margin-top: 2px; }
.lc span { color: var(--muted); font-size: 14.5px; }

.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: center; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.25s ease; }
.faq-item.open { border-color: var(--border-strong); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: var(--text); font-family: var(--font-body); font-size: 16px; font-weight: 600; padding: 19px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; }
.faq-q:focus-visible { outline: 2px solid var(--lavender); outline-offset: -3px; }
.faq-q .chev { width: 22px; height: 22px; flex: none; transition: transform 0.3s ease; color: var(--mauve); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-a p { color: var(--muted); font-size: 14.5px; margin: 0; padding: 0 22px 20px; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 56px 0 34px; margin-top: 30px; background: linear-gradient(180deg, transparent, rgba(168,156,242,0.05)); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 38px; }
.footer .brand { margin-bottom: 14px; }
.footer .tag { color: var(--muted); font-size: 14px; max-width: 280px; }
.footer h4 { font-family: var(--font-body); font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin: 0 0 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a { color: var(--muted); font-size: 14px; }
.footer a:hover { color: var(--text); }
.footer .socials { display: flex; gap: 10px; margin-top: 16px; }
.footer .socials a,
.footer .socials .soc-soon { width: 40px; height: 40px; border-radius: 11px; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: border-color 0.2s ease, transform 0.2s ease; }
.footer .socials a:hover { border-color: var(--lavender); transform: translateY(-2px); }
.footer .socials .soc-soon { opacity: 0.45; cursor: default; }
.footer .socials svg { width: 19px; height: 19px; color: var(--muted); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between; align-items: center; color: var(--faint); font-size: 13px; }
.footer-bottom .fnote { font-style: italic; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero .sub { margin-left: auto; margin-right: auto; }
  .hero, .hero-grid { text-align: center; }
  .hero-ctas, .trust-strip { justify-content: center; }
  .phone-stage { order: -1; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .showcase { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-right .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: rgba(12, 8, 22, 0.96); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border); padding: 14px 22px 20px;
  }
  .nav.open .nav-links a { padding: 10px 0; font-size: 16px; width: 100%; }
  .nav.open .nav-links .btn { display: inline-flex; margin-top: 8px; }
  .section { padding: 64px 0; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .list-cards { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 40px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .showcase { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
  .store-btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}
