/* palette: bg=#160A2E fg=#F2EBFF accent=#F3C24B */
/* fonts: display="Syne" body="Manrope" mono="Space Mono" */

:root {
  --bg: #160A2E;          /* deep cosmic violet — dominant background */
  --bg-rgb: 22, 10, 46;
  --bg-alt: #1E0F3D;      /* alternating section background */
  --bg-deep: #0D0620;     /* darkest band */
  --bg-panel: #241448;    /* card / panel */
  --fg: #F2EBFF;          /* primary text */
  --fg-soft: #D9CCF2;     /* slightly softer fg */
  --muted: #A08FC6;       /* secondary text */
  --accent: #F3C24B;      /* gold — brand accent */
  --accent-deep: #D89B2E; /* deep gold for hover */
  --violet: #8A5CF0;      /* cosmic violet secondary */
  --violet-soft: #B79BFF;
  --border: rgba(242, 235, 255, 0.13);
  --border-strong: rgba(242, 235, 255, 0.22);
  --serif: 'Syne', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Manrope', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1240px;
  --pad: clamp(80px, 12vw, 160px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.76;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; margin: 0; line-height: 1.06; letter-spacing: -0.02em; }
p { margin: 0; }
::selection { background: var(--accent); color: var(--bg-deep); }

/* ---------- Layout utilities ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

.section { padding: var(--pad) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--deep { background: var(--bg-deep); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  opacity: 0.7;
}
.eyebrow--center { justify-content: center; }

.lead { color: var(--fg-soft); font-size: clamp(1.05rem, 1.7vw, 1.28rem); line-height: 1.72; max-width: 62ch; }
.muted { color: var(--muted); }

h2.section-title { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -0.025em; font-weight: 600; }
h3 { letter-spacing: -0.015em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 9999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), box-shadow 0.4s var(--ease), color 0.3s var(--ease);
  will-change: transform;
}
.btn--primary {
  background: var(--accent);
  color: #241100;
  box-shadow: 0 10px 34px -12px rgba(243, 194, 75, 0.65);
}
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--ghost {
  border: 1px solid var(--border-strong);
  color: var(--fg);
  background: rgba(242, 235, 255, 0.02);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn__arrow { transition: transform 0.4s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  transition: gap 0.35s var(--ease), color 0.3s var(--ease);
}
.arrow-link:hover { gap: 15px; color: var(--accent); }
.arrow-link span { color: var(--accent); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; }
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(var(--bg-rgb), 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border);
  box-shadow: 0 14px 40px -24px rgba(0, 0, 0, 0.8);
  background: rgba(var(--bg-rgb), 0.9);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.logo { display: inline-flex; align-items: center; gap: 12px; font-family: var(--serif); font-weight: 700; font-size: 21px; letter-spacing: -0.03em; }
.logo__mark { width: 38px; height: 32px; flex: none; }
.logo__word b { font-weight: 700; }
.logo__word i { font-style: normal; color: var(--accent); }

.nav { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; align-items: center; gap: 38px; }
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-soft);
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.35s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--fg); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

.header__cta { display: none; }
@media (min-width: 900px) { .header__cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span { display: block; height: 2px; width: 100%; background: var(--fg); transition: transform 0.35s var(--ease), opacity 0.3s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 74px 0 0 0;
  z-index: 99;
  background: var(--bg-deep);
  padding: 40px 24px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a { font-family: var(--serif); font-size: 2rem; font-weight: 600; padding: 14px 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .btn { margin-top: 28px; justify-content: center; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.34; animation: heroZoom 9s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(138, 92, 240, 0.35) 0%, transparent 55%),
    radial-gradient(80% 70% at 15% 100%, rgba(243, 194, 75, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, rgba(13, 6, 32, 0.55) 0%, rgba(22, 10, 46, 0.86) 62%, var(--bg) 100%);
}
.hero__stars { position: absolute; inset: 0; z-index: 1; opacity: 0.6; pointer-events: none; }
.hero__inner { position: relative; z-index: 3; padding: 130px 0 90px; }
.hero__grid { display: grid; gap: 46px; }
@media (min-width: 1000px) { .hero__grid { grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 60px; } }

.hero h1 {
  font-size: clamp(3.3rem, 9vw, 8rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 26px 0 30px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__sub { max-width: 52ch; color: var(--fg-soft); font-size: clamp(1.06rem, 1.7vw, 1.3rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }

.hero__prism { position: relative; display: none; }
@media (min-width: 1000px) { .hero__prism { display: block; } }
.hero__prism svg { width: 100%; height: auto; filter: drop-shadow(0 30px 60px rgba(138, 92, 240, 0.4)); animation: floatP 7s ease-in-out infinite; }
@keyframes floatP { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.hero__meta { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 56px; padding-top: 30px; border-top: 1px solid var(--border); }
.hero__meta div { min-width: 120px; }
.hero__meta dt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.hero__meta dd { margin: 0; font-family: var(--serif); font-size: 1.9rem; font-weight: 600; }
.hero__meta dd span { color: var(--accent); }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--border); background: var(--bg-deep); overflow: hidden; padding: 20px 0; }
.marquee__track { display: flex; gap: 48px; width: max-content; animation: marq 34s linear infinite; }
.marquee__track span { font-family: var(--mono); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 48px; }
.marquee__track span::after { content: "◆"; color: var(--accent); font-size: 9px; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- Section header ---------- */
.sec-head { max-width: 760px; margin-bottom: clamp(48px, 6vw, 84px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head p { margin-top: 22px; }

/* ---------- Manifesto ---------- */
.manifesto { text-align: center; }
.manifesto__quote {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
  max-width: 980px;
  margin: 0 auto;
}
.manifesto__quote em { font-style: normal; color: var(--accent); }
.manifesto__mark { font-family: var(--serif); font-size: clamp(5rem, 12vw, 9rem); line-height: 0.4; color: var(--violet); display: block; height: 0.5em; margin-bottom: 28px; }
.manifesto__by { margin-top: 46px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* ---------- Services grid ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 700px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative;
  padding: 38px 32px 34px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(36, 20, 72, 0.55) 0%, rgba(22, 10, 46, 0.25) 100%);
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 100% 0%, rgba(243, 194, 75, 0.12), transparent 60%);
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.9); }
.card:hover::before { opacity: 1; }
.card__num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; color: var(--accent); }
.card__ico { width: 44px; height: 44px; margin-bottom: 26px; }
.card h3 { font-size: 1.55rem; margin: 0 0 14px; letter-spacing: -0.02em; }
.card p { color: var(--muted); font-size: 16px; line-height: 1.68; }
.card__list { list-style: none; padding: 0; margin: 22px 0 0; }
.card__list li { position: relative; padding-left: 22px; color: var(--fg-soft); font-size: 15px; padding-block: 5px; }
.card__list li::before { content: "◆"; position: absolute; left: 0; color: var(--accent); font-size: 8px; top: 10px; }

/* ---------- Timeline (Skeleton D core) ---------- */
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before {
  content: ""; position: absolute; left: 19px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--violet), transparent);
}
@media (min-width: 760px) { .timeline::before { left: 27px; } }
.tl-item { position: relative; padding: 0 0 48px 62px; }
@media (min-width: 760px) { .tl-item { padding-left: 84px; padding-bottom: 60px; } }
.tl-item:last-child { padding-bottom: 0; }
.tl-item__node {
  position: absolute; left: 0; top: 0;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-panel);
  border: 1px solid var(--border-strong);
  font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--accent);
  z-index: 2;
}
@media (min-width: 760px) { .tl-item__node { width: 56px; height: 56px; font-size: 15px; } }
.tl-item__phase { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.tl-item h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin: 0 0 12px; }
.tl-item p { color: var(--fg-soft); font-size: 16.5px; max-width: 60ch; }
.tl-item__meta { margin-top: 16px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--accent); }

/* ---------- Stats ---------- */
.stats { display: grid; gap: 8px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { padding: 40px 28px; border: 1px solid var(--border); border-radius: 16px; background: rgba(36, 20, 72, 0.3); }
.stat__num { font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 4.2rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.stat__num span { color: var(--accent); }
.stat__label { margin-top: 14px; color: var(--muted); font-size: 15px; }

/* ---------- Feature split ---------- */
.split { display: grid; gap: 44px; align-items: center; }
@media (min-width: 960px) { .split { grid-template-columns: 1fr 1fr; gap: 72px; } }
.split--rev .split__media { order: -1; }
@media (min-width: 960px) { .split--rev .split__media { order: 1; } }
.split__media { border-radius: 20px; overflow: hidden; border: 1px solid var(--border); position: relative; aspect-ratio: 4 / 3.4; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(200deg, rgba(138, 92, 240, 0.28), transparent 55%, rgba(13, 6, 32, 0.5)); }
.split h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 24px; }
.split p + p { margin-top: 20px; }
.split .arrow-link { margin-top: 30px; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 34px; color: var(--fg-soft); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 6px;
  background: rgba(243, 194, 75, 0.14); border: 1px solid var(--accent);
}
.check-list li::after { content: ""; position: absolute; left: 7px; top: 9px; width: 6px; height: 10px; border: solid var(--accent); border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* ---------- Principles / text cards ---------- */
.principle { padding: 34px 0; border-top: 1px solid var(--border); display: grid; gap: 18px; }
@media (min-width: 800px) { .principle { grid-template-columns: 0.4fr 0.6fr; gap: 48px; } }
.principle__k { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.principle h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 12px; }
.principle p { color: var(--fg-soft); max-width: 56ch; }

/* ---------- Team monograms ---------- */
.team { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .team { grid-template-columns: repeat(3, 1fr); } }
.member { padding: 30px; border: 1px solid var(--border); border-radius: 16px; background: rgba(36, 20, 72, 0.28); transition: border-color 0.4s var(--ease), transform 0.4s var(--ease); }
.member:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.avatar { width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center; font-family: var(--serif); font-weight: 700; font-size: 22px; color: #241100; margin-bottom: 22px; }
.member h3 { font-size: 1.3rem; margin: 0 0 4px; }
.member__role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.member p { color: var(--muted); font-size: 15px; margin-top: 14px; line-height: 1.62; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item summary { list-style: none; cursor: pointer; padding: 28px 44px 28px 0; position: relative; font-family: var(--serif); font-weight: 600; font-size: clamp(1.15rem, 2.4vw, 1.5rem); letter-spacing: -0.01em; transition: color 0.3s var(--ease); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-family: var(--mono); font-size: 26px; color: var(--accent); transition: transform 0.35s var(--ease); }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item summary:hover { color: var(--accent); }
.faq__item p { color: var(--fg-soft); padding: 0 44px 30px 0; max-width: 68ch; }

/* ---------- CTA band ---------- */
.cta {
  text-align: center;
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(138, 92, 240, 0.32), transparent 60%),
    var(--bg-deep);
  border-top: 1px solid var(--border);
}
.cta h2 { font-size: clamp(2.4rem, 6vw, 4.6rem); max-width: 16ch; margin: 0 auto 26px; letter-spacing: -0.03em; font-weight: 500; }
.cta h2 em { font-style: normal; color: var(--accent); }
.cta p { color: var(--fg-soft); max-width: 52ch; margin: 0 auto 40px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; gap: 52px; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 15px 16px;
  background: rgba(13, 6, 32, 0.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--fg); font-family: var(--sans); font-size: 16px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(160, 143, 198, 0.6); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: rgba(13, 6, 32, 0.85); }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 8px; }
.form-note a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.contact-info { display: grid; gap: 30px; }
.info-block { border-top: 1px solid var(--border); padding-top: 22px; }
.info-block__k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.info-block p, .info-block a { color: var(--fg-soft); font-size: 16px; }
.info-block a:hover { color: var(--accent); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-deep); border-top: 1px solid var(--border); padding: 76px 0 34px; }
.footer__top { display: grid; gap: 44px; }
@media (min-width: 820px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; } }
.footer__brand .logo { margin-bottom: 20px; }
.footer__brand p { color: var(--muted); max-width: 34ch; font-size: 15.5px; }
.footer__brand .eyebrow { margin-top: 26px; }
.footer__col h4 { font-family: var(--mono); font-weight: 400; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.footer__col a { color: var(--fg-soft); font-size: 15px; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; }
.footer__bottom p { color: var(--muted); font-size: 13px; }
.footer__bottom .footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__bottom .footer__legal a { color: var(--muted); font-size: 13px; }
.footer__bottom .footer__legal a:hover { color: var(--accent); }

/* ---------- Cookie popup ---------- */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; padding: 24px; background: rgba(0, 0, 0, 0.55); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--bg-panel); padding: 32px 34px; max-width: 480px; border-radius: 16px; border: 1px solid var(--border-strong); box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.85); }
.cookie-popup__label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.cookie-popup__card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.cookie-popup__card p { color: var(--fg-soft); font-size: 14.5px; line-height: 1.62; }
.cookie-popup__card p a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 12px 24px; border: 1px solid var(--border-strong); cursor: pointer; font-size: 14px; font-weight: 600; border-radius: 9999px; transition: all 0.3s var(--ease); }
.cookie-popup__actions button:first-child { color: var(--fg-soft); }
.cookie-popup__actions button:first-child:hover { border-color: var(--fg); color: var(--fg); }
.cookie-popup__actions button:last-child { background: var(--accent); color: #241100; border-color: var(--accent); flex: 1; }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; padding: 150px 0 clamp(60px, 8vw, 110px); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 120% at 85% -10%, rgba(138, 92, 240, 0.3), transparent 55%); z-index: 0; }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.8rem, 8vw, 6.4rem); font-weight: 500; letter-spacing: -0.035em; margin: 22px 0 26px; line-height: 1; }
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { max-width: 58ch; color: var(--fg-soft); font-size: clamp(1.05rem, 1.7vw, 1.28rem); }
.crumbs { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--accent); }

/* ---------- Legal / prose ---------- */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 52px 0 16px; letter-spacing: -0.02em; }
.prose h3 { font-size: 1.25rem; margin: 32px 0 10px; }
.prose p { color: var(--fg-soft); margin-bottom: 18px; font-size: 16.5px; }
.prose ul { color: var(--fg-soft); padding-left: 22px; margin-bottom: 18px; }
.prose li { margin-bottom: 9px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--fg); }
.prose__meta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 40px; }

/* ---------- Thank you ---------- */
.thanks { min-height: 78vh; display: grid; place-items: center; text-align: center; padding: 140px 0 100px; }
.thanks__mark { width: 84px; height: 84px; margin: 0 auto 34px; }
.thanks h1 { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 500; letter-spacing: -0.03em; margin-bottom: 22px; }
.thanks h1 em { font-style: normal; color: var(--accent); }
.thanks p { color: var(--fg-soft); max-width: 48ch; margin: 0 auto 38px; }

/* ---------- Prism decoration ---------- */
.prism-deco { position: absolute; z-index: 1; opacity: 0.5; pointer-events: none; }
