/* =====================================================================
   ORYON — site marketing (template). Thème sombre & premium, accent cyan,
   aligné sur l'application (mêmes couleurs que lib/theme.dart).
   Pur HTML/CSS/JS, aucune dépendance de build.
   ===================================================================== */

:root {
  --bg: #0b0b0d;
  --bg-2: #0e0e12;
  --surface: #141417;
  --card: #17171c;
  --card-2: #1d1d23;
  --border: #2a2a31;
  --text: #f5f5f7;
  --muted: #9b9ba3;
  --accent: #00bcd4;
  --accent-2: #26d6ed;
  --accent-3: #7aeaf7;
  --danger: #ff453a;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1160px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .55);
  --glow: 0 0 0 1px rgba(0, 188, 212, .25), 0 14px 50px rgba(0, 188, 212, .28);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient background: dark base + two soft cyan auras */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 600px at 78% -8%, rgba(0, 188, 212, .16), transparent 60%),
    radial-gradient(800px 600px at 8% 12%, rgba(38, 214, 237, .10), transparent 55%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -2; opacity: .35;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(1000px 700px at 50% -10%, #000 35%, transparent 75%);
          mask-image: radial-gradient(1000px 700px at 50% -10%, #000 35%, transparent 75%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -.02em; font-weight: 800; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.25rem; }
p { color: var(--muted); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); }
.accent { color: var(--accent-3); }
.center { text-align: center; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }

.gradient-text {
  background: linear-gradient(100deg, #fff 10%, var(--accent-3) 55%, var(--accent) 95%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-3);
  padding: 7px 14px; border-radius: 100px;
  background: rgba(0, 188, 212, .08); border: 1px solid rgba(0, 188, 212, .25);
}

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.06rem; }

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: .98rem; cursor: pointer;
  padding: 13px 22px; border-radius: var(--radius-sm); border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  color: #04181c; box-shadow: var(--glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(0,188,212,.4), 0 18px 60px rgba(0,188,212,.42); }
.btn-ghost { background: rgba(255, 255, 255, .04); color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-sm { padding: 9px 16px; font-size: .88rem; }
.btn-block { width: 100%; }

/* ------------------------------- Nav ------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 10, 13, .66);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.is-scrolled { border-bottom-color: var(--border); background: rgba(10, 10, 13, .85); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: .14em; }
.brand__mark {
  color: var(--accent-2); font-size: 1.35rem;
  text-shadow: 0 0 18px rgba(0, 188, 212, .7);
}
.brand__name { font-size: 1.05rem; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { color: var(--muted); font-weight: 600; font-size: .95rem; transition: color .15s ease; }
.nav__links a:hover, .nav__links a.active { color: #fff; }
.nav__links a.btn { color: #04181c; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }

/* ------------------------------ Hero ------------------------------- */
.hero { position: relative; padding: 70px 0 40px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin: 18px 0 0; }
.hero__sub { margin-top: 20px; font-size: 1.16rem; max-width: 520px; }
.hero__cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { margin-top: 38px; display: flex; gap: 34px; flex-wrap: wrap; }
.hero__stats .num { font-size: 1.7rem; font-weight: 800; color: #fff; }
.hero__stats .lbl { font-size: .85rem; color: var(--muted); }
.hero__rating { margin-top: 26px; display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .92rem; }
.stars { color: var(--accent-3); letter-spacing: 3px; }

/* Device mockup */
.hero__art { position: relative; }
.device {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease;
}
/* Straight by default (the full screenshot is visible); a subtle lift on hover. */
.hero__art:hover .device { transform: translateY(-4px); }
/* Clean framed screenshot: no window chrome, subtle cyan-edged premium frame. */
.device--clean { padding: 0; border-radius: 18px; border: 1px solid rgba(122, 234, 247, .18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6), 0 0 0 1px rgba(0, 188, 212, .12); }
.device--clean .device__img { display: block; width: 100%; border-radius: 17px; }
.hero__art-caption { margin-top: 14px; text-align: center; font-size: .82rem; color: var(--muted); }
.device__bar { display: flex; gap: 7px; padding: 12px 14px; background: #101014; border-bottom: 1px solid var(--border); }
.device__bar span { width: 11px; height: 11px; border-radius: 50%; background: #34343c; }
.device__bar span:first-child { background: #ff5f57; }
.device__bar span:nth-child(2) { background: #febc2e; }
.device__bar span:nth-child(3) { background: #28c840; }
.device img { width: 100%; display: block; }
.hero__art::after {
  content: ""; position: absolute; inset: -40px -20px auto auto; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0, 188, 212, .35), transparent 65%);
  filter: blur(20px); z-index: -1;
}
.badge-float {
  position: absolute; bottom: -18px; right: -14px; left: auto;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 14px;
  background: rgba(20, 20, 23, .92); border: 1px solid var(--border);
  backdrop-filter: blur(8px); box-shadow: var(--shadow);
}
@media (max-width: 680px) { .badge-float { right: 8px; bottom: -14px; } }
.badge-float .dot { width: 9px; height: 9px; border-radius: 50%; background: #28c840; box-shadow: 0 0 12px #28c840; }
.badge-float small { color: var(--muted); display: block; font-size: .72rem; }
.badge-float strong { font-size: .9rem; }

/* --------------------------- Trust strip --------------------------- */
.trust { padding: 30px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust__row { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; color: var(--muted); }
.trust__row span { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: .92rem; }
.trust__row svg { color: var(--accent-3); }

/* ---------------------------- Feature grid ------------------------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-5px); border-color: rgba(0, 188, 212, .45); box-shadow: var(--shadow); }
.card__icon {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px;
  background: rgba(0, 188, 212, .12); border: 1px solid rgba(0, 188, 212, .3); color: var(--accent-3);
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: .96rem; }

/* --------------------------- Showcase rows ------------------------- */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 64px; }
.showcase:last-child { margin-bottom: 0; }
.showcase--reverse .showcase__media { order: 2; }
.showcase__media {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow); background: var(--surface);
}
.showcase__media .device__bar { border-radius: 0; }
.showcase ul { list-style: none; margin-top: 18px; display: grid; gap: 12px; }
.showcase li { display: flex; gap: 11px; align-items: flex-start; color: var(--text); }
.showcase li svg { color: var(--accent-3); flex-shrink: 0; margin-top: 3px; }
.showcase li span { color: var(--muted); }

/* ----------------------------- Pricing ----------------------------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px;
  display: flex; flex-direction: column;
}
.plan--featured { border-color: var(--accent); box-shadow: var(--glow); position: relative; }
.plan__tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(100deg, var(--accent), var(--accent-2)); color: #04181c;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
}
.plan h3 { font-size: 1.15rem; }
.plan__price { margin: 14px 0 4px; font-size: 2.6rem; font-weight: 800; }
.plan__price span { font-size: .95rem; color: var(--muted); font-weight: 600; }
.plan__desc { font-size: .9rem; min-height: 40px; }
.plan ul { list-style: none; margin: 20px 0 26px; display: grid; gap: 11px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; }
.plan li svg { color: var(--accent-3); flex-shrink: 0; margin-top: 3px; }
.plan li.off { color: var(--muted); opacity: .55; }
.plan li.off svg { color: var(--muted); }
.plan .btn { margin-top: auto; }
.pricing-note { text-align: center; margin-top: 22px; font-size: .9rem; }

/* --------------------------- Download page ------------------------- */
.dl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dl-card { text-align: center; }
.dl-card .card__icon { margin: 0 auto 16px; width: 58px; height: 58px; }
.dl-card .ver { font-size: .82rem; color: var(--muted); margin: 6px 0 18px; }
.dl-split { display: grid; grid-template-columns: 1.4fr .9fr; gap: 30px; align-items: center; margin-top: 50px; }
.qr-card { text-align: center; }
.qr-card img { width: 180px; height: 180px; margin: 0 auto 14px; border-radius: 12px; background: #fff; padding: 10px; }
.steps { counter-reset: step; display: grid; gap: 18px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step__n {
  counter-increment: step; flex-shrink: 0;
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(0, 188, 212, .12); border: 1px solid rgba(0, 188, 212, .3);
  color: var(--accent-3); font-weight: 800;
}
.step__n::before { content: counter(step); }

/* ------------------------------- FAQ ------------------------------- */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 4px 20px;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 16px 0; font-weight: 700; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent-3); font-size: 1.4rem; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 0 18px; }

/* ------------------------------- CTA ------------------------------- */
.cta-band {
  text-align: center; border-radius: 24px; padding: 64px 32px; position: relative; overflow: hidden;
  background: linear-gradient(140deg, rgba(0,188,212,.14), rgba(38,214,237,.05));
  border: 1px solid rgba(0, 188, 212, .3);
}
.cta-band h2 { max-width: 620px; margin: 0 auto 14px; }
.cta-band p { max-width: 520px; margin: 0 auto 28px; }

/* ----------------------------- Footer ------------------------------ */
.footer { border-top: 1px solid var(--border); padding: 64px 0 30px; margin-top: 30px; background: rgba(10,10,13,.5); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.footer__brand p { margin-top: 14px; max-width: 300px; font-size: .92rem; }
.footer__col h4 { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.footer__col a { display: block; color: var(--muted); padding: 5px 0; font-size: .94rem; transition: color .15s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--border); font-size: .86rem; color: var(--muted); flex-wrap: wrap; }

/* --------------------------- Scroll reveal ------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------------------------- Responsive --------------------------- */
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__art { max-width: 480px; }
  .grid-3, .pricing, .dl-grid { grid-template-columns: 1fr 1fr; }
  .showcase, .showcase--reverse .showcase__media, .dl-split { grid-template-columns: 1fr; }
  .showcase--reverse .showcase__media { order: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .section { padding: 70px 0; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 4px;
    padding: 16px 24px 24px; background: rgba(12, 12, 15, .98); border-bottom: 1px solid var(--border);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .2s;
  }
  .nav__links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 12px 4px; }
  .grid-3, .grid-2, .pricing, .dl-grid, .footer__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* =====================================================================
   ADDITIONS (production) — disclaimer, cookie banner, pricing compare,
   fictional CSS app mockups, legal/prose pages.
   ===================================================================== */

/* Honest feature chips (replaces the misleading 4K/∞ stats block) */
.hero__chips { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 15px; border-radius: 100px; font-size: .9rem; font-weight: 600; color: var(--text);
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
}
.chip svg { color: var(--accent-3); }

/* "Oryon is just a player / no content" disclaimer */
.disclaimer-band {
  border: 1px solid rgba(255,176,32,.3); background: rgba(255,176,32,.06);
  border-radius: var(--radius); padding: 20px 24px; display: flex; gap: 14px; align-items: flex-start;
}
.disclaimer-band .ico { color: var(--warning); flex-shrink: 0; margin-top: 2px; }
.disclaimer-band p { color: var(--text); font-size: .96rem; margin: 0; }
.disclaimer-band strong { color: #fff; }
.disclaimer-inline { display: block; margin-top: 10px; font-size: .8rem; color: var(--muted); font-style: italic; }

/* ---- Fictional app mockups (pure CSS, no real posters) ---- */
.appshot { border-radius: 14px; overflow: hidden; background: var(--bg); border: 1px solid var(--border); }
.appshot__bar {
  display: flex; align-items: center; gap: 10px; padding: 11px 14px;
  background: var(--surface); border-bottom: 1px solid var(--border);
}
.appshot__bar .mk { color: var(--accent-2); font-weight: 900; letter-spacing: .12em; font-size: .8rem; }
.appshot__tabs { display: flex; gap: 14px; margin-left: 6px; }
.appshot__tabs span { font-size: .68rem; color: var(--muted); font-weight: 600; }
.appshot__tabs span.on { color: var(--accent-3); }
.appshot__body { padding: 14px; }
.appshot__rowlabel { font-size: .72rem; font-weight: 700; color: var(--muted); margin: 0 0 9px; letter-spacing: .04em; }
.poster-row { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 9px; }
.poster-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.poster {
  aspect-ratio: 2/3; border-radius: 8px; position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,.06); display: flex; align-items: flex-end;
}
.poster::before { content: ""; position: absolute; inset: 0; opacity: .9; }
.poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.82)); }
.poster span { position: relative; z-index: 1; font-size: .6rem; color: #fff; font-weight: 600; padding: 7px; line-height: 1.2; }
.poster.p1::before { background: linear-gradient(135deg,#0e3a4a,#0a1f3a); }
.poster.p2::before { background: linear-gradient(135deg,#3a1f5a,#16213e); }
.poster.p3::before { background: linear-gradient(135deg,#0a3a35,#0a2230); }
.poster.p4::before { background: linear-gradient(135deg,#4a2a10,#2a1530); }
.poster.p5::before { background: linear-gradient(135deg,#102a4a,#0a1428); }
.poster.p6::before { background: linear-gradient(135deg,#3a103a,#101a3a); }
.poster.p7::before { background: linear-gradient(135deg,#0a3a4a,#102a2a); }
.poster.p8::before { background: linear-gradient(135deg,#2a2a5a,#0a1020); }
/* live-list mockup */
.livelist { display: grid; gap: 7px; }
.liverow { display: flex; align-items: center; gap: 10px; padding: 8px 10px; background: var(--card); border: 1px solid var(--border); border-radius: 8px; }
.liverow .num { font-size: .7rem; color: var(--muted); font-weight: 700; width: 16px; }
.liverow .lg { width: 34px; height: 24px; border-radius: 4px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); flex-shrink: 0; }
.liverow .nm { font-size: .72rem; color: var(--text); font-weight: 600; }
.liverow .epg { margin-left: auto; font-size: .6rem; color: var(--accent-3); }
.shot-caption { text-align: center; font-size: .75rem; color: var(--muted); font-style: italic; margin-top: 10px; }

/* ---- Pricing: billing toggle + comparison table ---- */
.billing-toggle { display: inline-flex; gap: 4px; padding: 5px; border-radius: 100px; background: var(--card); border: 1px solid var(--border); margin: 0 auto 36px; }
.billing-toggle button {
  border: 0; background: none; cursor: pointer; color: var(--muted); font-weight: 700; font-size: .9rem;
  padding: 9px 18px; border-radius: 100px; transition: .15s; font-family: inherit;
}
.billing-toggle button.on { background: linear-gradient(100deg, var(--accent), var(--accent-2)); color: #04181c; }
.billing-toggle .save { font-size: .7rem; color: var(--accent-3); margin-left: 4px; }
.plan__price .per { display: none; }
.plan__price .per.show { display: inline; }
.plan__sub { font-size: .82rem; color: var(--muted); margin-bottom: 4px; min-height: 18px; }

.compare { width: 100%; border-collapse: collapse; margin-top: 10px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.compare th, .compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: .94rem; }
.compare thead th { background: var(--surface); color: #fff; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.compare th[scope=row] { color: var(--muted); font-weight: 600; }
.compare td { text-align: center; vertical-align: middle; }
.compare thead th { text-align: center; }
.compare thead th:first-child { text-align: left; }
/* Highlight the Premium column (3rd = last cell of each row) */
.compare td:last-child, .compare thead th:last-child { background: rgba(0,188,212,.06); }
.compare tr:last-child td, .compare tr:last-child th { border-bottom: 0; }
.compare .yes { color: var(--accent-3); font-weight: 800; }
.compare .no { color: var(--muted); opacity: .5; }
.compare col.col-feat { width: 46%; }

/* ---- Legal / prose pages ---- */
.prose-head { padding: 56px 0 8px; }
.prose-head h1 { font-size: clamp(2rem,4vw,3rem); }
.prose-head p { margin-top: 10px; }
.prose { max-width: 820px; margin: 0 auto; padding-bottom: 40px; }
.prose h2 { font-size: 1.35rem; margin: 36px 0 12px; color: #fff; }
.prose h3 { font-size: 1.05rem; margin: 22px 0 8px; color: var(--text); }
.prose p, .prose li { color: var(--muted); font-size: .98rem; line-height: 1.7; }
.prose ul { margin: 10px 0 10px 22px; display: grid; gap: 7px; }
.prose a { color: var(--accent-3); text-decoration: underline; }
.prose .card { padding: 20px 24px; margin: 16px 0; }
.prose .todo { color: var(--warning); font-weight: 700; }
.prose table.kv { width: 100%; border-collapse: collapse; margin: 6px 0 14px; }
.prose table.kv th { text-align: left; color: var(--text); font-weight: 600; padding: 8px 14px 8px 0; vertical-align: top; white-space: nowrap; }
.prose table.kv td { color: var(--muted); padding: 8px 0; }
.prose .updated { font-size: .85rem; color: var(--muted); margin-top: 8px; }

/* ---- Cookie consent banner (injected by app.js) ---- */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; max-width: 720px; margin: 0 auto;
  background: rgba(20,20,23,.97); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 18px 20px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  backdrop-filter: blur(10px); transform: translateY(140%); transition: transform .35s ease;
}
.cookie.show { transform: none; }
.cookie p { color: var(--text); font-size: .9rem; flex: 1 1 320px; margin: 0; }
.cookie p a { color: var(--accent-3); text-decoration: underline; }
.cookie__btns { display: flex; gap: 10px; flex-wrap: wrap; }

.footer__col a.muted-link { font-size: .9rem; }

/* Real app screenshot inside the device frame */
.device__img { width: 100%; display: block; }
.shot-frame { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); background: var(--bg); }

/* Richer poster mockups: rating + quality badge */
.poster .pq { position: absolute; top: 6px; right: 6px; z-index: 2; font-size: .52rem; font-weight: 800; letter-spacing: .03em; color: #04181c; background: var(--accent-3); padding: 2px 5px; border-radius: 5px; }
.poster .pr { position: absolute; top: 6px; left: 6px; z-index: 2; font-size: .55rem; font-weight: 700; color: #fff; background: rgba(0,0,0,.55); padding: 2px 5px; border-radius: 5px; }
/* EPG progress bar in the live mockup */
.liverow .bar { margin-left: auto; width: 60px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.12); overflow: hidden; flex-shrink: 0; }
.liverow .bar i { display: block; height: 100%; background: var(--accent); }
.liverow .epg { margin-left: 10px; }

/* Accessibility + small additions */
.skip { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--accent); color: #04181c; padding: 10px 16px; border-radius: 0 0 10px 0; font-weight: 700; }
.skip:focus { left: 0; }
:focus-visible { outline: 2px solid var(--accent-3); outline-offset: 2px; }
.card__icon.n { font-weight: 900; font-size: 1.5rem; }
.device-strip { justify-content: center; }
.secline { display: flex; gap: 10px; align-items: center; justify-content: center; flex-wrap: wrap; color: var(--muted); font-size: .9rem; margin-top: 14px; }
.secline b { color: var(--accent-3); }

/* =====================================================================
   SHOWTIME — poster wall hero, aurora, interactive demo, scrollytelling,
   gallery, animated pricing. Real poster art (public-domain + Blender CC),
   all vanilla CSS/JS. Everything animated respects prefers-reduced-motion.
   ===================================================================== */

/* Smooth cross-page fades (Chromium MPA view transitions; harmless elsewhere) */
@view-transition { navigation: auto; }

/* ---- Aurora backdrop (same visual language as the app's Home) ---- */
.aurora { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.aurora i {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5;
  will-change: transform;
}
.aurora i:nth-child(1) { width: 560px; height: 560px; left: -8%; top: -20%;
  background: radial-gradient(circle, rgba(0,188,212,.5), transparent 65%);
  animation: aur1 22s ease-in-out infinite alternate; }
.aurora i:nth-child(2) { width: 640px; height: 640px; right: -12%; top: 4%;
  background: radial-gradient(circle, rgba(94,53,177,.42), transparent 65%);
  animation: aur2 27s ease-in-out infinite alternate; }
.aurora i:nth-child(3) { width: 480px; height: 480px; left: 32%; bottom: -30%;
  background: radial-gradient(circle, rgba(38,214,237,.34), transparent 65%);
  animation: aur3 19s ease-in-out infinite alternate; }
@keyframes aur1 { to { transform: translate(9%, 14%) scale(1.15); } }
@keyframes aur2 { to { transform: translate(-11%, 9%) scale(.9); } }
@keyframes aur3 { to { transform: translate(7%, -13%) scale(1.2); } }

/* ---- Hero with inclined, endlessly-scrolling poster wall ---- */
.hero--wall { position: relative; overflow: hidden; padding: 108px 0 96px; isolation: isolate; }
.wall {
  position: absolute; inset: -22% -14%; z-index: 0; pointer-events: none;
  display: flex; gap: 18px; justify-content: center;
  transform: rotate(-9deg);
}
.wall__col { flex: 1; max-width: 190px; display: flex; flex-direction: column; gap: 18px;
  animation: wallUp 70s linear infinite; will-change: transform; }
.wall__col.rev { animation-name: wallDown; }
.wall__col:nth-child(1) { animation-duration: 86s; }
.wall__col:nth-child(2) { animation-duration: 64s; }
.wall__col:nth-child(3) { animation-duration: 78s; }
.wall__col:nth-child(4) { animation-duration: 60s; }
.wall__col:nth-child(5) { animation-duration: 92s; }
.wall__col img {
  width: 100%; aspect-ratio: 2/3; object-fit: cover; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.07); opacity: .8;
  box-shadow: 0 12px 34px rgba(0,0,0,.45);
}
/* content is duplicated once in the HTML → -50% loops seamlessly */
@keyframes wallUp   { to { transform: translateY(-50%); } }
@keyframes wallDown { from { transform: translateY(-50%); } to { transform: none; } }
/* scrims: keep the copy readable, fade the wall into the page bg */
.hero--wall .scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero--wall .scrim::before { content: ""; position: absolute; inset: 0;
  background: linear-gradient(92deg, var(--bg) 0%, rgba(11,11,13,.94) 30%, rgba(11,11,13,.55) 55%, rgba(11,11,13,.28) 100%); }
.hero--wall .scrim::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,13,.9), transparent 22%, transparent 72%, var(--bg) 100%); }
.hero--wall .container { position: relative; z-index: 2; }
.hero--wall .hero__copy { max-width: 640px; }
.wall-caption { position: absolute; right: 18px; bottom: 10px; z-index: 2;
  font-size: .68rem; color: rgba(255,255,255,.4); font-style: italic; max-width: 420px; text-align: right; }

/* staggered entrance for the hero copy */
.hero__copy > * { opacity: 0; transform: translateY(18px);
  animation: riseIn .7s cubic-bezier(.2,.7,.2,1) forwards; }
.hero__copy > *:nth-child(1) { animation-delay: .05s; }
.hero__copy > *:nth-child(2) { animation-delay: .15s; }
.hero__copy > *:nth-child(3) { animation-delay: .28s; }
.hero__copy > *:nth-child(4) { animation-delay: .4s; }
.hero__copy > *:nth-child(5) { animation-delay: .5s; }
.hero__copy > *:nth-child(6) { animation-delay: .6s; }
@keyframes riseIn { to { opacity: 1; transform: none; } }

/* ---- Animated stat counters ---- */
.stats { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 38px; }
.stat .num { font-size: 1.9rem; font-weight: 900; color: #fff; letter-spacing: -.02em;
  font-variant-numeric: tabular-nums; }
.stat .num b { color: var(--accent-3); font-weight: 900; }
.stat .lbl { font-size: .84rem; color: var(--muted); margin-top: 2px; }

/* ---- 3D tilt + cursor glow on cards ---- */
[data-tilt] { transform-style: preserve-3d; position: relative;
  transition: transform .18s ease, border-color .2s ease, box-shadow .2s ease; }
[data-tilt]::after { content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(220px circle at var(--gx,50%) var(--gy,50%), rgba(0,188,212,.14), transparent 65%);
  opacity: 0; transition: opacity .25s ease; pointer-events: none; }
[data-tilt]:hover::after { opacity: 1; }

/* ---- Magnetic CTA buttons (JS moves them slightly toward the cursor) ---- */
.btn-magnet { will-change: transform; }

/* ---- Interactive app demo ---- */
.demoapp {
  position: relative; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(122,234,247,.16); background: #0a0c11;
  box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(0,188,212,.08);
  aspect-ratio: 16/9.6; max-width: 980px; margin: 0 auto;
  display: flex; font-size: clamp(8px, 1.05vw, 12px);
}
.da-side { width: 17%; flex: none; border-right: 1px solid #161b24; padding: 1.2em .9em;
  display: flex; flex-direction: column; gap: .35em; background: rgba(14,17,24,.72); }
.da-brand { color: #5fe6f0; font-weight: 900; letter-spacing: .22em; font-size: 1.05em; margin-bottom: 1em; }
.da-item { display: flex; align-items: center; gap: .7em; padding: .62em .75em; border-radius: .7em;
  color: #a7adba; font-weight: 600; font-size: .95em; cursor: default; }
.da-item.on { background: linear-gradient(100deg, #19c3d1, #0e8f9b); color: #04121a; font-weight: 800; }
.da-main { flex: 1; min-width: 0; padding: 1.3em 1.4em; overflow: hidden; display: flex; flex-direction: column; gap: 1.1em; }
.da-hero { position: relative; border-radius: 1em; overflow: hidden; flex: none; height: 46%; }
.da-hero img { width: 100%; height: 100%; object-fit: cover; display: block;
  animation: kenburns 16s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1) translateX(0); } to { transform: scale(1.09) translateX(-2%); } }
.da-hero::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,8,12,.86), rgba(5,8,12,.2) 55%, transparent); }
.da-hero__meta { position: absolute; left: 1.4em; bottom: 1.2em; z-index: 2; max-width: 62%; }
.da-hero__meta h4 { color: #fff; font-size: 1.5em; font-weight: 900; letter-spacing: -.01em; }
.da-hero__meta .sub { color: rgba(255,255,255,.72); font-size: .85em; margin: .3em 0 .8em; }
.da-play { display: inline-flex; align-items: center; gap: .5em; background: #fff; color: #06121a;
  font-weight: 800; font-size: .9em; padding: .55em 1.1em; border-radius: .55em; }
.da-row { min-height: 0; }
.da-row h5 { color: #e8eaef; font-size: .95em; font-weight: 800; margin-bottom: .55em; letter-spacing: .02em; }
.da-rail { display: flex; gap: .8em; overflow-x: auto; scrollbar-width: none; padding-bottom: .3em; }
.da-rail::-webkit-scrollbar { display: none; }
.da-card { flex: 0 0 auto; width: 5.6em; cursor: pointer; position: relative;
  transition: transform .2s ease; }
.da-card:hover, .da-card:focus-visible { transform: translateY(-4px) scale(1.05); z-index: 2; }
.da-card img { width: 100%; aspect-ratio: 2/3; object-fit: cover; border-radius: .6em;
  border: 1px solid rgba(255,255,255,.08); box-shadow: 0 8px 22px rgba(0,0,0,.5); }
.da-card:hover img { box-shadow: 0 0 0 2px var(--accent), 0 14px 30px rgba(0,188,212,.35); }
.da-card .pg { position: absolute; left: 6%; right: 6%; bottom: .5em; height: .28em; border-radius: 1em;
  background: rgba(255,255,255,.25); overflow: hidden; }
.da-card .pg i { display: block; height: 100%; background: var(--accent); }
.da-hint { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 16px; }
.da-hint b { color: var(--accent-3); }

/* fiche overlay inside the demo */
.da-fiche { position: absolute; inset: 0; z-index: 5; display: flex; align-items: stretch;
  background: rgba(6,8,12,.55); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.da-fiche.show { opacity: 1; pointer-events: auto; }
.da-fiche__panel { margin: auto; width: 86%; max-height: 88%; border-radius: 1.1em; overflow: hidden;
  position: relative; display: flex; gap: 1.6em; padding: 1.8em;
  background: linear-gradient(120deg, rgba(13,16,22,.96), rgba(13,16,22,.88)),
              var(--da-glow, radial-gradient(80% 120% at 20% 0%, rgba(0,188,212,.35), transparent));
  border: 1px solid rgba(255,255,255,.09); box-shadow: 0 30px 90px rgba(0,0,0,.7);
  transform: translateY(16px) scale(.97); transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.da-fiche.show .da-fiche__panel { transform: none; }
.da-fiche__poster { width: 26%; flex: none; }
.da-fiche__poster img { width: 100%; aspect-ratio: 2/3; object-fit: cover; border-radius: .8em;
  box-shadow: 0 18px 50px rgba(0,0,0,.65), 0 0 40px var(--da-glow-soft, rgba(0,188,212,.25)); }
.da-fiche__body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.da-fiche__body h4 { color: #fff; font-size: 1.7em; font-weight: 900; letter-spacing: -.01em; }
.da-chips { display: flex; gap: .5em; flex-wrap: wrap; margin: .7em 0 1em; }
.da-chip { font-size: .78em; font-weight: 700; padding: .32em .7em; border-radius: 2em;
  background: rgba(255,255,255,.08); color: #dfe3ea; border: 1px solid rgba(255,255,255,.1); }
.da-chip.hl { background: var(--da-accent, rgba(0,188,212,.22)); color: #fff; border-color: transparent; }
.da-fiche__body p { color: #aeb4bf; font-size: .95em; line-height: 1.55; }
.da-actions { margin-top: auto; display: flex; gap: .8em; padding-top: 1.2em; }
.da-btn { display: inline-flex; align-items: center; gap: .5em; font-weight: 800; font-size: .95em;
  padding: .65em 1.3em; border-radius: .6em; border: 0; cursor: pointer; font-family: inherit; }
.da-btn.play { background: #fff; color: #06121a; }
.da-btn.ghost { background: rgba(255,255,255,.09); color: #fff; border: 1px solid rgba(255,255,255,.14); }
.da-close { position: absolute; top: .9em; right: .9em; width: 2.2em; height: 2.2em; border-radius: 50%;
  background: rgba(0,0,0,.5); color: #fff; border: 1px solid rgba(255,255,255,.16);
  font-size: 1em; cursor: pointer; display: grid; place-items: center; }

/* ---- Scrollytelling: the fiche builds itself as you scroll ---- */
.story__wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
.story__sticky { position: sticky; top: 96px; }
.story__steps { display: flex; flex-direction: column; gap: 38vh; padding: 12vh 0 24vh; }
.story__step { opacity: .28; transition: opacity .4s ease; }
.story__step.on { opacity: 1; }
.story__step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.story__step h3 span { color: var(--accent-3); margin-right: 10px; font-variant-numeric: tabular-nums; }
.story__step p { font-size: .98rem; }
/* the fiche being built */
.sfiche { position: relative; border-radius: 20px; overflow: hidden; padding: 30px;
  display: flex; gap: 26px; border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(120deg, #0d1016 60%, #10131b);
  box-shadow: 0 40px 100px rgba(0,0,0,.6); min-height: 380px;
  transition: box-shadow .6s ease, background .6s ease; }
.sfiche::before { content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease;
  background: radial-gradient(90% 130% at 15% 0%, rgba(226,115,31,.4), transparent 60%); }
.sfiche[data-step="2"]::before, .sfiche[data-step="3"]::before, .sfiche[data-step="4"]::before { opacity: 1; }
.sfiche > * { position: relative; z-index: 1; }
.sf-poster { width: 38%; flex: none; aspect-ratio: 2/3; border-radius: 14px; overflow: hidden;
  background: #171b23; position: relative; }
.sf-poster img { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .6s ease; }
.sfiche[data-step] .sf-poster img { opacity: 0; }
.sfiche[data-step="1"] .sf-poster img, .sfiche[data-step="2"] .sf-poster img,
.sfiche[data-step="3"] .sf-poster img, .sfiche[data-step="4"] .sf-poster img { opacity: 1; }
.sfiche[data-step="3"] .sf-poster, .sfiche[data-step="4"] .sf-poster {
  box-shadow: 0 0 60px rgba(226,115,31,.45); }
.sf-poster { transition: box-shadow .7s ease; }
/* skeleton shimmer before the poster "loads" */
.sf-poster::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.08) 50%, transparent 70%);
  background-size: 220% 100%; animation: shimmer 1.4s linear infinite; transition: opacity .4s ease; }
.sfiche[data-step="1"] .sf-poster::after, .sfiche[data-step="2"] .sf-poster::after,
.sfiche[data-step="3"] .sf-poster::after, .sfiche[data-step="4"] .sf-poster::after { opacity: 0; }
@keyframes shimmer { to { background-position: -120% 0; } }
.sf-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.sf-body h3 { color: #fff; font-size: 1.6rem; font-weight: 900; }
.sf-sub { color: var(--muted); font-size: .88rem; margin-top: 4px; }
.sf-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px;
  opacity: 0; transform: translateY(10px); transition: .5s ease; }
.sf-cast { display: flex; gap: 14px; margin-top: 20px;
  opacity: 0; transform: translateY(10px); transition: .5s ease .1s; }
.sfiche[data-step="3"] .sf-chips, .sfiche[data-step="4"] .sf-chips,
.sfiche[data-step="3"] .sf-cast, .sfiche[data-step="4"] .sf-cast { opacity: 1; transform: none; }
.sf-cast figure { text-align: center; width: 58px; }
.sf-cast .av { width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 6px;
  display: grid; place-items: center; font-weight: 800; color: #fff; font-size: .9rem;
  background: linear-gradient(135deg, #2a3340, #1a212c); border: 1px solid rgba(255,255,255,.12); }
.sf-cast figcaption { font-size: .62rem; color: var(--muted); line-height: 1.25; }
.sf-actions { margin-top: auto; padding-top: 20px; display: flex; align-items: center; gap: 12px;
  opacity: 0; transform: translateY(10px); transition: .5s ease; }
.sfiche[data-step="4"] .sf-actions { opacity: 1; transform: none; }
.sf-btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: .92rem;
  padding: 11px 20px; border-radius: 10px; background: #fff; color: #06121a; }
.sf-resume { flex: 1; min-width: 120px; }
.sf-resume .t { font-size: .72rem; color: var(--muted); margin-bottom: 5px; }
.sf-resume .bar { height: 4px; border-radius: 2px; background: rgba(255,255,255,.14); overflow: hidden; }
.sf-resume .bar i { display: block; height: 100%; width: 0; background: #e2731f; transition: width 1s ease .2s; }
.sfiche[data-step="4"] .sf-resume .bar i { width: 72%; }

/* ---- Gallery: the app in action ---- */
.gal { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.gal figure { margin: 0; border-radius: 16px; overflow: hidden; border: 1px solid var(--border);
  background: var(--surface); cursor: zoom-in; transition: transform .2s ease, border-color .2s ease; }
.gal figure:hover { transform: translateY(-4px); border-color: rgba(0,188,212,.45); }
.gal .shot { aspect-ratio: 16/9.6; overflow: hidden; position: relative; }
.gal figcaption { padding: 12px 16px; font-size: .86rem; color: var(--muted);
  border-top: 1px solid var(--border); }
.gal-note { text-align: center; font-size: .78rem; color: var(--muted); font-style: italic; margin-top: 18px; }
/* mini CSS "screens" reusing demo styles at tile scale */
.gal .demoapp { font-size: clamp(5px, .62vw, 7.5px); border-radius: 0; border: 0; box-shadow: none;
  aspect-ratio: 16/9.6; max-width: none; pointer-events: none; }
/* lightbox */
.lightbox { border: 0; border-radius: 18px; padding: 0; background: #0a0c11; max-width: min(1040px, 94vw);
  width: 94vw; box-shadow: 0 60px 160px rgba(0,0,0,.8); }
.lightbox .shot { aspect-ratio: 16/9.6; position: relative; overflow: hidden; }
.lightbox::backdrop { background: rgba(4,6,9,.82); backdrop-filter: blur(6px); }
.lightbox .demoapp { font-size: clamp(8px, 1.15vw, 13px); border-radius: 0; border: 0; max-width: none;
  pointer-events: none; }
.lightbox .lb-cap { padding: 14px 18px; color: var(--muted); font-size: .9rem; display: flex;
  justify-content: space-between; align-items: center; gap: 14px; }
.lightbox .lb-cap button { background: rgba(255,255,255,.08); border: 1px solid var(--border);
  color: #fff; border-radius: 8px; padding: 8px 14px; cursor: pointer; font-family: inherit; font-weight: 700; }

/* ---- Home pricing band ---- */
.plan--glow { position: relative; overflow: visible; }
.plan--glow::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; z-index: -1;
  background: conic-gradient(from var(--ang,0deg), rgba(0,188,212,.0) 0%, rgba(0,188,212,.75) 18%, rgba(94,53,177,.55) 38%, rgba(0,188,212,0) 55%);
  animation: spin 5s linear infinite; filter: blur(10px); opacity: .8; }
@property --ang { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes spin { to { --ang: 360deg; } }
.badge-life { display: inline-block; font-size: .7rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: #04181c; padding: 4px 10px; border-radius: 100px;
  background: linear-gradient(100deg, #ffd166, #ff9e42); margin-left: 8px; }

/* ---- Smart download detection ---- */
.dl-you { position: relative; border-color: var(--accent) !important; box-shadow: var(--glow); }
.dl-you__pill { position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  white-space: nowrap; font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  background: linear-gradient(100deg, var(--accent), var(--accent-2)); color: #04181c;
  padding: 5px 12px; border-radius: 100px; }

/* ---- What's-new timeline ---- */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 10px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(0,188,212,.06)); }
.tl-item { position: relative; padding: 0 0 42px; }
.tl-item::before { content: ""; position: absolute; left: -30px; top: 6px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--bg); border: 3px solid var(--accent);
  box-shadow: 0 0 14px rgba(0,188,212,.55); }
.tl-item .when { font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-3); }
.tl-item h3 { margin: 6px 0 8px; font-size: 1.25rem; }
.tl-item p { font-size: .97rem; }
.tl-item .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.tl-item .tags span { font-size: .74rem; font-weight: 700; color: #dfe3ea; padding: 4px 10px;
  border-radius: 100px; background: rgba(255,255,255,.05); border: 1px solid var(--border); }

/* ---- Responsive for the new sections ---- */
@media (max-width: 940px) {
  .wall { inset: -30% -40%; gap: 12px; }
  .wall__col { max-width: 130px; gap: 12px; }
  .hero--wall .scrim::before { background: linear-gradient(180deg, rgba(11,11,13,.9), rgba(11,11,13,.72)); }
  .story__wrap { grid-template-columns: 1fr; }
  .story__sticky { top: 76px; z-index: 3; }
  .sfiche { min-height: 0; padding: 18px; gap: 16px; }
  .sf-poster { width: 30%; }
  .sf-body h3 { font-size: 1.15rem; }
  .story__steps { gap: 30vh; }
  .gal { grid-template-columns: 1fr; }
  .stats { gap: 26px; }
}

/* ---- Reduced motion: static but complete ---- */
@media (prefers-reduced-motion: reduce) {
  .wall__col, .aurora i, .da-hero img, .plan--glow::before { animation: none !important; }
  .hero__copy > * { animation: none; opacity: 1; transform: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .sf-poster::after { animation: none; opacity: 0; }
  @view-transition { navigation: none; }
}

