/* ════════════════════════════════════════════════════════════════════
   Das KI-Makeover — cinematic landing page
   Brand: Social Media A-Team (green identity, orange action,
   Playfair Display + Open Sans). Dark film section, white editorial sell.
   ════════════════════════════════════════════════════════════════════ */

/* ── Fonts (local, airplane-mode-safe) ─────────────────────────────── */
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/playfair-var.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/playfair-italic-var.woff2") format("woff2");
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/open-sans-var.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

/* ── Tokens (from brand-design-pack/socialmedia-a-team) ────────────── */
:root {
  --bg:            #ffffff;
  --surface:       #f7f7f5;
  --surface-2:     #f0f0ee;
  --border:        #e6e6e6;
  --bg-dark:       #101010;
  --bg-dark-2:     #1b1b1b;
  --fg:            #1a1a1a;
  --muted:         #5a5a5a;
  --meta:          #8a8a8a;
  --on-dark:       #f6f6f4;
  --on-dark-mute:  #c4c4c0;
  --primary:       #2ea043;
  --primary-2:     #57c96c;   /* green lifted for dark surfaces */
  --primary-tint:  #e8f5ec;
  --accent:        #f97316;
  --accent-hover:  #ea6a0e;
  --danger:        #e5484d;
  --font-display:  "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:     "Open Sans", "Helvetica Neue", Arial, sans-serif;
  --tracking-label: 0.12em;
  --radius:        10px;
  --radius-lg:     16px;
  --radius-pill:   999px;
  --shadow-lg:     0 12px 32px -8px rgba(0,0,0,.18);
  --shadow-cta:    0 8px 24px -6px rgba(249,115,22,.40);
  --wrap:          1120px;
  --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset-ish ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--fg);
  background: var(--bg-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

::selection { background: var(--primary); color: #fff; }

/* ── Type helpers ──────────────────────────────────────────────────── */
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-label);
  color: var(--primary);
  margin-bottom: 18px;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.h2 em.green, em.green { font-style: italic; color: var(--primary); }
.section-dark .h2 em.green { color: var(--primary-2); }
.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 40px;
}
.section-dark .lead { color: var(--on-dark-mute); }

/* ── Buttons ───────────────────────────────────────────────────────── */
.btn-accent {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 15px 34px;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  transition: background 150ms ease, transform 100ms ease;
}
.btn-accent:hover { background: var(--accent-hover); }
.btn-accent:active { transform: translateY(2px); }
.btn-accent:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }

/* ── Preloader ─────────────────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 60;
  background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 500ms ease;
}
.loader.done { opacity: 0; pointer-events: none; }
.loader-inner { text-align: center; color: var(--on-dark); }
.loader-eyebrow {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--tracking-label); color: var(--primary-2);
  margin-bottom: 14px;
}
.loader-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 28px; letter-spacing: -0.01em; margin-bottom: 26px;
}
.loader-dots span { animation: dotblink 1.4s infinite; }
.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotblink { 0%, 60%, 100% { opacity: 0.2; } 30% { opacity: 1; } }
.loader-bar {
  width: 220px; height: 2px; margin: 0 auto;
  background: rgba(255,255,255,0.12); border-radius: 2px; overflow: hidden;
}
.loader-fill { width: 0%; height: 100%; background: var(--primary); transition: width 200ms ease; }

/* ── Topbar ────────────────────────────────────────────────────────── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 48px);
  color: var(--on-dark);
  background: linear-gradient(rgba(16,16,16,0.55), transparent);
  transition: background 300ms ease, backdrop-filter 300ms ease;
}
.topbar.solid {
  background: rgba(16,16,16,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.topbar-brand { display: flex; flex-direction: column; gap: 2px; }
.topbar-brand .brand-name {
  font-family: var(--font-display); font-weight: 700; font-size: 19px;
  letter-spacing: 0.01em; color: var(--on-dark); line-height: 1;
  text-decoration: none;
}
.topbar-brand .brand-sub {
  font-size: 9.5px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--on-dark-mute);
  text-decoration: none; transition: color 150ms ease;
}
.topbar-brand .brand-sub:hover { color: var(--primary-2); text-decoration: underline; }
.topbar-nav { display: flex; align-items: center; gap: 28px; }
.topbar-nav a {
  font-size: 13px; font-weight: 600; text-decoration: none;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--on-dark-mute);
  transition: color 150ms ease;
}
.topbar-nav a:hover { color: var(--on-dark); }
.topbar-nav .topbar-cta {
  color: #fff; background: var(--accent);
  padding: 9px 20px; border-radius: var(--radius-pill);
}
.topbar-nav .topbar-cta:hover { background: var(--accent-hover); }

/* ── Film stage ────────────────────────────────────────────────────── */
.film { height: 680vh; position: relative; background: var(--bg-dark); }
.stage { position: sticky; top: 0; height: 100vh; overflow: hidden; }
#filmCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.stage-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 52%, rgba(0,0,0,0.42) 100%),
    linear-gradient(rgba(0,0,0,0.30), transparent 22%, transparent 72%, rgba(0,0,0,0.42));
}
.stage-grain {
  position: absolute; inset: -60px; pointer-events: none; opacity: 0.05;
  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='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  animation: grain 900ms steps(4) infinite;
}
@keyframes grain {
  0% { transform: translate(0,0); } 25% { transform: translate(-18px,10px); }
  50% { transform: translate(12px,-14px); } 75% { transform: translate(-10px,-8px); }
  100% { transform: translate(14px,12px); }
}

/* ── HUD ───────────────────────────────────────────────────────────── */
.hud {
  position: absolute; top: 84px; right: clamp(20px, 4vw, 48px);
  z-index: 6; color: var(--on-dark);
  display: flex; flex-direction: column; gap: 14px; align-items: flex-end;
  opacity: 0; transform: translateY(-8px);
  transition: opacity 400ms ease, transform 400ms ease;
  font-variant-numeric: tabular-nums;
}
.hud.on { opacity: 1; transform: translateY(0); }
.hud-label {
  display: block; font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--tracking-label);
  color: var(--on-dark-mute); margin-bottom: 6px; text-align: right;
}
.hud-days ol { display: flex; gap: 6px; list-style: none; }
.hud-days li {
  width: 30px; height: 30px; display: grid; place-items: center;
  font-size: 12px; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.18); border-radius: 50%;
  color: var(--on-dark-mute);
  transition: all 300ms ease;
}
.hud-days li.active {
  background: var(--primary); border-color: var(--primary);
  color: #fff; transform: scale(1.12);
}
.hud-days li.passed { border-color: var(--primary); color: var(--primary-2); }
.hud-grade { text-align: right; }
.hud-grade-row { display: flex; align-items: center; gap: 10px; justify-content: flex-end; }
.hud-grade strong {
  font-family: var(--font-display); font-size: 21px; font-weight: 700;
  letter-spacing: 0;
}
.hud-meter {
  width: 110px; height: 3px; background: rgba(255,255,255,0.16);
  border-radius: 2px; overflow: hidden;
}
#hudMeterFill { width: 0%; height: 100%; background: var(--primary); }
.hud-chips { display: flex; gap: 6px; margin-top: 10px; justify-content: flex-end; flex-wrap: wrap; }
.hud-chip {
  font-size: 10px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-pill);
  border: 1px solid var(--primary); color: var(--primary-2);
  opacity: 0; transform: translateY(6px);
  transition: opacity 350ms ease, transform 350ms ease;
}
.hud-chip.on { opacity: 1; transform: translateY(0); }

/* ── Hero overlay ──────────────────────────────────────────────────── */
.hero {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--on-dark);
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--tracking-label); color: var(--primary-2);
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(52px, 9.5vw, 128px);
  line-height: 1.02; letter-spacing: -0.03em;
  margin-bottom: 26px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.45);
}
.hero-title .line { display: block; }
.hero-title .line.accent { font-style: italic; color: var(--primary-2); }
.hero-title .w {
  display: inline-block;
  animation: word-rise 900ms var(--ease-out) both;
}
.hero-title .line:nth-child(1) .w:nth-child(1) { animation-delay: 150ms; }
.hero-title .line:nth-child(1) .w:nth-child(2) { animation-delay: 260ms; }
.hero-title .line:nth-child(2) .w:nth-child(1) { animation-delay: 480ms; }
.hero-title .line:nth-child(2) .w:nth-child(2) { animation-delay: 590ms; }
.hero-title .line:nth-child(2) .w:nth-child(3) { animation-delay: 700ms; }
@keyframes word-rise {
  from { opacity: 0; transform: translateY(60%) skewY(4deg); filter: blur(2px); }
  to   { opacity: 1; transform: translateY(0) skewY(0); filter: blur(0); }
}
.hero-sub {
  font-size: 17px; line-height: 1.65; color: var(--on-dark-mute);
  max-width: 58ch; margin-bottom: 34px;
  text-shadow: 0 1px 18px rgba(0,0,0,0.65);
  animation: fadeup 900ms var(--ease-out) 950ms both;
}
/* Settle guard: after the intro played, pin every animated hero element to
   its final state (headless renderers and paused-animation browsers). */
.hero.settled .w, .hero.settled .hero-sub, .hero.settled .hero-cta,
.hero.settled .hero-scrollcue {
  animation: none; opacity: 1; transform: none; filter: none;
}
.hero.settled .hero-scrollcue { transform: translateX(-50%); }
.hero-cta { animation: fadeup 900ms var(--ease-out) 1150ms both; }
@keyframes fadeup {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-scrollcue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: var(--tracking-label);
  text-transform: uppercase; color: var(--on-dark-mute);
  animation: fadeup 900ms var(--ease-out) 1600ms both;
}
.hero-scrollcue i {
  width: 1px; height: 44px; background: rgba(255,255,255,0.28);
  position: relative; overflow: hidden;
}
.hero-scrollcue i::after {
  content: ""; position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%; background: var(--primary-2);
  animation: cuedrop 1.8s ease-in-out infinite;
}
@keyframes cuedrop { 0% { top: -50%; } 70%, 100% { top: 110%; } }

/* ── Day cards ─────────────────────────────────────────────────────── */
.daycard {
  position: absolute; z-index: 5;
  max-width: 400px;
  color: var(--on-dark);
  background: rgba(14,14,14,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  opacity: 0; visibility: hidden; transform: translateY(26px);
  will-change: opacity, transform;
}
.daycard.pos-l { left: clamp(20px, 6vw, 90px); bottom: 12vh; }
.daycard.pos-r { right: clamp(20px, 6vw, 90px); bottom: 12vh; }
.daycard.pos-c { left: 50%; bottom: 14vh; transform: translate(-50%, 26px); }
.dc-eyebrow {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--tracking-label); color: var(--primary-2);
  margin-bottom: 10px;
}
.daycard h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px); line-height: 1.12;
  letter-spacing: -0.01em; margin-bottom: 10px;
}
.daycard p { font-size: 15px; line-height: 1.6; color: var(--on-dark-mute); margin-bottom: 16px; }
.dc-pill {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--primary-2); border: 1px solid rgba(46,160,67,0.55);
  padding: 6px 12px; border-radius: var(--radius-pill);
}

/* ── Sections shared ───────────────────────────────────────────────── */
.section { padding: clamp(80px, 10vw, 140px) 0; }
.section-light { background: var(--bg); color: var(--fg); }
.section-light + .section-light { padding-top: 0; }
.section-dark { background: var(--bg-dark); color: var(--on-dark); }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.wrap-narrow { max-width: 880px; }
.finenote { font-size: 13px; letter-spacing: 0.01em; color: var(--meta); margin-top: 14px; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── Before/After slider ───────────────────────────────────────────── */
.ba {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16 / 9; box-shadow: var(--shadow-lg);
  cursor: ew-resize; user-select: none; touch-action: pan-y;
  background: var(--surface-2);
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after { clip-path: inset(0 0 0 var(--split, 50%)); }
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: var(--split, 50%);
  width: 2px; background: #fff; transform: translateX(-1px);
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}
.ba-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow-lg);
}
.ba-handle::before, .ba-handle::after {
  content: ""; position: absolute; top: 50%; width: 0; height: 0;
  border-style: solid; transform: translateY(-50%);
}
.ba-handle::before { left: 9px; border-width: 5px 7px 5px 0; border-color: transparent var(--fg) transparent transparent; }
.ba-handle::after { right: 9px; border-width: 5px 0 5px 7px; border-color: transparent transparent transparent var(--fg); }
.ba-tag {
  position: absolute; bottom: 16px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; background: rgba(0,0,0,0.55);
  padding: 7px 14px; border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}
.ba-tag-l { left: 16px; }
.ba-tag-r { right: 16px; }

/* ── Ehrlichkeit ───────────────────────────────────────────────────── */
.cols2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.movecard {
  background: var(--bg-dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 34px 34px 28px;
}
.movecard h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 24px;
  letter-spacing: -0.01em; margin-bottom: 18px; color: var(--primary-2);
}
.movecard.is-static h3 { color: var(--on-dark-mute); }
.movecard ul { list-style: none; }
.movecard li { padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.07); font-size: 15px; line-height: 1.6; color: var(--on-dark-mute); }
.movecard li strong { color: var(--on-dark); font-weight: 600; }

/* ── Lieferumfang grid ─────────────────────────────────────────────── */
.grid5 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px; margin-top: 14px;
}
.dcard {
  grid-column: span 2;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
}
.dcard:nth-child(4) { grid-column: 2 / span 2; }
.dcard:nth-child(5) { grid-column: 4 / span 2; }
.dcard-num {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 15px; color: var(--primary); display: block; margin-bottom: 14px;
}
.dcard h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 8px; }
.dcard p { font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* ── Preis ─────────────────────────────────────────────────────────── */
.section-price { background: var(--surface); }
.price {
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 24px;
  margin-top: 10px;
}
.price-main {
  background: var(--bg-dark); color: var(--on-dark);
  border-radius: var(--radius-lg); padding: 44px 42px;
  display: flex; flex-direction: column;
}
.price-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--tracking-label); color: var(--primary-2);
  margin-bottom: 16px;
}
.price-value {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(44px, 5vw, 64px); letter-spacing: -0.02em;
  line-height: 1; margin-bottom: 18px;
}
.price-main p { font-size: 15px; line-height: 1.65; color: var(--on-dark-mute); }
.price-side { display: flex; flex-direction: column; gap: 24px; }
.price-row {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 28px; flex: 1;
}
.price-row strong { font-family: var(--font-display); font-size: 20px; font-weight: 700; display: block; letter-spacing: -0.01em; }
.price-row span { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: var(--primary); display: block; margin: 4px 0 10px; }
.price-row p { font-size: 14px; line-height: 1.6; color: var(--muted); }
.slots {
  display: flex; align-items: center; gap: 12px;
  margin-top: 34px; font-size: 15px; font-weight: 600; letter-spacing: 0.01em;
}
.slots-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--primary);
  box-shadow: 0 0 0 0 rgba(46,160,67,0.5);
  animation: slotpulse 2.2s ease-out infinite;
}
@keyframes slotpulse {
  0% { box-shadow: 0 0 0 0 rgba(46,160,67,0.45); }
  70%, 100% { box-shadow: 0 0 0 10px rgba(46,160,67,0); }
}

/* ── Spielregeln ───────────────────────────────────────────────────── */
.rules { list-style: none; counter-reset: rule; margin-top: 10px; }
.rules li {
  counter-increment: rule;
  position: relative;
  padding: 26px 0 26px 72px;
  border-top: 1px solid var(--border);
  font-size: 16px; line-height: 1.65; color: var(--muted);
  max-width: 72ch;
}
.rules li:last-child { border-bottom: 1px solid var(--border); }
.rules li strong { color: var(--fg); font-weight: 600; display: block; margin-bottom: 2px; }
.rules li::before {
  content: counter(rule, decimal-leading-zero);
  position: absolute; left: 0; top: 24px;
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 22px; color: var(--primary);
}

/* ── Bewerbung ─────────────────────────────────────────────────────── */
.section-apply { position: relative; }
.apply { max-width: 640px; }
.f-row { margin-bottom: 20px; display: flex; flex-direction: column; }
.f-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.apply label {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--on-dark-mute); margin-bottom: 8px;
}
.apply input, .apply select, .apply textarea {
  font-family: var(--font-body); font-size: 16px;
  color: var(--on-dark);
  background: var(--bg-dark-2);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 13px 16px;
  transition: border-color 150ms ease;
}
.apply input::placeholder, .apply textarea::placeholder { color: rgba(255,255,255,0.30); }
.apply input:focus, .apply select:focus, .apply textarea:focus {
  outline: none; border-color: var(--primary);
}
.apply input.err, .apply select.err, .apply textarea.err { border-color: var(--danger); }
.apply select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c4c4c0' stroke-width='1.6' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.f-hp { position: absolute; left: -9999px; top: -9999px; }
.apply .btn-accent { margin-top: 6px; }
.f-note { font-size: 13px; letter-spacing: 0.01em; color: var(--on-dark-mute); margin-top: 18px; max-width: 52ch; }
.f-err { color: var(--danger); }
.apply-done {
  max-width: 640px; text-align: left;
  border: 1px solid var(--primary); border-radius: var(--radius-lg);
  padding: 40px 38px;
}
.apply-done h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 30px;
  letter-spacing: -0.01em; color: var(--primary-2); margin-bottom: 10px;
}
.apply-done p { color: var(--on-dark-mute); font-size: 16px; }

/* ── Footer ────────────────────────────────────────────────────────── */
.footer { background: var(--bg-dark); color: var(--on-dark-mute); padding: 44px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer p { font-size: 13.5px; letter-spacing: 0.01em; }
.footer nav { display: flex; gap: 22px; }
.footer a { font-size: 13.5px; letter-spacing: 0.01em; color: var(--on-dark-mute); text-decoration: none; }
.footer a:hover { color: var(--on-dark); }

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .topbar-nav a:not(.topbar-cta) { display: none; }
  .cols2 { grid-template-columns: 1fr; }
  .grid5 { grid-template-columns: 1fr 1fr; }
  .dcard, .dcard:nth-child(4), .dcard:nth-child(5) { grid-column: auto; }
  .dcard:nth-child(5) { grid-column: span 2; }
  .price { grid-template-columns: 1fr; }
  .hud { top: 76px; }
  .hud-chips { display: none; }
  .daycard.pos-l, .daycard.pos-r, .daycard.pos-c {
    left: 16px; right: 16px; bottom: 9vh; max-width: none; transform: translateY(26px);
  }
  .f-cols { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 560px) {
  .hud-days { display: none; }
  .hero-sub br { display: none; }
  .grid5 { grid-template-columns: 1fr; }
  .dcard:nth-child(5) { grid-column: auto; }
  .rules li { padding-left: 52px; }
}

/* ── Reduced motion ────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-title .w, .hero-sub, .hero-cta, .hero-scrollcue { animation: none; }
  .stage-grain { animation: none; }
  .slots-dot { animation: none; }
  .hero-scrollcue i::after { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .daycard { transition: opacity 300ms ease; }
}
