/* ============================================================
   smuve.media — Modern / Bold Geometric
   Type: Poppins (display, matches logo) · Inter (body)
   Brand: cream #F1EEE7 · ink #121E24 · warm accent
   ============================================================ */

:root {
  --paper:      #F1EEE7;
  --paper-2:    #EAE5DA;
  --paper-3:    #E2DCCE;
  --ink:        #121E24;
  --ink-2:      #0E1118;   /* = inverted brand cream, so the inverted logo blends seamlessly */
  --ink-soft:   rgba(18, 30, 36, 0.64);
  --ink-faint:  rgba(18, 30, 36, 0.42);
  --line:       rgba(18, 30, 36, 0.12);
  --line-2:     rgba(18, 30, 36, 0.20);
  --on-ink:     #F1EEE7;
  --on-ink-soft:rgba(241, 238, 231, 0.62);
  --on-ink-line:rgba(241, 238, 231, 0.16);
  --accent:     #D4572A;   /* warm, modern */
  --accent-2:   #E9743F;

  --font-head: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1200px;
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --section-y: clamp(4.5rem, 10vw, 9rem);
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; }
::selection { background: var(--ink); color: var(--paper); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--ink); color: var(--paper); padding: 0.6rem 1rem; border-radius: var(--radius-sm); }
.skip-link:focus { left: 1rem; top: 1rem; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* scroll progress */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-2)); z-index: 300; transition: width 0.1s linear; }

/* ---------- Type primitives ---------- */
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.08; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.3rem); font-weight: 800; }
.accent, .hl-dot { color: var(--accent); }

.dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.85rem 0.4rem 0.7rem;
  border: 1px solid var(--line-2); border-radius: 100px;
}
.eyebrow--light { color: var(--on-ink-soft); border-color: var(--on-ink-line); }

.lede { font-size: clamp(1.08rem, 1.5vw, 1.28rem); line-height: 1.55; color: var(--ink-soft); max-width: 46ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.7rem; font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  border-radius: 100px; border: 1.5px solid var(--ink);
  transition: transform 0.35s var(--ease), background 0.25s, color 0.25s, box-shadow 0.35s var(--ease), border-color 0.25s;
}
.btn-arrow { transition: transform 0.3s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover { transform: translateY(-3px); box-shadow: 0 14px 34px -12px rgba(18,30,36,0.5); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-3px); }
.btn--sm { padding: 0.62rem 1.15rem; font-size: 0.86rem; }
.btn--full { width: 100%; }
.btn--light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--light:hover { transform: translateY(-3px); box-shadow: 0 16px 38px -14px rgba(0,0,0,0.5); }
.btn--ghost-light { background: rgba(241,238,231,0.04); color: var(--on-ink); border-color: rgba(241,238,231,0.5); backdrop-filter: blur(6px); }
.btn--ghost-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); transform: translateY(-3px); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; transition: background 0.3s, box-shadow 0.3s, border-color 0.3s; border-bottom: 1px solid transparent; }
.site-header.scrolled { background: color-mix(in srgb, var(--paper) 82%, transparent); backdrop-filter: saturate(150%) blur(14px); border-bottom-color: var(--line); }
/* transparent over the dark video hero → light content */
.site-header:not(.scrolled) .brand img { filter: invert(1); }
.site-header:not(.scrolled) .nav a { color: rgba(241,238,231,0.82); }
.site-header:not(.scrolled) .nav a:hover { color: #fff; }
.site-header:not(.scrolled) .nav a::after { background: var(--paper); }
.site-header:not(.scrolled) .header-inner > .btn--solid { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.site-header:not(.scrolled) .nav-toggle { border-color: rgba(241,238,231,0.4); }
.site-header:not(.scrolled) .nav-toggle span { background: var(--paper); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 76px; }
.brand { margin-right: auto; display: flex; align-items: center; }
.brand img { height: 34px; width: auto; transition: filter 0.3s; }
.nav { display: flex; gap: 2rem; }
.nav a { font-size: 0.94rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: 0.2rem 0; transition: color 0.2s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 2px; background: var(--accent); border-radius: 2px; transition: width 0.3s var(--ease); }
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line-2); border-radius: 12px; background: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; gap: 0.2rem; padding: 1rem var(--gutter) 1.75rem; background: var(--paper); border-bottom: 1px solid var(--line); }
.mobile-nav a { padding: 0.85rem 0; font-size: 1.08rem; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-nav .btn { margin-top: 1rem; border-bottom: none; }

/* ---------- Hero (video background) ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; color: var(--on-ink); }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: #0E1118 url(../assets/hero-poster.jpg) center/cover no-repeat; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,17,24,0.74) 0%, rgba(14,17,24,0.48) 30%, rgba(14,17,24,0.58) 56%, rgba(14,17,24,0.88) 100%); }
.hero-scrim::after { content: ""; position: absolute; inset: 0;
  background: radial-gradient(130% 100% at 50% 46%, transparent 34%, rgba(14,17,24,0.66) 100%); }
/* filmic grain — makes the "smuve · cinema" concept tangible */
.hero-grain { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.10; 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.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px; animation: grain 0.6s steps(2) infinite; }
@keyframes grain { 0%{transform:translate(0,0)} 50%{transform:translate(-6px,4px)} 100%{transform:translate(4px,-3px)} }
@media (prefers-reduced-motion: reduce) { .hero-grain { animation: none; } }
/* subtle cinema letterbox to echo the 2.39:1 marker */
.hero-bar { position: absolute; left: 0; right: 0; height: 46px; z-index: 1; pointer-events: none; background: #0B0E14; }
.hero-bar--top { top: 0; }
.hero-bar--bottom { bottom: 0; }
.hero-marker { position: absolute; z-index: 1; font-family: var(--font-body); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(241,238,231,0.66); display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-marker--tl { top: 6.5rem; left: clamp(1.25rem, 5vw, 4.5rem); }
.hero-marker--tr { top: 6.5rem; right: clamp(1.25rem, 5vw, 4.5rem); }
.hero-marker--bl { bottom: 1.7rem; left: clamp(1.25rem, 5vw, 4.5rem); }
.hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: clamp(2rem, 4vw, 2.6rem); max-width: 960px; margin-inline: auto; padding-block: clamp(7rem, 14vw, 9rem); }
.hero-copy { display: flex; flex-direction: column; align-items: center; }
.hero .eyebrow { color: rgba(241,238,231,0.78); border-color: var(--on-ink-line); background: rgba(241,238,231,0.06); backdrop-filter: blur(6px); }
.hero .lede { color: rgba(241,238,231,0.9); max-width: 48ch; text-shadow: 0 1px 20px rgba(0,0,0,0.4); }

.hero-title { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.9rem, 7.5vw, 5.7rem); line-height: 1.02; letter-spacing: -0.04em; margin-bottom: 1.7rem; color: var(--on-ink); text-shadow: 0 2px 40px rgba(0,0,0,0.28); }
.hero-title .line { display: block; }
.hero-title .w { display: inline-block; }
.hero-title .em { color: var(--on-ink); font-style: italic; }
.hero-title .hl-dot { color: var(--accent); }
/* split reveal */
.hero-title .w { opacity: 0; transform: translateY(28px); }
.hero.play .hero-title .w { animation: rise 0.7s var(--ease) forwards; }
.hero.play .hero-title .w { animation-delay: calc(var(--i, 0) * 70ms); }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hero-title .w { opacity: 1; transform: none; } }

.hero-copy .lede { margin: 0 auto 2.3rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

.rec-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; flex: none; }
@keyframes pulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212,87,42,0.5); } 50% { opacity: 0.4; box-shadow: 0 0 0 6px rgba(212,87,42,0); } }

.scroll-cue { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(241,238,231,0.45); border-radius: 20px; z-index: 1; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 3px; background: var(--on-ink); transform: translateX(-50%); animation: cue 1.8s infinite; }
@keyframes cue { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } 100% { opacity: 0; } }

/* ---------- Section base ---------- */
.section { padding-block: var(--section-y); }
.section-head { max-width: 700px; margin: 0 auto clamp(2.8rem, 5vw, 4.2rem); text-align: center; }
.section-head h2 { margin-inline: auto; }
.section-sub { margin: 1.1rem auto 0; color: var(--ink-soft); font-size: 1.05rem; max-width: 54ch; }

/* ---------- Thesis ---------- */
.thesis-grid { display: block; max-width: 800px; margin-inline: auto; text-align: center; }
.thesis-grid .eyebrow { margin-bottom: 1.6rem; }
.thesis-body h2 { margin: 0 auto 1.8rem; max-width: 24ch; }
.thesis-body p { color: var(--ink-soft); max-width: 62ch; margin: 0 auto 1.1rem; }
.thesis-body p:last-child { margin-bottom: 0; }

/* ---------- Services ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.tier {
  position: relative; display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 2.4vw, 2.2rem); background: var(--paper-2);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s, background 0.3s;
  overflow: hidden;
}
.tier > * { position: relative; z-index: 1; }
.tier::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width 0.5s var(--ease); z-index: 2; }
.tier::after { content: ""; position: absolute; inset: 0; z-index: 0; border-radius: inherit; opacity: 0; transition: opacity 0.4s var(--ease); pointer-events: none;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(212,87,42,0.16), transparent 62%); }
.tier:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(18,30,36,0.4); border-color: var(--line-2); }
.tier:hover::before { width: 100%; }
.tier:hover::after { opacity: 1; }
.tier-icon { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: rgba(212,87,42,0.10); color: var(--accent); margin-bottom: 1rem; transition: transform 0.4s var(--ease), background 0.4s var(--ease); }
.tier-icon svg { width: 25px; height: 25px; }
.tier:hover .tier-icon { transform: translateY(-2px) scale(1.06); background: rgba(212,87,42,0.16); }
.tier--featured .tier-icon { background: rgba(233,116,63,0.20); color: var(--accent-2); }
.tier-idx { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--accent); letter-spacing: 0.05em; }
.tier h3 { font-size: 1.6rem; font-weight: 700; margin: 0.5rem 0 0.5rem; }
.tier-for { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.tier-desc { font-size: 0.94rem; line-height: 1.55; color: var(--ink-soft); margin-bottom: 1.4rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.tier--featured { background: var(--ink); color: var(--on-ink); border-color: var(--ink); }
.tier--featured .tier-for { color: var(--on-ink-soft); }
.tier--featured .tier-desc { color: var(--on-ink-soft); border-color: var(--on-ink-line); }
.tier--featured::after { background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(233,116,63,0.24), transparent 62%); }
.tier-badge { position: absolute; top: 1.4rem; right: 1.4rem; background: var(--accent); color: #fff; font-family: var(--font-head); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.35rem 0.7rem; border-radius: 100px; }
.feat-prev { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 0.9rem; }
.tier--featured .feat-prev { color: var(--on-ink-soft); }
.feat { list-style: none; padding: 0; display: grid; gap: 0.7rem; margin-bottom: 1.6rem; }
.feat li { position: relative; padding-left: 1.6rem; font-size: 0.93rem; line-height: 1.45; }
.feat li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.tier-goal { font-family: var(--font-head); font-weight: 500; font-size: 1.02rem; line-height: 1.4; margin-bottom: 1.5rem; }
.tier-cta { margin-top: auto; display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: var(--ink); width: fit-content; }
.tier-cta .btn-arrow { transition: transform 0.3s var(--ease); }
.tier-cta:hover .btn-arrow { transform: translateX(5px); }
.tier--featured .tier-cta { color: var(--on-ink); }
.services-foot { text-align: center; margin-top: 2.8rem; font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Bedarfsanalyse / Quiz ---------- */
.quiz { max-width: 720px; margin: clamp(3rem, 6vw, 5rem) auto 0; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--paper-2), var(--paper)); padding: clamp(2rem, 4vw, 3.2rem); position: relative; overflow: hidden; }
.quiz::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.quiz-intro { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.9rem; }
.quiz-intro[hidden] { display: none; }
.quiz-kicker { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.quiz-kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.quiz-h { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.5rem, 3.4vw, 2.05rem); line-height: 1.15; }
.quiz-sub { color: var(--ink-soft); max-width: 52ch; margin: 0 auto; font-size: 0.98rem; }
.quiz-intro .btn { margin-top: 0.6rem; }

/* stage + light slide transitions per question */
.quiz-stage { position: relative; }
@keyframes qfade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.q-slide { animation: qIn 0.44s var(--ease) both; }
.q-slide.back { animation: qBack 0.44s var(--ease) both; }
@keyframes qIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: none; } }
@keyframes qBack { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .q-slide, .q-slide.back { animation: qfade 0.3s var(--ease) both; } }
.q-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; }
.q-count { font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.06em; color: var(--ink-soft); }
.q-bar { flex: 1; height: 5px; border-radius: 100px; background: var(--paper-3); overflow: hidden; }
.q-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 100px; transition: width 0.5s var(--ease); }
.q-question { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.25rem, 2.6vw, 1.6rem); line-height: 1.25; margin-bottom: 1.3rem; }
.q-options { display: grid; gap: 0.7rem; }
.q-opt { text-align: left; width: 100%; display: flex; align-items: center; gap: 0.9rem; padding: 1rem 1.15rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper); color: var(--ink); font-family: var(--font-body); font-size: 1rem; line-height: 1.35; cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease); }
.q-opt:hover { border-color: var(--accent); transform: translateX(3px); }
.q-opt .q-mark { flex: none; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line-2); transition: border-color 0.25s, background 0.25s; }
.q-opt:hover .q-mark { border-color: var(--accent); }
.q-opt--own { border-style: dashed; color: var(--ink-soft); }
/* own free-text */
.q-own { margin-top: 0.9rem; display: none; }
.q-own.show { display: block; animation: qfade 0.3s var(--ease); }
.q-own textarea { width: 100%; min-height: 92px; resize: vertical; border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 0.85rem 1rem;
  font-family: var(--font-body); font-size: 0.98rem; color: var(--ink); background: var(--paper); }
.q-own textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.q-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 1.4rem; gap: 0.8rem; }
.q-back { background: none; border: none; color: var(--ink-soft); font-family: var(--font-body); font-size: 0.9rem; cursor: pointer; display: inline-flex; align-items: center; gap: 0.4rem; }
.q-back:hover { color: var(--ink); }
.q-back[hidden] { visibility: hidden; }

/* result */
.quiz-result { text-align: center; animation: qfade 0.45s var(--ease); }
.quiz-result .rec-eyebrow { font-family: var(--font-body); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.7rem; }
.quiz-result h4 { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.5rem, 3.4vw, 2.1rem); line-height: 1.18; margin-bottom: 0.4rem; }
.quiz-result .rec-name { color: var(--accent); }
.quiz-result p { color: var(--ink-soft); max-width: 54ch; margin: 0.5rem auto 0; font-size: 1rem; line-height: 1.6; }
.rec-hint { margin-top: 1.1rem !important; padding: 0.9rem 1.1rem; background: var(--paper-3); border-radius: var(--radius-sm); font-size: 0.92rem !important; color: var(--ink-soft); text-align: left; }
.rec-hint strong { color: var(--ink); font-weight: 600; }
.quiz-result .quiz-cta { display: inline-flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 1.6rem; }
.quiz-result--misfit .rec-eyebrow { color: var(--ink-soft); }

@media (max-width: 560px) { .quiz-result .quiz-cta { width: 100%; } .quiz-result .quiz-cta .btn { width: 100%; } }

/* ---------- Process timeline ---------- */
.timeline { position: relative; margin-top: 1rem; }
.tl-track { position: absolute; top: 31px; left: 12.5%; right: 12.5%; height: 2px; background: var(--line-2); z-index: 0; }
.tl-track span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width 1.6s var(--ease); }
.timeline.in .tl-track span { width: 100%; }
.tl-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; z-index: 1; }
.tl-step { display: flex; flex-direction: column; align-items: center; text-align: center; transition: transform 0.4s var(--ease); }
.tl-step:hover { transform: translateY(-5px); }
.tl-node { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--paper); border: 2px solid var(--line-2); color: var(--ink-faint); margin-bottom: 1.1rem;
  transform: scale(0.82); transition: transform 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease), color 0.5s var(--ease), box-shadow 0.4s var(--ease); }
.timeline.in .tl-step:hover .tl-node { box-shadow: 0 0 0 6px rgba(212,87,42,0.12), 0 14px 28px -10px rgba(212,87,42,0.55); }
.tl-node svg { width: 26px; height: 26px; }
/* all nodes activate together (parallel, not staggered) */
.timeline.in .tl-node { transform: scale(1); border-color: var(--accent); background: var(--accent); color: #fff; }
.tl-no { font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; color: var(--accent); letter-spacing: 0.06em; }
.tl-content h3 { font-size: 1.4rem; font-weight: 700; margin: 0.2rem 0 0.5rem; }
.tl-content p { font-size: 0.93rem; color: var(--ink-soft); max-width: 24ch; margin-inline: auto; }

/* ---------- About (dark) ---------- */
.about { background: var(--ink-2); color: var(--on-ink); padding-block: clamp(4rem, 8vw, 7rem); }
.about-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about-media { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; padding: clamp(2rem,4vw,3rem); border: 1px solid var(--on-ink-line); border-radius: var(--radius); background: rgba(241,238,231,0.03); }
.about-logo { height: auto; width: min(240px, 70%); filter: invert(1); }
.about-since { font-family: var(--font-head); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--on-ink-soft); }
.about-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); font-weight: 700; font-style: italic; max-width: 24ch; margin-bottom: 1.8rem; }
.about-text { columns: 2; column-gap: 2.6rem; }
.about-text p { color: var(--on-ink-soft); margin-bottom: 1.1rem; break-inside: avoid; font-size: 0.97rem; }

/* ---------- Region / map ---------- */
.region-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.region-map { margin: 0; display: flex; justify-content: center; }
.de-map { width: 100%; max-width: 440px; height: auto; overflow: visible; }
.de-base { fill: var(--ink); opacity: 0.12; }
.de-north { fill: var(--accent); }
.de-pin { fill: var(--accent); }
.de-pin-ring { fill: var(--accent); transform-box: fill-box; transform-origin: center; animation: pinpulse 2.6s ease-out infinite; }
@keyframes pinpulse { 0% { transform: scale(0.5); opacity: 0.6; } 80%, 100% { transform: scale(2.8); opacity: 0; } }
.region-copy h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); margin-bottom: 1.3rem; }
.region-copy .lede { margin: 0 0 1.1rem; max-width: none; }
.region-text { color: var(--ink-soft); margin-bottom: 1.7rem; max-width: 54ch; }
.region-tags { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.region-tags li { font-size: 0.82rem; font-weight: 500; color: var(--ink-soft); border: 1px solid var(--line-2); border-radius: 100px; padding: 0.42rem 0.95rem; transition: border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease); }

/* ---------- FAQ ---------- */
.faq-grid { display: block; max-width: 800px; margin-inline: auto; }
.faq-head { text-align: center; margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.faq-head h2 { margin-bottom: 1rem; }
.faq-head .section-sub { margin-top: 0; }
.faq-head .btn { margin-top: 1.6rem; }
.qa { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 0.8rem; background: var(--paper-2); transition: border-color 0.25s, background 0.25s; }
.qa[open] { border-color: var(--line-2); }
.qa summary { list-style: none; cursor: pointer; padding: 1.3rem 3rem 1.3rem 1.4rem; font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; letter-spacing: -0.01em; position: relative; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: ""; position: absolute; right: 1.3rem; top: 1.55rem; width: 14px; height: 14px; background: linear-gradient(var(--accent),var(--accent)) center/14px 2px no-repeat, linear-gradient(var(--accent),var(--accent)) center/2px 14px no-repeat; transition: transform 0.3s var(--ease); }
.qa[open] summary::after { transform: rotate(135deg); }
.qa-body { padding: 0 3rem 1.4rem 1.4rem; }
.qa-body p { color: var(--ink-soft); }

/* ---------- CTA ---------- */
.cta { background: var(--paper-2); border-top: 1px solid var(--line); }
.cta-grid { display: block; max-width: 660px; margin-inline: auto; }
.cta-copy { text-align: center; margin-bottom: 2.6rem; }
.cta-copy h2 { margin-bottom: 1.4rem; }
.cta-copy .lede { margin: 0 auto 1.8rem; }
.cta-scarcity { display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1.8rem; padding: 0.9rem 1.1rem; border: 1px solid var(--line-2); border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--ink-soft); background: var(--paper); text-align: left; }
.cta-scarcity .rec-dot { flex: none; }
.cta-contact { list-style: none; padding: 0; display: grid; gap: 0.7rem; justify-content: center; }
.cta-contact li { display: flex; align-items: center; gap: 0.9rem; font-size: 1.02rem; }
.cta-contact .k { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-faint); border: 1px solid var(--line); padding: 0.28rem 0.6rem; border-radius: 100px; min-width: 88px; text-align: center; }
.cta-contact a { border-bottom: 1px solid var(--line-2); transition: border-color 0.2s; }
.cta-contact a:hover { border-color: var(--accent); }

.cta-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.3rem); display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-family: var(--font-head); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); }
.field input, .field select, .field textarea { font: inherit; font-size: 0.95rem; color: var(--ink); background: var(--paper-2); border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 0.8rem 0.95rem; width: 100%; transition: border-color 0.2s, background 0.2s; }
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: var(--paper); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.82rem; color: var(--ink-soft); line-height: 1.5; }
.consent input { margin-top: 0.2rem; accent-color: var(--accent); width: 16px; height: 16px; flex: none; }
.consent a { text-decoration: underline; }
.form-status { font-size: 0.9rem; padding: 0.75rem 0.95rem; border-radius: var(--radius-sm); }
.form-status.ok { background: var(--ink); color: var(--paper); }
.form-status.err { border: 1px solid var(--accent); color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-2); color: var(--on-ink); padding-block: clamp(3rem, 6vw, 4.5rem); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--on-ink-line); }
.footer-logo { height: 40px; width: auto; filter: invert(1); margin-bottom: 1.1rem; }
.footer-brand p { font-size: 0.92rem; color: var(--on-ink-soft); max-width: 34ch; margin-bottom: 1.1rem; }
.footer-nap { font-style: normal; font-size: 0.88rem; line-height: 1.7; color: var(--on-ink-soft); margin-bottom: 1.3rem; }
.footer-nap a { color: var(--on-ink); opacity: 0.85; transition: color 0.2s, opacity 0.2s; }
.footer-nap a:hover { opacity: 1; color: var(--accent-2); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.footer-ig { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.92rem; font-weight: 500; padding: 0.55rem 1rem 0.55rem 0.8rem; border: 1px solid var(--on-ink-line); border-radius: 100px; transition: background 0.25s, color 0.25s; }
.footer-ig:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-col h3 { font-family: var(--font-head); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--on-ink-soft); margin-bottom: 1.2rem; }
.footer-col { display: grid; gap: 0.7rem; align-content: start; }
.footer-col a { font-size: 0.94rem; color: var(--on-ink); opacity: 0.82; transition: opacity 0.2s, color 0.2s; width: fit-content; }
.footer-col a:hover { opacity: 1; color: var(--accent-2); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.6rem; font-size: 0.82rem; color: var(--on-ink-soft); }

/* ---------- Hover micro-interactions ---------- */
.tl-content h3 { transition: color 0.3s var(--ease); }
@media (hover: hover) and (pointer: fine) {
  .timeline .tl-step:hover .tl-node { transform: scale(1.12); transition-delay: 0s; box-shadow: 0 14px 34px -12px rgba(212,87,42,0.55); }
  .timeline .tl-step:hover .tl-content h3 { color: var(--accent); }

  .qa { transition: border-color 0.25s, background 0.25s, transform 0.3s var(--ease); }
  .qa:hover { transform: translateX(6px); border-color: var(--line-2); }

  .cta-contact li:hover .k { border-color: var(--accent); color: var(--accent); }

  .footer-col a { transition: opacity 0.2s, color 0.2s, transform 0.25s var(--ease); }
  .footer-col a:hover { transform: translateX(4px); }

  .region-tags li:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

  .feat li { transition: color 0.25s var(--ease); }
  .tier:hover .feat li { color: var(--ink); }
  .tier--featured:hover .feat li { color: var(--on-ink); }

  .eyebrow { transition: border-color 0.25s var(--ease), transform 0.25s var(--ease); }
  .section-head:hover .eyebrow { transform: translateY(-2px); border-color: var(--line-2); }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Premium interactions ---------- */
/* Button light sweep */
.btn { position: relative; overflow: hidden; }
.btn > * { position: relative; z-index: 1; }
.btn--solid::after { content: ""; position: absolute; top: 0; bottom: 0; left: -130%; width: 55%; transform: skewX(-18deg); pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(241,238,231,0.30), transparent); }
.btn--solid:hover::after { animation: sheen 0.85s var(--ease); }
@keyframes sheen { to { left: 155%; } }

@media (prefers-reduced-motion: reduce) {
  .rec-dot { animation: none !important; }
}

/* ============================================================ Responsive ============================================================ */
@media (max-width: 980px) {
  .nav { display: none; }
  .header-inner > .btn--sm { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav.open { display: flex; }

  .hero-media { max-width: 520px; margin-inline: auto; }
  .scroll-cue { display: none; }

  .thesis-grid { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .about-inner { grid-template-columns: 1fr; }
  .about-text { columns: 1; }
  .region-inner { grid-template-columns: 1fr; }
  .region-map { order: -1; }
  .de-map { max-width: 320px; }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
/* vertical timeline on small screens */
@media (max-width: 760px) {
  .tl-track { display: none; }
  .tl-steps { grid-template-columns: 1fr; gap: 0; }
  .tl-step { flex-direction: row; align-items: flex-start; text-align: left; gap: 1.2rem; padding-bottom: 2.2rem; position: relative; }
  .tl-step:not(:last-child)::before { content: ""; position: absolute; left: 31px; top: 62px; bottom: -8px; width: 2px; background: var(--line-2); }
  .timeline.in .tl-step:not(:last-child)::before { background: linear-gradient(180deg, var(--accent), var(--line-2)); }
  .tl-node { margin-bottom: 0; flex: none; }
  .tl-content { padding-top: 0.6rem; }
  .tl-content p { max-width: none; }
}

@media (max-width: 620px) {
  /* full-width, thumb-friendly hero CTAs */
  .hero-actions { width: 100%; flex-direction: column; gap: 0.7rem; }
  .hero-actions .btn { width: 100%; }
  /* declutter decorative hero markers on small screens */
  .hero-marker { display: none; }
  /* tighter header for more content room */
  .header-inner { height: 62px; }
  .brand img { height: 30px; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-contact .k { min-width: 76px; }
  .cta-contact li { flex-wrap: wrap; }
}

/* ============================================================ Legal pages ============================================================ */
.legal-header { border-bottom: 1px solid var(--line); position: sticky; top: 0; background: color-mix(in srgb, var(--paper) 88%, transparent); backdrop-filter: blur(12px); z-index: 100; }
.legal-header .header-inner { justify-content: space-between; }
.legal-back { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; }
.legal-back:hover { color: var(--accent); }
.legal-main { max-width: 780px; margin-inline: auto; padding: clamp(2.5rem, 6vw, 5rem) var(--gutter) clamp(4rem, 8vw, 6rem); }
.legal-main h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -0.03em; margin-bottom: 0.6rem; }
.legal-main h1 .accent { color: var(--accent); }
.legal-lead { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 2.5rem; }
.legal-main h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.25rem, 2.4vw, 1.6rem); letter-spacing: -0.02em; margin: 2.4rem 0 0.8rem; }
.legal-main h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; margin: 1.4rem 0 0.5rem; }
.legal-main p { color: var(--ink-soft); margin-bottom: 1rem; }
.legal-main ul { color: var(--ink-soft); margin: 0 0 1rem 1.2rem; display: grid; gap: 0.4rem; }
.legal-main a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.legal-main a:hover { color: var(--accent); }
.legal-main strong { color: var(--ink); font-weight: 600; }
.legal-note { border: 1px dashed var(--accent); border-radius: var(--radius-sm); background: rgba(212,87,42,0.06); padding: 1rem 1.2rem; margin-bottom: 2.5rem; font-size: 0.9rem; color: var(--ink); }
.legal-note strong { color: var(--accent); }
.legal-ph { background: rgba(212,87,42,0.12); color: var(--ink); padding: 0.05em 0.35em; border-radius: 4px; font-weight: 500; }
.error-main { text-align: center; min-height: 58vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.error-main .eyebrow { margin-bottom: 1.2rem; }
.error-main .legal-lead { max-width: 46ch; margin-inline: auto; }
.error-main .btn { margin-top: 1.6rem; }
