/* ==========================================================================
   mucki - static marketing site
   Palette taken directly from the Claude Design concept.
   ========================================================================== */

/* Self-hosted variable fonts (no external requests, no visitor data leaves the site).
   Latin subset - covers German äöüß. Downloaded from Google Fonts (OFL-licensed). */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../assets/fonts/inter.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../assets/fonts/manrope.woff2') format('woff2');
}

:root {
  /* Brand palette */
  --bg:          #FBFCFC;
  --ink:         #1e293b;
  --muted:       #616b7c;
  --blue:        #1e40af;
  --blue-deep:   #1e3a8a;
  --lav:         #E0E7FF;
  --lav-dot:     #93b4ff;
  --panel:       #F2F7F6;
  --footer-ink:  #1e293b;
  --footer-txt:  #93a1b5;
  --footer-mut:  #616b7c;
  --loader-bg:   #0b1020;

  /* Type */
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-head: 'Manrope', var(--font-body);

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 40px);
  --nav-h: 70px;

  --shadow-card: 0 18px 40px rgba(30, 41, 59, 0.05);
  --radius: 22px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* `clip` contains horizontal overflow WITHOUT making <body> a scroll container.
     Using `hidden` here would force overflow-y:auto and silently break the
     position:sticky product panels. */
  overflow-x: clip;
}

/* lock scroll while the loader is up */
body.is-loading { overflow: hidden; }

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

h1, h2, h3 { font-family: var(--font-head); font-weight: 800; letter-spacing: -0.025em; margin: 0; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-deep); }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  z-index: 300;
  background: var(--blue); color: #fff;
  padding: 10px 16px; border-radius: 10px; font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; color: #fff; }

@keyframes muckiFadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes muckiSpin   { to { transform: rotate(360deg); } }
@keyframes muckiPulse  { 0%,100% { opacity: .55; } 50% { opacity: 1; } }

/* ==========================================================================
   LOADER  - dark screen with the glowing mascot, fades out on load
   ========================================================================== */
.loader {
  position: fixed; inset: 0; z-index: 200;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 26px;
  background: var(--loader-bg);
  transition: opacity .6s ease, visibility .6s ease;
}
.loader__mascot {
  width: clamp(120px, 34vw, 190px);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(147, 180, 255, 0.5));
  animation: muckiPulse 1.6s ease-in-out infinite;
}
.loader__word {
  font-family: var(--font-head); font-weight: 800; font-size: 22px;
  letter-spacing: 0.02em; color: #fff;
  display: flex; align-items: center; gap: 12px;
}
.loader__spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(224, 231, 255, 0.3);
  border-top-color: var(--lav-dot);
  animation: muckiSpin .8s linear infinite;
}
body.is-loaded .loader { opacity: 0; visibility: hidden; pointer-events: none; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  background: rgba(251, 252, 252, 0.72);
  border-bottom: 1px solid rgba(30, 64, 175, 0.08);
}
.nav__inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav__brand { display: flex; align-items: center; }
.nav__logo { height: 38px; width: auto; }

.nav__cluster { display: flex; align-items: center; gap: clamp(14px, 2.5vw, 26px); }
.nav__links { display: flex; align-items: center; gap: clamp(18px, 3vw, 32px); }
.nav__link { font-size: 15px; font-weight: 500; color: var(--muted); }
.nav__link:hover { color: var(--ink); }

/* language switch */
.lang { display: inline-flex; align-items: center; gap: 2px; }
.lang__btn {
  border: 0; background: transparent; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 14px; line-height: 1;
  color: var(--muted); padding: 5px 6px; border-radius: 7px;
  transition: color .15s ease, background .15s ease;
}
.lang__btn:hover { color: var(--ink); background: rgba(30, 64, 175, 0.06); }
.lang__btn[aria-pressed="true"] { color: var(--blue); }
.lang__sep { color: rgba(30, 64, 175, 0.28); font-size: 13px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; font-weight: 600; cursor: pointer;
  border: 1.5px solid transparent; font-family: var(--font-body);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  padding: 10px 22px; font-size: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff; box-shadow: 0 6px 18px rgba(30, 64, 175, 0.28);
}
.btn--primary:hover { color: #fff; box-shadow: 0 10px 26px rgba(30, 64, 175, 0.36); }
.btn--lg { padding: 15px 30px; font-size: 16px; }
.btn--light { background: var(--bg); color: var(--blue-deep); font-weight: 700; box-shadow: 0 12px 30px rgba(0,0,0,0.22); }
.btn--light:hover { color: var(--blue-deep); }
.btn--ghost {
  background: rgba(224, 231, 255, 0.14); border-color: rgba(224, 231, 255, 0.55);
  color: #fff; font-weight: 600; backdrop-filter: blur(6px);
}
.btn--ghost:hover { color: #fff; background: rgba(224, 231, 255, 0.24); }

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  width: 42px; height: 42px; border: 0; background: transparent; cursor: pointer;
  border-radius: 10px; padding: 9px;
}
.nav__toggle:hover { background: rgba(30, 64, 175, 0.08); }
.nav__toggle span { display: block; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .3s ease, opacity .2s ease; }
.nav__toggle span + span { margin-top: 5px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 14px var(--gutter) 22px;
    background: rgba(251, 252, 252, 0.98);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
    box-shadow: 0 20px 40px rgba(30, 41, 59, 0.1);
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }
  .nav__links.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav__link { padding: 12px 4px; font-size: 17px; border-bottom: 1px solid rgba(30,64,175,0.06); }
  .nav__links .btn--primary { margin-top: 10px; padding: 14px 22px; font-size: 16px; }
}

/* ==========================================================================
   HERO  - full-viewport photo, gradient wash, scales in on load
   ========================================================================== */
.hero { position: relative; min-height: 100svh; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background: url('../assets/hero-berlin.jpg') center 40% / cover no-repeat;
  transform: scale(1.14);
  transition: transform 1.6s cubic-bezier(.2, .7, .2, 1);
  will-change: transform;
}
body.is-loaded .hero__bg { transform: scale(1); }
.hero__wash {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,58,138,0.62) 0%, rgba(30,64,175,0.42) 55%, rgba(30,58,138,0.72) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: calc(var(--nav-h) + 24px) 24px 90px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 999px;
  background: rgba(224, 231, 255, 0.18);
  border: 1px solid rgba(224, 231, 255, 0.35);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  margin-bottom: 28px;
  color: var(--lav); font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
}
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lav-dot); }
.hero__title {
  color: #fff; font-size: clamp(38px, 6.4vw, 84px); line-height: 1.02;
  letter-spacing: -0.03em; max-width: 16ch; margin: 0 0 22px; text-wrap: balance;
}
.hero__sub {
  color: var(--lav); font-size: clamp(17px, 2vw, 23px);
  max-width: 34ch; margin: 0 0 40px; line-height: 1.45;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* staged entrance of hero content once loaded */
body.is-loaded .hero__badge { animation: muckiFadeUp .8s .10s both; }
body.is-loaded .hero__title { animation: muckiFadeUp .8s .18s both; }
body.is-loaded .hero__sub   { animation: muckiFadeUp .8s .26s both; }
body.is-loaded .hero__cta   { animation: muckiFadeUp .8s .34s both; }

.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--lav); opacity: .85; z-index: 2;
}
.hero__scroll span:first-child { font-size: 12px; letter-spacing: 0.14em; font-weight: 600; }
.hero__scroll .line {
  width: 1px; height: 34px; background: linear-gradient(var(--lav), transparent);
  animation: muckiPulse 1.8s ease-in-out infinite;
}
@media (max-width: 480px) {
  .hero__inner { padding-left: var(--gutter); padding-right: var(--gutter); }
  .hero__cta { flex-direction: column; width: 100%; max-width: 320px; }
  .hero__cta .btn { width: 100%; }
}
@media (max-width: 520px) { .hero__scroll { display: none; } }

/* ==========================================================================
   SHARED SECTION PRIMITIVES
   ========================================================================== */
.eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue);
  margin: 0 0 14px;
}
.section-title {
  font-size: clamp(30px, 4vw, 50px); line-height: 1.08; color: var(--ink); margin: 0;
}
.section-head { margin-bottom: clamp(40px, 6vw, 60px); }
.section-head--center { text-align: center; }
.section-head--center .section-title { max-width: 20ch; margin-inline: auto; text-wrap: balance; }

/* ==========================================================================
   FEATURES
   ========================================================================== */
.features { padding-block: clamp(80px, 11vw, 120px) clamp(64px, 8vw, 90px); }

.cards {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid rgba(30, 64, 175, 0.08);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-card);
}
.card__icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--lav); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.card__icon svg { display: block; }
.card__title { font-size: 20px; font-weight: 700; color: var(--ink); margin: 0 0 10px; }
.card__text { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0; }

/* staggered reveal for the grid */
.cards [data-reveal]:nth-child(2) { transition-delay: .08s; }
.cards [data-reveal]:nth-child(3) { transition-delay: .16s; }
.cards [data-reveal]:nth-child(4) { transition-delay: .24s; }

/* ==========================================================================
   PRODUCT  - "Meet Mucki" banner + sticky stacking demo panels
   ========================================================================== */
.product {
  background: linear-gradient(180deg, var(--bg) 0%, var(--panel) 40%, var(--panel) 100%);
  padding-block: clamp(72px, 9vw, 90px) 40px;
}

.product__banner {
  position: relative;
  border-radius: clamp(20px, 3vw, 28px);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(30, 58, 138, 0.28);
  margin-bottom: clamp(56px, 9vw, 90px);
}
.product__banner img { width: 100%; height: auto; }
.product__banner-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(22px, 4vw, 40px);
  background: linear-gradient(0deg, rgba(30, 58, 138, 0.85), rgba(30, 58, 138, 0) 100%);
}
.eyebrow--light { color: var(--lav); margin-bottom: 8px; }
.product__banner-title {
  color: #fff; font-size: clamp(24px, 3.4vw, 44px);
  letter-spacing: -0.02em; line-height: 1.06; margin: 0; max-width: 18ch;
}

/* ==========================================================================
   ABOUT  - story + team
   ========================================================================== */
.container--narrow { max-width: 1100px; }
.about { padding-block: clamp(80px, 11vw, 120px) clamp(64px, 8vw, 90px); }
.about__head { max-width: 820px; margin-inline: auto; margin-bottom: clamp(48px, 7vw, 64px); }
/* the story sits in a wider column, so its headline may use the full width */
.about__head .section-title { max-width: none; }
.about__lead { color: var(--muted); font-size: clamp(16px, 1.8vw, 17px); line-height: 1.7; margin: 0; }
/* the story runs as two paragraphs - they need air between them */
.about__lead + .about__lead { margin-top: 16px; }
/* centred story: head, both paragraphs and the founder card sit on the axis */
.about .team { margin-inline: auto; justify-content: center; }
.about .team-card { text-align: left; }

.team {
  list-style: none; margin: 0; padding: 0;
  /* capped so the single founder card reads as a card, not a full-width band */
  max-width: 620px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px;
}
.team-card {
  background: #fff;
  border: 1px solid rgba(30, 64, 175, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 20px;
}
.team-card:nth-child(2) { transition-delay: .1s; }
.team-card__avatar {
  width: 104px; height: 104px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.team-card__avatar--top { object-position: center top; }
.team-card__name { font-family: var(--font-head); font-size: 19px; font-weight: 700; color: var(--ink); margin: 0 0 3px; }
.team-card__role { color: var(--blue); font-size: 14px; font-weight: 600; margin: 0 0 8px; }
.team-card__bio { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0; }

@media (max-width: 380px) { .team-card { flex-direction: column; text-align: center; } }

/* ==========================================================================
   CONTACT  - email only, no form / no calendar
   ========================================================================== */
.contact {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  padding-block: clamp(80px, 12vw, 110px);
}
.contact__texture {
  position: absolute; inset: 0; pointer-events: none;
  background: url('../assets/sub-hero.png') center / cover no-repeat;
  opacity: 0.14; mix-blend-mode: screen;
}
.contact__inner { position: relative; max-width: 760px; margin-inline: auto; padding-inline: var(--gutter); }
.contact__mark {
  width: 60px; height: 60px; object-fit: contain; margin: 0 auto 24px;
  filter: brightness(0) invert(1); opacity: 0.95;
}
.contact__title { color: #fff; font-size: clamp(30px, 4.4vw, 52px); line-height: 1.08; margin: 0 0 18px; text-wrap: balance; }
.contact__text { color: var(--lav); font-size: clamp(17px, 2vw, 19px); line-height: 1.5; margin: 0 0 38px; }
.btn--xl { padding: 17px 38px; font-size: 17px; }
.contact__note { min-height: 20px; margin: 16px 0 0; font-size: 14px; color: #fff; font-weight: 600; }
.contact__email { margin: 20px 0 0; font-size: 14px; color: var(--lav); }
.contact__email a { color: var(--lav); text-decoration: underline; text-underline-offset: 3px; }
.contact__email a:hover { color: #fff; }

/* ==========================================================================
   LEGAL PAGE (Impressum)
   ========================================================================== */
.legal-top { border-bottom: 1px solid rgba(30, 64, 175, 0.08); background: var(--bg); }
.legal-top__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}
.legal-top .nav__logo { height: 38px; width: auto; }
.legal-top__end { display: flex; align-items: center; gap: clamp(14px, 3vw, 24px); }
.legal-back { font-size: 15px; font-weight: 500; color: var(--muted); }
.legal-back:hover { color: var(--ink); }

.legal { padding-block: clamp(48px, 8vw, 90px); }
.legal h1 { font-size: clamp(30px, 5vw, 44px); margin: 0 0 24px; }
.legal h2 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--ink); margin: 32px 0 8px; }
.legal p { color: var(--muted); line-height: 1.7; margin: 0 0 8px; }
.legal address { font-style: normal; color: var(--ink); line-height: 1.8; }
.legal a { color: var(--blue); }
.legal a:hover { color: var(--blue-deep); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--footer-ink); color: var(--footer-txt); padding-block: 48px; }
.footer__inner {
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
}
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__brand img { width: 28px; height: 28px; object-fit: contain; }
.footer__brand span { font-family: var(--font-head); font-weight: 800; font-size: 19px; color: #fff; letter-spacing: -0.02em; }
.footer__links { display: flex; gap: 28px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.footer__links a { color: var(--footer-txt); font-size: 14px; }
.footer__links a:hover { color: #fff; }
.footer__copy { margin: 0; font-size: 13px; color: var(--footer-mut); }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .hero__bg { transform: none; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ==========================================================================
   SERVICES / REPOSITIONING
   Shared additions used by the homepage, then the Services page components
   ported from the Claude Design file "Mucki Services Sections".
   Appended so the reduced-motion block above still neutralises new motion.
   ========================================================================== */

/* ---------- shared additions ---------- */
.hero__trust {
  margin: 28px 0 0; color: var(--lav); opacity: .82;
  font-size: clamp(13px, 1.4vw, 14px); font-weight: 500; line-height: 1.6;
  max-width: 46ch; text-wrap: balance;
}
body.is-loaded .hero__trust { animation: muckiFadeUp .8s .42s both; }

.section-lead {
  color: var(--muted); font-size: clamp(15px, 1.7vw, 18px); line-height: 1.65;
  margin: 18px 0 0; max-width: 56ch; text-wrap: pretty;
}
.section-head--center .section-lead { margin-inline: auto; }
.container--tight { max-width: 860px; }

.btn--outline {
  background: transparent; border-color: rgba(30, 64, 175, 0.3);
  color: var(--blue); font-weight: 600; padding: 10px 22px; font-size: 14px;
}
.btn--outline:hover { color: var(--blue-deep); border-color: var(--blue); background: rgba(30, 64, 175, 0.05); }
.btn--lg.btn--outline { padding: 15px 30px; font-size: 16px; }

/* ---------- proof strip (homepage) ---------- */
.proof { background: var(--panel); border-bottom: 1px solid rgba(30, 64, 175, 0.07); }
.proof__list {
  list-style: none; margin: 0; padding: 22px 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px clamp(20px, 5vw, 54px);
}
.proof__item { position: relative; color: var(--ink); font-size: 15px; font-weight: 600; padding-left: 26px; }
.proof__item::before {
  content: ""; position: absolute; left: 0; top: 50%; margin-top: -7px;
  width: 14px; height: 14px; border-radius: 50%; background: var(--blue); opacity: .16;
}
.proof__item::after {
  content: ""; position: absolute; left: 4px; top: 50%; margin-top: -2px;
  width: 4px; height: 4px; border-radius: 50%; background: var(--blue);
}
@media (max-width: 700px) {
  .proof__list { flex-direction: column; align-items: flex-start; padding-inline: var(--gutter); }
}

/* ==========================================================================
   PAGE SECTIONS  - packages, funding, audiences, sovereignty, process, FAQ
   ========================================================================== */

/* ---------- packages ---------- */
.pkgs-sec { padding-block: clamp(72px, 10vw, 120px) clamp(50px, 6vw, 70px); }
.pkgs {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(16px, 2vw, 24px); align-items: stretch;
}
.pkg {
  position: relative; display: flex; flex-direction: column; gap: 20px;
  background: #fff; border: 1px solid rgba(30, 64, 175, 0.08);
  border-radius: var(--radius); padding: clamp(26px, 3vw, 34px);
  box-shadow: var(--shadow-card); color: var(--ink);
}
.pkg--featured {
  background: linear-gradient(160deg, var(--blue), var(--blue-deep));
  border-color: rgba(30, 58, 138, 0.5);
  box-shadow: 0 26px 60px rgba(30, 58, 138, 0.3);
  color: #fff;
}
.pkg__badge {
  position: absolute; top: 18px; right: 18px;
  padding: 6px 13px; border-radius: 999px;
  background: var(--lav); color: var(--blue-deep);
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
}
.pkg__head { display: block; }
.pkg__name { font-family: var(--font-head); font-size: 21px; font-weight: 700; margin: 0 0 8px; }
.pkg--featured .pkg__name { color: #fff; padding-right: 96px; }
.pkg__desc { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin: 0; }
.pkg--featured .pkg__desc { color: var(--lav); }

.pkg__price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin: 0; }
.pkg__from { color: var(--muted); font-size: 16px; font-weight: 600; }
.pkg--featured .pkg__from { color: var(--lav); }
.pkg__amount {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(30px, 3.4vw, 38px); letter-spacing: -0.03em; color: var(--ink);
}
.pkg--featured .pkg__amount { color: #fff; }
.pkg__unit { color: var(--muted); font-size: 14px; font-weight: 500; }

.pkg__dur {
  align-self: flex-start; margin: 0;
  padding: 6px 13px; border-radius: 999px;
  background: var(--panel); color: var(--blue);
  font-size: 13px; font-weight: 600;
}
.pkg--featured .pkg__dur {
  background: rgba(224, 231, 255, 0.16); border: 1px solid rgba(224, 231, 255, 0.3); color: var(--lav);
}

.pkg__list {
  list-style: none; margin: 0; padding: 12px 0 0;
  display: flex; flex-direction: column; gap: 11px;
  border-top: 1px solid rgba(30, 64, 175, 0.08);
}
.pkg--featured .pkg__list { border-top-color: rgba(224, 231, 255, 0.22); }
.pkg__item { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; line-height: 1.55; }
.pkg__check { flex-shrink: 0; margin-top: 2px; color: var(--blue); }
.pkg--featured .pkg__check { color: var(--lav); }

.pkg__cta {
  display: block; text-align: center; margin-top: auto;
  padding: 13px 20px; border-radius: 999px;
  background: var(--panel); border: 1.5px solid rgba(30, 64, 175, 0.16);
  color: var(--blue-deep); font-size: 15px; font-weight: 600;
  transition: background .2s ease, box-shadow .2s ease;
}
.pkg__cta:hover { background: #fff; color: var(--blue-deep); box-shadow: 0 8px 20px rgba(30, 64, 175, 0.14); }
.pkg--featured .pkg__cta {
  background: var(--bg); border-color: transparent; font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
.pkgs [data-reveal]:nth-child(2) { transition-delay: .08s; }
.pkgs [data-reveal]:nth-child(3) { transition-delay: .16s; }

/* ---------- extras strip ---------- */
.extras {
  list-style: none; margin: clamp(20px, 2.5vw, 26px) 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 14px;
}
.extra {
  flex: 1 1 300px; display: flex; align-items: center; gap: 14px;
  background: var(--panel); border: 1px solid rgba(30, 64, 175, 0.08);
  border-radius: 16px; padding: 18px 22px;
}
.extra__icon { flex-shrink: 0; color: var(--blue); }
.extra__text { margin: 0; color: var(--ink); font-size: 14.5px; line-height: 1.55; }
.extra__text strong { font-weight: 700; }

/* ---------- funding callout ---------- */
.foerd-sec { padding: 0 0 clamp(72px, 9vw, 110px); }
.foerd {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border-radius: 26px; padding: clamp(30px, 4.5vw, 52px);
  box-shadow: 0 26px 60px rgba(30, 58, 138, 0.26);
  display: flex; flex-wrap: wrap; align-items: center; gap: clamp(22px, 4vw, 44px);
}
.foerd__main { flex: 1 1 320px; min-width: 0; }
.foerd__tag {
  display: inline-flex; align-items: center; margin: 0 0 18px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(224, 231, 255, 0.16); border: 1px solid rgba(224, 231, 255, 0.32);
  color: var(--lav); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.foerd__title {
  font-family: var(--font-head); font-weight: 800; color: #fff;
  font-size: clamp(26px, 3.6vw, 42px); letter-spacing: -0.025em; line-height: 1.08; margin: 0 0 16px;
}
.foerd__text {
  color: var(--lav); font-size: clamp(15px, 1.7vw, 18px); line-height: 1.65;
  margin: 0; max-width: 54ch; text-wrap: pretty;
}
.foerd__text strong { color: #fff; font-weight: 700; }

.foerd__side { flex: 0 1 260px; display: flex; flex-direction: column; gap: 12px; }
.foerd__prog {
  background: rgba(251, 252, 252, 0.1); border: 1px solid rgba(224, 231, 255, 0.28);
  border-radius: 16px; padding: 18px 20px;
}
.foerd__prog-name { margin: 0 0 4px; font-family: var(--font-head); font-weight: 700; font-size: 17px; color: #fff; }
.foerd__prog-desc { margin: 0; color: var(--lav); font-size: 13.5px; line-height: 1.5; }
.foerd__pct { display: flex; align-items: baseline; gap: 8px; padding-left: 4px; margin: 0; }
.foerd__pct-num { font-family: var(--font-head); font-weight: 800; font-size: 34px; color: #fff; letter-spacing: -0.03em; }
.foerd__pct-label { color: var(--lav); font-size: 13.5px; font-weight: 500; }

/* ---------- audiences ---------- */
.aud-sec {
  background: linear-gradient(180deg, var(--bg) 0%, var(--panel) 100%);
  padding-block: clamp(72px, 10vw, 110px);
}
.auds {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2.4vw, 26px);
}
.aud {
  background: #fff; border: 1px solid rgba(30, 64, 175, 0.08);
  border-radius: var(--radius); padding: clamp(26px, 3.4vw, 38px);
  box-shadow: var(--shadow-card);
}
.aud:nth-child(2) { transition-delay: .1s; }
.aud__icon {
  width: 50px; height: 50px; border-radius: 14px; background: var(--lav);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; color: var(--blue);
}
.aud__title { font-family: var(--font-head); font-weight: 700; font-size: clamp(20px, 2.4vw, 25px); color: var(--ink); margin: 0 0 8px; }
.aud__desc { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0 0 22px; }
.aud__list {
  list-style: none; margin: 0; padding: 20px 0 0;
  display: flex; flex-direction: column; gap: 14px;
  border-top: 1px solid rgba(30, 64, 175, 0.08);
}
.aud__item { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-size: 15px; line-height: 1.6; }
.aud__check { flex-shrink: 0; margin-top: 3px; color: var(--blue); }

/* ---------- sovereignty tiers ---------- */
.sov-sec { padding-block: clamp(72px, 10vw, 115px); }
.tiers {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 22px); align-items: stretch;
}
.tier {
  display: flex; flex-direction: column; gap: 16px;
  background: #fff; border: 1px solid rgba(30, 64, 175, 0.08);
  border-radius: var(--radius); padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow-card);
}
.tier--dark {
  background: linear-gradient(160deg, var(--blue), var(--blue-deep));
  border-color: rgba(30, 58, 138, 0.5);
  box-shadow: 0 26px 60px rgba(30, 58, 138, 0.28);
}
.tier__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.tier__step {
  font-family: var(--font-head); font-weight: 800; font-size: 13px;
  color: var(--blue); letter-spacing: 0.1em; text-transform: uppercase;
}
.tier--dark .tier__step { color: var(--lav); }
.tier__pips { display: flex; gap: 4px; }
.pip { width: 22px; height: 5px; border-radius: 99px; background: var(--lav); display: inline-block; }
.pip--on { background: var(--blue); }
.tier--dark .pip { background: rgba(224, 231, 255, 0.35); }
.tier--dark .pip--on { background: #fff; }
.tier__icon {
  width: 46px; height: 46px; border-radius: 13px; background: var(--panel);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
}
.tier--dark .tier__icon { background: rgba(224, 231, 255, 0.18); color: #fff; }
.tier__title { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--ink); margin: 0; }
.tier--dark .tier__title { color: #fff; }
.tier__text { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin: 0; }
.tier--dark .tier__text { color: var(--lav); }
.tier__tags {
  list-style: none; margin: auto 0 0; padding: 16px 0 0;
  display: flex; flex-wrap: wrap; gap: 8px;
  border-top: 1px solid rgba(30, 64, 175, 0.08);
}
.tier--dark .tier__tags { border-top-color: rgba(224, 231, 255, 0.22); }
.tag { padding: 5px 11px; border-radius: 999px; background: var(--panel); color: var(--blue); font-size: 12.5px; font-weight: 600; }
.tier--dark .tag { background: rgba(224, 231, 255, 0.16); color: #fff; }
.tiers [data-reveal]:nth-child(2) { transition-delay: .08s; }
.tiers [data-reveal]:nth-child(3) { transition-delay: .16s; }

/* ---------- process ---------- */
.proc-sec {
  background: linear-gradient(180deg, var(--panel) 0%, var(--bg) 100%);
  padding-block: clamp(72px, 10vw, 110px);
}
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: clamp(16px, 2vw, 22px);
}
.step {
  background: #fff; border: 1px solid rgba(30, 64, 175, 0.08);
  border-radius: var(--radius); padding: clamp(26px, 3vw, 34px);
  box-shadow: var(--shadow-card);
}
.step__head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.step__num {
  font-family: var(--font-head); font-weight: 800; font-size: 44px;
  color: var(--lav); letter-spacing: -0.04em; line-height: 1;
}
.step__pill { padding: 6px 13px; border-radius: 999px; background: var(--panel); color: var(--blue); font-size: 13px; font-weight: 600; }
.step__title { font-family: var(--font-head); font-weight: 700; font-size: 21px; color: var(--ink); margin: 0 0 10px; }
.step__text { color: var(--muted); font-size: 15px; line-height: 1.65; margin: 0; }
.steps [data-reveal]:nth-child(2) { transition-delay: .1s; }
.steps [data-reveal]:nth-child(3) { transition-delay: .2s; }

/* ---------- FAQ accordion ---------- */
.faq-sec { padding-block: clamp(72px, 10vw, 115px); }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: #fff; border: 1px solid rgba(30, 64, 175, 0.08);
  border-radius: 18px; box-shadow: 0 12px 30px rgba(30, 41, 59, 0.04); overflow: hidden;
}
.faq__h { margin: 0; font-size: inherit; }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left; background: none; border: 0; cursor: pointer;
  padding: 22px clamp(20px, 2.6vw, 28px);
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(16px, 1.8vw, 18px); color: var(--ink); line-height: 1.4;
}
.faq__sign {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--panel); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 19px; font-weight: 500;
}
.faq__sign::before { content: "+"; }
.faq__item.is-open .faq__sign::before { content: "\2212"; }
.faq__panel {
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height .38s cubic-bezier(.2, .7, .2, 1), opacity .3s ease;
}
.faq__item.is-open .faq__panel { max-height: 460px; opacity: 1; }
.faq__a {
  margin: 0; padding: 0 clamp(20px, 2.6vw, 28px) 24px;
  color: var(--muted); font-size: 15.5px; line-height: 1.7; text-wrap: pretty;
}

/* ---------- demo video (click-to-load facade) ---------- */
.demo { margin-top: clamp(44px, 6vw, 64px); }
.demo__title {
  font-family: var(--font-head); font-size: clamp(20px, 2.4vw, 26px); font-weight: 700;
  color: var(--ink); text-align: center; margin: 0 0 22px;
}
.video {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 26px 60px rgba(30, 41, 59, 0.18);
}
.video__poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0; cursor: pointer; background: transparent; padding: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; color: #fff; font-family: var(--font-body);
}
.video__poster::before {
  content: ""; position: absolute; inset: 0;
  background: url('../assets/sub-hero.png') center / cover no-repeat;
  opacity: 0.18; mix-blend-mode: screen;
}
.video__mascot {
  position: relative; width: clamp(64px, 9vw, 96px); height: auto;
  filter: drop-shadow(0 0 28px rgba(147, 180, 255, 0.45));
}
.video__play {
  position: relative;
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  transition: transform .2s ease;
}
.video__play svg { margin-left: 4px; }
.video__poster:hover .video__play { transform: scale(1.07); }
.video__poster:focus-visible { outline: 3px solid var(--lav); outline-offset: -6px; }
.video__label { position: relative; font-size: 15px; font-weight: 700; }
.video__frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video.is-playing .video__poster { display: none; }
.demo__note {
  margin: 14px 0 0; text-align: center;
  color: var(--muted); font-size: 13px; line-height: 1.6;
}
