/* ============================================================
   StraBar — site web (vitrine + pages légales)
   Layout + composants, construits sur les tokens du design
   system (colors_and_type.css). Dark mode only, warm-black +
   gold. Mobile-first, responsive.
   ============================================================ */

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

* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--sb-background);
  color: var(--sb-fg);
  font-family: var(--sb-font-sans);
  font-size: var(--sb-t-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

::selection { background: var(--sb-accent-20); color: var(--sb-accent-soft); }

/* ---------- Layout primitives ---------- */
.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.wrap--narrow { max-width: 760px; }

.section { padding: clamp(56px, 9vw, 120px) 0; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }

.eyebrow {
  display: inline-block;
  font-size: var(--sb-t-caption);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sb-accent);
}

.lead {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--sb-fg-2);
  line-height: 1.55;
}

/* ---------- Wordmark ---------- */
.wordmark {
  font-family: var(--sb-font-rounded);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--sb-fg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wordmark .burst { color: var(--sb-accent); }

/* ============================================================
   Header / nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 18, 16, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--sb-hairline);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__brand { font-size: 21px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-size: var(--sb-t-subhead);
  font-weight: 500;
  color: var(--sb-fg-2);
  transition: color 0.15s ease;
}
.nav__links a:hover { color: var(--sb-fg); }
.nav__cta { margin-left: 4px; }
@media (max-width: 720px) {
  .nav__links .nav__link-text { display: none; }
  .nav__links { gap: 14px; }
}

/* ============================================================
   Buttons (extend the DS button classes for the web)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--sb-font-sans);
  font-weight: 600;
  cursor: pointer;
  border: 0;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--sb-accent);
  color: rgb(20 18 16);
  font-size: var(--sb-t-subhead);
  height: 50px;
  padding: 0 24px;
  border-radius: var(--sb-r-lg);
  box-shadow: var(--sb-shadow-glow);
}
.btn--primary:hover { background: var(--sb-accent-light); }

.btn--ghost {
  background: var(--sb-elevated);
  color: var(--sb-fg);
  font-size: var(--sb-t-subhead);
  height: 50px;
  padding: 0 22px;
  border-radius: var(--sb-r-lg);
}
.btn--ghost:hover { background: var(--sb-elevated-2); }

.btn--sm {
  height: 38px;
  padding: 0 16px;
  border-radius: var(--sb-r-sm);
  font-size: var(--sb-t-subhead);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* App Store badge button */
.appstore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 22px 0 18px;
  border-radius: var(--sb-r-lg);
  background: var(--sb-accent);
  color: rgb(20 18 16);
  box-shadow: var(--sb-shadow-glow);
  transition: background 0.15s ease, transform 0.12s ease;
}
.appstore:hover { background: var(--sb-accent-light); }
.appstore:active { transform: translateY(1px); }
.appstore svg { width: 26px; height: 26px; flex: none; }
.appstore__txt { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.appstore__small { font-size: 11px; font-weight: 600; opacity: 0.72; }
.appstore__big { font-size: 18px; font-weight: 700; letter-spacing: -0.2px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(40px, 6vw, 72px);
  overflow: hidden;
}
.hero::before {
  /* soft gold glow behind the headline */
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  width: 720px;
  height: 480px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, var(--sb-accent-12), transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__title {
  font-family: var(--sb-font-rounded);
  font-weight: 700;
  font-size: clamp(40px, 7vw, 68px);
  line-height: 1.02;
  letter-spacing: -1.5px;
  margin: 18px 0 0;
}
.hero__title .gold { color: var(--sb-accent); }
.hero__sub {
  margin-top: 22px;
  max-width: 30ch;
  font-size: clamp(17px, 2.1vw, 20px);
  color: var(--sb-fg-2);
  line-height: 1.55;
}
.hero__cta { margin-top: 32px; }
.hero__meta {
  margin-top: 20px;
  font-size: var(--sb-t-footnote);
  color: var(--sb-fg-3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__art {
  position: relative;
  display: flex;
  justify-content: center;
}

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__meta { justify-content: center; }
  .hero__art { order: -1; }
}

/* ============================================================
   Phone frame (mirrors the App Store screenshot framing)
   ============================================================ */
.phone {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1206 / 2622;
  border-radius: 44px;
  border: 2.5px solid var(--sb-accent-20);
  background: #141210;
  padding: 8px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
}
.phone__screen img { width: 100%; height: 100%; object-fit: cover; }
.phone__notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 26px;
  background: #000;
  border-radius: 16px;
  z-index: 3;
}
.phone--float {
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@media (prefers-reduced-motion: reduce) {
  .phone--float { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Trust / stat strip
   ============================================================ */
.statbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sb-hairline);
  border: 1px solid var(--sb-hairline);
  border-radius: var(--sb-r-2xl);
  overflow: hidden;
}
.statbar__cell {
  background: var(--sb-surface);
  padding: 22px 18px;
  text-align: center;
}
.statbar__num {
  font-family: var(--sb-font-rounded);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 34px);
  color: var(--sb-accent);
  line-height: 1;
}
.statbar__lbl {
  margin-top: 6px;
  font-size: var(--sb-t-footnote);
  color: var(--sb-fg-3);
}
@media (max-width: 620px) {
  .statbar { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Section heading
   ============================================================ */
.shead { max-width: 620px; margin-bottom: 48px; }
.shead--center { margin-left: auto; margin-right: auto; text-align: center; }
.shead__title {
  font-family: var(--sb-font-rounded);
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.8px;
  margin-top: 14px;
}
.shead__sub { margin-top: 16px; }

/* ============================================================
   Feature showcase — alternating phone + text rows
   ============================================================ */
.showcase { display: flex; flex-direction: column; gap: clamp(64px, 9vw, 128px); }
.feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
.feat:nth-child(even) .feat__media { order: 2; }
.feat__copy { max-width: 420px; }
.feat__title {
  font-family: var(--sb-font-rounded);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 14px 0 0;
}
.feat__text {
  margin-top: 14px;
  color: var(--sb-fg-2);
  font-size: var(--sb-t-callout);
  line-height: 1.6;
}
.feat__list { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.feat__li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--sb-t-subhead);
  color: var(--sb-fg-2);
}
.feat__li svg { width: 18px; height: 18px; color: var(--sb-accent); flex: none; }
.feat__media { display: flex; justify-content: center; }
@media (max-width: 820px) {
  .feat { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .feat:nth-child(even) .feat__media { order: 0; }
  .feat__copy { margin: 0 auto; }
  .feat__list { display: inline-flex; text-align: left; }
}

/* icon badge (DS 44×44) */
.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: var(--sb-r-md);
  background: var(--sb-accent-12);
  color: var(--sb-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-badge svg { width: 24px; height: 24px; }
.feat .icon-badge { margin: 0 0 4px; }
.feat:nth-child(even) .feat__copy .icon-badge,
@media (max-width: 820px) { .feat .icon-badge { margin-left: auto; margin-right: auto; } }

/* ============================================================
   Feature grid (cards) — the "why" overview
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--sb-surface);
  border: 1px solid var(--sb-hairline);
  border-radius: var(--sb-r-2xl);
  box-shadow: var(--sb-shadow-card);
  padding: 26px 24px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--sb-hairline-2); }
.card__title {
  font-size: var(--sb-t-headline);
  font-weight: 600;
  margin: 18px 0 8px;
}
.card__text { color: var(--sb-fg-2); font-size: var(--sb-t-subhead); line-height: 1.55; }
@media (max-width: 880px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }

/* ============================================================
   CTA band
   ============================================================ */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--sb-surface);
  border: 1px solid var(--sb-hairline-2);
  border-radius: var(--sb-r-3xl);
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
  text-align: center;
}
.cta::before {
  content: "";
  position: absolute;
  inset: -50% 20% auto 20%;
  height: 320px;
  background: radial-gradient(ellipse at center, var(--sb-accent-12), transparent 70%);
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 1; }
.cta__title {
  font-family: var(--sb-font-rounded);
  font-weight: 700;
  font-size: clamp(28px, 4.6vw, 44px);
  letter-spacing: -0.8px;
  line-height: 1.06;
}
.cta__sub { margin: 16px auto 0; max-width: 46ch; }
.cta__btns { margin-top: 30px; display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--sb-hairline);
  padding: 56px 0 40px;
}
.footer__grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer__brand { max-width: 320px; }
.footer__tag { margin-top: 12px; color: var(--sb-fg-3); font-size: var(--sb-t-subhead); }
.footer__cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer__col h4 {
  font-size: var(--sb-t-caption);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sb-fg-3);
  font-weight: 700;
  margin-bottom: 14px;
}
.footer__col a {
  display: block;
  color: var(--sb-fg-2);
  font-size: var(--sb-t-subhead);
  padding: 6px 0;
  transition: color 0.15s ease;
}
.footer__col a:hover { color: var(--sb-accent); }
.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--sb-hairline);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: var(--sb-t-footnote);
  color: var(--sb-fg-3);
}
.footer__bottom .age {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.age-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 20px;
  padding: 0 6px;
  border-radius: var(--sb-r-pill);
  background: var(--sb-elevated);
  color: var(--sb-fg-2);
  font-size: 11px;
  font-weight: 700;
}

/* ============================================================
   Legal / support article pages
   ============================================================ */
.page-hero {
  padding: clamp(48px, 7vw, 80px) 0 clamp(24px, 4vw, 40px);
  border-bottom: 1px solid var(--sb-hairline);
}
.page-hero__title {
  font-family: var(--sb-font-rounded);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -1px;
  margin-top: 14px;
}
.page-hero__meta { margin-top: 14px; color: var(--sb-fg-3); font-size: var(--sb-t-footnote); }

.doc { padding: clamp(40px, 6vw, 64px) 0 clamp(56px, 8vw, 96px); }
.doc h2 {
  font-family: var(--sb-font-rounded);
  font-weight: 700;
  font-size: var(--sb-t-title2);
  letter-spacing: -0.4px;
  margin: 40px 0 14px;
  scroll-margin-top: 84px;
}
.doc h2:first-child { margin-top: 0; }
.doc h3 {
  font-size: var(--sb-t-headline);
  font-weight: 600;
  margin: 24px 0 8px;
  color: var(--sb-fg);
}
.doc p { color: var(--sb-fg-2); margin: 10px 0; line-height: 1.65; }
.doc ul { margin: 10px 0 10px 4px; list-style: none; }
.doc li {
  position: relative;
  padding-left: 22px;
  margin: 8px 0;
  color: var(--sb-fg-2);
  line-height: 1.6;
}
.doc li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sb-accent);
}
.doc a { color: var(--sb-accent); text-decoration: underline; text-underline-offset: 3px; }
.doc strong { color: var(--sb-fg); font-weight: 600; }

/* numbered legal section chips */
.doc h2 .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  border-radius: var(--sb-r-sm);
  background: var(--sb-accent-12);
  color: var(--sb-accent);
  font-size: var(--sb-t-subhead);
  font-weight: 700;
  vertical-align: 2px;
}

/* contact card */
.contact-card {
  background: var(--sb-surface);
  border: 1px solid var(--sb-hairline);
  border-radius: var(--sb-r-2xl);
  box-shadow: var(--sb-shadow-card);
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--sb-r-2xl);
  background: var(--sb-accent-12);
  color: var(--sb-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.contact-card__icon svg { width: 30px; height: 30px; }
.contact-card__body { flex: 1; min-width: 220px; }
.contact-card__body h3 { font-size: var(--sb-t-title3); font-weight: 700; }
.contact-card__body p { color: var(--sb-fg-2); margin-top: 6px; font-size: var(--sb-t-subhead); }
.contact-card__email {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--sb-accent);
  font-size: var(--sb-t-callout);
}

/* response-time pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: var(--sb-r-pill);
  background: var(--sb-accent-12);
  color: var(--sb-accent);
  font-size: var(--sb-t-caption);
  font-weight: 600;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sb-success); }

/* FAQ accordion */
.faq { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--sb-surface);
  border: 1px solid var(--sb-hairline);
  border-radius: var(--sb-r-xl);
  overflow: hidden;
  transition: border-color 0.15s ease;
}
.faq__item[open] { border-color: var(--sb-hairline-2); }
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: var(--sb-t-callout);
  font-weight: 600;
  color: var(--sb-fg);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q .chev {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--sb-fg-3);
  transition: transform 0.2s ease;
}
.faq__item[open] .faq__q .chev { transform: rotate(180deg); color: var(--sb-accent); }
.faq__a { padding: 0 20px 20px; color: var(--sb-fg-2); line-height: 1.65; }
.faq__a p { margin: 0 0 8px; }
.faq__a strong { color: var(--sb-fg); }

/* back link */
.backlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sb-fg-3);
  font-size: var(--sb-t-subhead);
  font-weight: 500;
  transition: color 0.15s ease;
}
.backlink:hover { color: var(--sb-accent); }
.backlink svg { width: 16px; height: 16px; }

/* generic divider */
.hr { height: 1px; background: var(--sb-hairline); border: 0; margin: 40px 0; }

/* ============================================================
   v2 — polish pass
   (emil-design-eng · impeccable · redesign-existing-projects)
   Motion, depth & brand mark. Built on the same warm-black + gold
   tokens — identity preserved, craft raised.
   ============================================================ */
:root {
  --ease-out-quart: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.30, 1);
}

/* Subtle film grain so the warm-black surfaces don't read as flat/sterile */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Brand mark — the app icon used as the logo */
.brandmark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  flex: none;
}
.footer__brand .brandmark { width: 34px; height: 34px; }

/* Press feedback on every interactive control (emil: scale 0.97, strong ease-out) */
.btn,
.appstore,
.nav__cta {
  transition: transform 0.16s var(--ease-out-quart), background 0.18s ease, box-shadow 0.18s ease;
}
.btn:active,
.appstore:active { transform: scale(0.97); }

/* Eyebrow as a deliberate brand label (leading dot) instead of a bare tracked kicker */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.14em;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sb-accent);
  box-shadow: 0 0 10px var(--sb-accent-35);
}
.shead--center .eyebrow,
.cta .eyebrow { justify-content: center; }

/* Value strip — honest, no fake metrics */
.valuestrip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.valuestrip__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--sb-surface);
  border: 1px solid var(--sb-hairline);
  border-radius: var(--sb-r-2xl);
  box-shadow: var(--sb-shadow-card);
}
.valuestrip__icon {
  width: 44px; height: 44px;
  flex: none;
  border-radius: var(--sb-r-md);
  background: var(--sb-accent-12);
  color: var(--sb-accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.valuestrip__icon svg { width: 22px; height: 22px; }
.valuestrip__txt { display: flex; flex-direction: column; gap: 2px; }
.valuestrip__txt strong { font-weight: 600; font-size: var(--sb-t-callout); color: var(--sb-fg); }
.valuestrip__txt span { color: var(--sb-fg-3); font-size: var(--sb-t-footnote); }
@media (max-width: 720px) { .valuestrip { grid-template-columns: 1fr; } }

/* Cards: gold-tinted depth + lift, smoother curve */
.card {
  transition: transform 0.24s var(--ease-out-quart), border-color 0.24s ease, box-shadow 0.24s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--sb-accent-20);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--sb-accent-12), 0 0 34px -10px var(--sb-accent-20);
}

/* Hero load-in (above the fold → on load, staggered, not scroll) */
@keyframes introUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.js .hero__copy > * { animation: introUp 0.7s var(--ease-out-expo) both; }
.js .hero__copy > *:nth-child(1) { animation-delay: 0.02s; }
.js .hero__copy > *:nth-child(2) { animation-delay: 0.08s; }
.js .hero__copy > *:nth-child(3) { animation-delay: 0.14s; }
.js .hero__copy > *:nth-child(4) { animation-delay: 0.20s; }
.js .hero__copy > *:nth-child(5) { animation-delay: 0.26s; }
.js .hero__art { animation: introUp 0.9s var(--ease-out-expo) 0.18s both; }

/* Scroll reveal — hidden state only applies when JS is on, so no-JS shows all */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease-out-expo), transform 0.65s var(--ease-out-expo);
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .cards .card:nth-child(2) { transition-delay: 0.06s; }
.js .cards .card:nth-child(3) { transition-delay: 0.12s; }
.js .cards .card:nth-child(5) { transition-delay: 0.06s; }
.js .cards .card:nth-child(6) { transition-delay: 0.12s; }

@media (prefers-reduced-motion: reduce) {
  .js .hero__copy > *,
  .js .hero__art { animation: none; }
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}
