/* Fonts are declared here rather than @import'ed: an import costs an extra
   round trip, and its URL cannot carry the cache-busting version stamp. */
@font-face{font-family:'Cinzel';font-style:normal;font-weight:400 900;font-display:swap;src:url('fonts/cinzel.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:100 900;font-display:swap;src:url('fonts/inter.woff2') format('woff2');}

/* ============================================================
   DRAKARIS — design tokens
   Palette pulled from the brand intro: deep petrol teal ground,
   toxic-green glow, gold display type.
   ============================================================ */
:root {
  --bg:            #050C0E;
  --bg-elev:       #08161A;
  --surface:       rgba(13, 36, 41, .72);
  --surface-solid: #0C2126;
  --surface-hi:    rgba(20, 52, 58, .8);

  --line:      rgba(166, 226, 46, .16);
  --line-soft: rgba(255, 255, 255, .07);

  --acid:     #A6E22E;
  --acid-hi:  #C9FF52;
  --acid-dim: #5E8A16;

  --gold:    #E3B341;
  --gold-hi: #F8E3A6;
  --gold-lo: #A87A1E;

  --text:      #E9F4F0;
  --muted:     #8FA8A5;
  --muted-dim: #63807E;

  --radius:    18px;
  --radius-sm: 12px;
  --container: 1180px;

  --shadow-card: 0 18px 44px -24px rgba(0, 0, 0, .9);
  --glow-acid:   0 0 40px rgba(166, 226, 46, .28);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

/* Any class that sets `display` beats the UA rule for [hidden], which
   silently un-hides elements we toggle from JS. Restate it as a winner. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: var(--acid); text-decoration: none; }
a:hover { color: var(--acid-hi); }

:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--acid); color: #06110A; padding: 12px 20px;
  font-weight: 700; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Ambient background — fog + drifting embers, CSS only
   ============================================================ */
.bg-fx {
  position: fixed; inset: 0; z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(58% 44% at 50% 8%,  rgba(126, 186, 40, .16), transparent 62%),
    radial-gradient(46% 38% at 12% 30%, rgba(22, 118, 118, .20), transparent 66%),
    radial-gradient(50% 42% at 88% 62%, rgba(28, 132, 110, .16), transparent 66%),
    radial-gradient(70% 50% at 50% 108%, rgba(166, 226, 46, .10), transparent 60%),
    var(--bg);
}

.bg-fx::after {
  content: '';
  position: absolute; inset: -20%;
  background:
    radial-gradient(28% 22% at 30% 40%, rgba(166, 226, 46, .09), transparent 70%),
    radial-gradient(24% 20% at 72% 58%, rgba(20, 140, 130, .10), transparent 70%);
  filter: blur(30px);
  animation: fog 34s var(--ease) infinite alternate;
}

@keyframes fog {
  0%   { transform: translate3d(-3%, -2%, 0) scale(1); }
  100% { transform: translate3d(4%, 3%, 0)   scale(1.12); }
}

/* Fine grain so the large flat gradients don't band on cheap panels */
.bg-grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: .35; 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='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.embers { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.ember {
  position: absolute; bottom: -40px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 12px 2px rgba(166, 226, 46, .65);
  opacity: 0;
  animation: rise linear infinite;
}
@keyframes rise {
  0%   { opacity: 0;   transform: translateY(0)        scale(.6); }
  12%  { opacity: .85; }
  75%  { opacity: .5; }
  100% { opacity: 0;   transform: translateY(-104vh) scale(1.25); }
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5, 12, 14, .72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(5, 12, 14, .92);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 72px;
}

.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 30px; height: 30px; flex: none; }
.brand-name {
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: .16em;
  background: linear-gradient(175deg, var(--gold-hi) 4%, var(--gold) 42%, var(--gold-lo) 96%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  color: var(--muted); font-size: 15px; font-weight: 500;
  transition: color .2s;
}
.nav a:hover { color: var(--text); }

/* .nav a out-specifies .btn-primary, so restate the button colours here
   or the CTA in the header renders as muted text on a bright fill. */
.nav a.btn-primary,
.nav a.btn-primary:hover { color: #071206; }
.nav a.btn-ghost,
.nav a.btn-ghost:hover { color: var(--text); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  color: var(--text); width: 42px; height: 42px; border-radius: 10px;
  cursor: pointer; align-items: center; justify-content: center;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px;
  font-family: inherit; font-size: 15px; font-weight: 700;
  letter-spacing: .02em;
  border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; text-align: center;
  transition: transform .2s var(--ease), box-shadow .25s, background .25s, border-color .25s, color .2s;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(180deg, var(--acid-hi), var(--acid) 55%, #86BC1F);
  color: #071206;
  box-shadow: 0 10px 30px -12px rgba(166, 226, 46, .75);
}
.btn-primary:hover {
  color: #071206;
  box-shadow: 0 16px 40px -12px rgba(166, 226, 46, .9);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, .03);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: rgba(166, 226, 46, .45);
  background: rgba(166, 226, 46, .07);
  color: var(--text);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-block { width: 100%; }

/* ============================================================
   Section furniture
   ============================================================ */
section { position: relative; }
.section { padding: clamp(64px, 9vw, 118px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 58px); }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase;
  color: var(--acid);
  padding: 7px 15px 7px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(166, 226, 46, .05);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--acid); box-shadow: 0 0 10px 2px rgba(166, 226, 46, .8);
}

h1, h2, h3 { margin: 0 0 18px; line-height: 1.14; font-weight: 700; letter-spacing: -.01em; }

h2 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 700;
  letter-spacing: .01em;
}
h3 { font-size: 20px; }

.lede { color: var(--muted); font-size: clamp(16px, 1.7vw, 18.5px); margin: 0; }

.gold {
  background: linear-gradient(175deg, var(--gold-hi) 2%, var(--gold) 46%, var(--gold-lo) 98%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.acid { color: var(--acid); }

/* ============================================================
   Hero
   ============================================================ */
.hero { padding: clamp(56px, 8vw, 104px) 0 clamp(56px, 7vw, 92px); text-align: center; }
.hero-inner { max-width: 900px; margin-inline: auto; }

.wordmark {
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 800;
  font-size: clamp(52px, 12.5vw, 132px);
  line-height: .96;
  letter-spacing: .07em;
  margin: 0 0 6px;
  background: linear-gradient(174deg, var(--gold-hi) 2%, var(--gold) 34%, #B8892A 68%, var(--gold-lo) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 26px rgba(166, 226, 46, .34)) drop-shadow(0 3px 2px rgba(0, 0, 0, .6));
}

.wordmark-sub {
  font-size: clamp(10px, 1.5vw, 13px);
  letter-spacing: .58em; text-transform: uppercase;
  color: var(--acid); font-weight: 600;
  margin: 0 0 clamp(30px, 4vw, 44px); padding-left: .58em;
}

.hero h1 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(27px, 4.6vw, 50px);
  margin-bottom: 22px;
}

.hero .lede { max-width: 660px; margin: 0 auto clamp(30px, 4vw, 40px); }

.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-note {
  margin-top: clamp(34px, 5vw, 50px);
  font-size: 13.5px; color: var(--muted-dim);
  max-width: 620px; margin-inline: auto;
  padding-top: 24px; border-top: 1px solid var(--line-soft);
}

/* ============================================================
   Cards / grids
   ============================================================ */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 28px 32px;
  box-shadow: var(--shadow-card);
  transition: border-color .3s, transform .3s var(--ease), background .3s;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; inset: 0 0 auto; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(166, 226, 46, .5), transparent);
  opacity: 0; transition: opacity .35s;
}
.card:hover { border-color: rgba(166, 226, 46, .3); transform: translateY(-4px); }
.card:hover::before { opacity: 1; }

.card-icon {
  width: 46px; height: 46px; margin-bottom: 20px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(166, 226, 46, .08);
  border: 1px solid var(--line);
  color: var(--acid);
}
.card-icon svg { width: 23px; height: 23px; }
.card h3 { margin-bottom: 11px; }
.card p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* ============================================================
   Process
   ============================================================ */
.steps { counter-reset: step; display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.step {
  position: relative;
  padding: 30px 26px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 36, 41, .6), rgba(8, 22, 26, .35));
}
.step-num {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 34px; font-weight: 800; line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(175deg, var(--gold-hi), var(--gold-lo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step h3 { font-size: 18px; margin-bottom: 9px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

/* ============================================================
   Capability list
   ============================================================ */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; }
.checks li { display: flex; gap: 13px; align-items: flex-start; color: var(--muted); font-size: 15.8px; }
.checks svg { width: 20px; height: 20px; flex: none; color: var(--acid); margin-top: 2px; }
.checks strong { color: var(--text); font-weight: 600; }

/* The intro column is much shorter than the list beside it — centring
   stops it stranding at the top of a tall panel. */
.panel .grid-2 { align-items: center; }

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 42px);
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(166, 226, 46, .07), transparent 58%),
    var(--surface);
  box-shadow: var(--shadow-card);
}

/* ============================================================
   Showreel
   ============================================================ */
.showreel {
  position: relative;
  max-width: 980px; margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #040F11;
  box-shadow: var(--shadow-card), var(--glow-acid);
  /* The frame is drawn before the video decodes, so the section never
     collapses and reflows the page under the visitor. */
  aspect-ratio: 16 / 9;
}
.showreel-video {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  background: #040F11;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color .25s;
}
.faq details[open] { border-color: rgba(166, 226, 46, .28); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 20px 56px 20px 24px;
  font-weight: 600; font-size: 16.5px;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 24px; top: 50%;
  width: 10px; height: 10px; margin-top: -6px;
  border-right: 2px solid var(--acid); border-bottom: 2px solid var(--acid);
  transform: rotate(45deg); transition: transform .25s;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq .faq-body { padding: 0 24px 22px; color: var(--muted); font-size: 15.5px; }
.faq .faq-body p { margin: 0; }

/* ============================================================
   Lead form
   ============================================================ */
.form-section { scroll-margin-top: 84px; }
.form-wrap {
  display: grid; gap: clamp(28px, 4vw, 52px);
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  align-items: start;
}

.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3.4vw, 38px);
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(166, 226, 46, .08), transparent 55%),
    var(--surface-solid);
  box-shadow: var(--shadow-card), var(--glow-acid);
}

.field { margin-bottom: 17px; }
.field label {
  display: block; margin-bottom: 7px;
  font-size: 13.5px; font-weight: 600; letter-spacing: .02em;
  color: var(--text);
}
.field .req { color: var(--acid); }
.field .hint { font-weight: 400; color: var(--muted-dim); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  font-family: inherit; font-size: 15.5px; color: var(--text);
  background: rgba(4, 12, 14, .7);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 11px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  appearance: none;
}
.field textarea { min-height: 118px; resize: vertical; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' fill='none' stroke='%23A6E22E' stroke-width='2'%3E%3Cpath d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}
.field select option { background: #0A1E22; color: var(--text); }

.field input::placeholder,
.field textarea::placeholder { color: var(--muted-dim); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--acid);
  box-shadow: 0 0 0 3px rgba(166, 226, 46, .16);
  background: rgba(6, 18, 20, .9);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #E3644A; }
.field-error { display: none; margin-top: 6px; font-size: 13px; color: #F08A72; }
.field.has-error .field-error { display: block; }

.field-row { display: grid; gap: 17px; grid-template-columns: 1fr 1fr; }

.consent {
  display: flex; gap: 12px; align-items: flex-start;
  margin: 22px 0 20px;
  font-size: 13.5px; color: var(--muted); line-height: 1.55;
}
/* Native checkbox renders as a stark white square on this dark card,
   so draw our own. */
.consent input {
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px; flex: none; margin-top: 1px;
  display: grid; place-content: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 6px;
  background: rgba(4, 12, 14, .7);
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.consent input::before {
  content: ''; width: 11px; height: 11px;
  transform: scale(0);
  transition: transform .16s var(--ease);
  box-shadow: inset 1em 1em #071206;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.consent input:hover { border-color: rgba(166, 226, 46, .5); }
.consent input:checked { background: var(--acid); border-color: var(--acid); }
.consent input:checked::before { transform: scale(1); }
.consent.has-error input { border-color: #E3644A; }
.consent a { text-decoration: underline; text-underline-offset: 2px; }

/* Honeypot — hidden from people, visible to naive bots */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

.form-status {
  display: none;
  margin-top: 18px; padding: 14px 17px;
  border-radius: 11px; font-size: 14.5px;
}
.form-status.is-error {
  display: block;
  background: rgba(224, 90, 62, .12);
  border: 1px solid rgba(224, 90, 62, .42);
  color: #F5A793;
}

.form-success { display: none; text-align: center; padding: 22px 6px 10px; }
.form-success.is-visible { display: block; }
.form-success .tick {
  width: 62px; height: 62px; margin: 0 auto 20px;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(166, 226, 46, .12);
  border: 1px solid rgba(166, 226, 46, .45);
  color: var(--acid);
}
.form-success h3 { font-family: 'Cinzel', Georgia, serif; font-size: 24px; }
.form-success p { color: var(--muted); margin: 0; }

.form-aside h2 { margin-bottom: 20px; }
.form-aside .lede { margin-bottom: 28px; }

.btn[aria-busy="true"] { opacity: .72; pointer-events: none; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 54px 0 40px;
  background: rgba(4, 10, 12, .6);
}
.footer-grid {
  display: grid; gap: 32px;
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
  margin-bottom: 36px;
}
.footer-grid h4 {
  margin: 0 0 14px; font-size: 12.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted-dim); font-weight: 700;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a { color: var(--muted); font-size: 15px; }
.footer-links a:hover { color: var(--acid); }
.footer-about p { color: var(--muted); font-size: 15px; margin: 14px 0 0; max-width: 400px; }

.disclaimer {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  font-size: 13.5px; color: var(--muted-dim);
  background: rgba(255, 255, 255, .015);
  margin-bottom: 26px;
}

.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--line-soft);
  font-size: 13.5px; color: var(--muted-dim);
}

/* ============================================================
   Legal pages (privacy / terms)
   ============================================================ */
.doc { max-width: 800px; margin-inline: auto; padding: clamp(46px, 7vw, 84px) 0; }
.doc h1 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(30px, 5vw, 44px);
  margin-bottom: 10px;
}
.doc .doc-meta { color: var(--muted-dim); font-size: 14px; margin-bottom: 40px; }
.doc h2 { font-size: clamp(21px, 2.6vw, 26px); margin: 40px 0 14px; }
.doc p, .doc li { color: var(--muted); font-size: 16px; }
.doc ul { padding-left: 22px; display: grid; gap: 8px; }
.doc a { text-decoration: underline; text-underline-offset: 2px; }
.doc code {
  font-size: .92em; padding: 2px 6px; border-radius: 5px;
  background: rgba(166, 226, 46, .09); color: var(--acid);
}

/* A wide table must scroll inside its own box — never the page body. */
.doc-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  margin: 18px 0 8px;
  background: rgba(255, 255, 255, .015);
}
.doc-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.doc-table th, .doc-table td {
  padding: 12px 15px; text-align: left; vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  font-size: 14.5px;
}
.doc-table th {
  font-size: 11px; text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted-dim); font-weight: 700; white-space: nowrap;
}
.doc-table td { color: var(--muted); }
.doc-table tbody tr:last-child th,
.doc-table tbody tr:last-child td { border-bottom: 0; }

/* ============================================================
   Cookie consent banner
   Anchored to the bottom rather than covering the page — a full
   overlay blocks the Ads review renderer from seeing the content.
   ============================================================ */
.cc {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 200; padding: 14px;
  pointer-events: none;
}
.cc-card {
  max-width: 1120px; margin-inline: auto;
  pointer-events: auto;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(166, 226, 46, .07), transparent 55%),
    #08181C;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, .95), var(--glow-acid);
  opacity: 0; transform: translateY(18px);
  transition: opacity .26s var(--ease), transform .26s var(--ease);
  max-height: 82vh; overflow-y: auto;
}
.cc.is-in .cc-card { opacity: 1; transform: none; }

.cc-main {
  display: flex; align-items: center; justify-content: space-between;
  gap: 26px; flex-wrap: wrap;
}
.cc-copy h2 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 17px; margin: 0 0 6px; letter-spacing: .03em;
}
.cc-copy p { margin: 0; color: var(--muted); font-size: 14px; max-width: 660px; }
.cc-copy a { text-decoration: underline; text-underline-offset: 2px; }

.cc-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cc-btn { padding: 11px 19px; font-size: 14px; }

.cc-prefs {
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  display: grid; gap: 18px;
}
.cc-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 22px;
}
.cc-row h3 {
  font-size: 15px; margin: 0 0 5px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.cc-row p { margin: 0; color: var(--muted); font-size: 13.5px; max-width: 680px; }
.cc-always {
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--acid); border: 1px solid var(--line);
  padding: 3px 9px; border-radius: 20px; font-weight: 700;
}
.cc-prefs-actions { display: flex; justify-content: flex-end; }

.cc-switch { position: relative; flex: none; width: 46px; height: 26px; cursor: pointer; }
.cc-switch input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.cc-switch > span {
  position: absolute; inset: 0; border-radius: 20px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  transition: background .2s, border-color .2s;
}
.cc-switch > span::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--muted); transition: transform .2s var(--ease), background .2s;
}
.cc-switch input:checked + span { background: var(--acid); border-color: var(--acid); }
.cc-switch input:checked + span::after { transform: translateX(20px); background: #071206; }
.cc-switch input:focus-visible + span { outline: 2px solid var(--acid); outline-offset: 3px; }
.cc-switch.is-locked { opacity: .55; cursor: not-allowed; }
.cc-switch.is-locked input { cursor: not-allowed; }

.cc-link {
  background: none; border: 0; padding: 0;
  font: inherit; color: var(--muted); cursor: pointer;
}
.cc-link:hover { color: var(--acid); }

@media (max-width: 720px) {
  .cc { padding: 10px; }
  .cc-card { padding: 20px 18px; }
  .cc-actions { width: 100%; }
  .cc-actions .cc-btn { flex: 1 1 100%; }
  .cc-row { flex-direction: row; gap: 14px; }
  .cc-prefs-actions .cc-btn { width: 100%; }
}

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
  .form-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav {
    display: none;
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #071316;
    border-block: 1px solid var(--line);
    padding: 8px 22px 18px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
  .nav .btn { margin-top: 14px; }
  .nav-toggle { display: inline-flex; }
  .field-row { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .embers { display: none; }
}
