/* Driks — nettside / landingsside */
:root {
  --ink: #0A0A0B;
  --ink-2: #131316;
  --ink-3: #1C1C20;
  --ink-4: #2A2A30;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --fg: #F4F1EA;
  --fg-2: #C9C5BB;
  --fg-3: #8A8780;
  --fg-4: #56544E;
  --gold: #E8B65A;
  --gold-2: #D49B3A;
  --green: #6EE48F;
  --green-2: #36B85A;
  --red: #FF7A6A;
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--fg);
  font-family: 'Geist', -apple-system, system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
.mono { font-family: 'Geist Mono', ui-monospace, monospace; font-feature-settings: 'tnum' 1; }
.serif { font-family: 'Instrument Serif', 'Times New Roman', serif; font-weight: 400; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  font-size: 12px; letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.eyebrow.green { color: var(--green); }
.eyebrow.muted { color: var(--fg-3); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 52px; padding: 0 24px; border-radius: 14px;
  font-family: inherit; font-size: 15px; font-weight: 600; letter-spacing: -0.2px;
  cursor: pointer; border: none; transition: transform .15s ease, background .15s ease, border-color .15s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--gold); color: #1A1206; box-shadow: 0 14px 32px -14px rgba(232,182,90,0.65); }
.btn-primary:hover { background: #F2C570; }
.btn-green { background: var(--green); color: #0E2014; box-shadow: 0 14px 32px -14px rgba(110,228,143,0.6); }
.btn-ghost { background: transparent; color: var(--fg); border: 1px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--fg-3); background: rgba(255,255,255,0.03); }
.btn-sm { height: 44px; padding: 0 18px; font-size: 14px; border-radius: 12px; }

/* ───────── NAV ───────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .25s, border-color .25s, backdrop-filter .25s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,11,0.72);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-size: 22px; letter-spacing: -0.5px; }
.brand .mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(145deg, #15130F, #0A0A0B);
  border: 1px solid rgba(232,182,90,0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 12px 30px -18px rgba(232,182,90,0.72);
  display: grid; place-items: center;
}
.brand .mark svg {
  width: 23px;
  height: 23px;
  overflow: visible;
}
.brand .mark circle {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.1;
}
.brand .mark path {
  fill: none;
  stroke: var(--green);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brand .mark path:last-child {
  stroke: var(--gold);
  stroke-width: 1.7;
  opacity: 0.9;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; color: var(--fg-2); transition: color .15s; }
.nav-links a:hover { color: var(--fg); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
@media (max-width: 860px) { .nav-links { display: none; } }

/* ───────── HERO ───────── */
.hero { position: relative; padding: 168px 0 90px; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(70% 50% at 22% 8%, rgba(232,182,90,0.10) 0%, transparent 60%),
              radial-gradient(60% 50% at 92% 30%, rgba(110,228,143,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 40px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 100px;
  background: rgba(232,182,90,0.08); border: 1px solid rgba(232,182,90,0.22);
  font-size: 12.5px; color: var(--gold); margin-bottom: 26px;
}
.hero-tag .dot { width: 6px; height: 6px; border-radius: 4px; background: var(--green); }
.hero h1 {
  font-family: 'Instrument Serif', serif; font-weight: 400;
  font-size: clamp(48px, 6.4vw, 88px); line-height: 0.98; letter-spacing: -1.5px;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero .lede {
  font-size: clamp(17px, 1.7vw, 20px); color: var(--fg-2);
  margin-top: 26px; max-width: 520px; line-height: 1.55; text-wrap: pretty;
}
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-note { margin-top: 22px; font-size: 13px; color: var(--fg-4); display: flex; align-items: center; gap: 8px; }

/* hero phone */
.phone-stage { position: relative; display: flex; justify-content: center; align-items: center; min-height: 560px; }
.phone {
  width: 286px; height: 580px; border-radius: 42px; position: relative;
  background: var(--ink); border: 9px solid #15151A;
  box-shadow: 0 50px 90px -30px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.05),
              inset 0 0 0 1px rgba(255,255,255,0.03);
  transform: rotate(-3deg); overflow: hidden;
}
.phone .island {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 26px; border-radius: 16px; background: #000; z-index: 10;
}
.phone-screen { position: absolute; inset: 0; padding: 52px 20px 20px; display: flex; flex-direction: column; }
.ph-row { display: flex; align-items: center; justify-content: space-between; }
.ph-greet { font-size: 11px; color: var(--fg-3); letter-spacing: 0.4px; text-transform: uppercase; }
.ph-sub { font-size: 11px; color: var(--fg-4); margin-top: 2px; }
.ph-bell { width: 32px; height: 32px; border-radius: 16px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--fg-2); }
.ph-avail { font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--fg-3); margin-bottom: 4px; }
.ph-bal { font-size: 58px; font-weight: 500; letter-spacing: -2.6px; color: var(--green); line-height: 1; }
.ph-est { font-size: 11px; color: var(--fg-4); margin-top: 10px; display: flex; align-items: center; gap: 5px; }
.ph-cashout {
  height: 56px; border-radius: 18px; background: var(--green); color: #0E2014;
  display: flex; align-items: center; justify-content: space-between; padding: 0 18px;
  font-size: 15px; font-weight: 600; box-shadow: 0 12px 28px -10px rgba(110,228,143,0.5);
  white-space: nowrap;
}
.ph-cashout > span { white-space: nowrap; }
.ph-vipps { width: 26px; height: 26px; border-radius: 13px; background: #FF5B24; display: grid; place-items: center; }
.ph-card {
  border-radius: 18px; padding: 14px; position: relative; overflow: hidden;
  background: radial-gradient(120% 100% at 0% 0%, #2A1F0E 0%, #0F0A04 60%);
  border: 1px solid rgba(232,182,90,0.25);
}
.ph-card .ttl { font-family: 'Instrument Serif', serif; font-size: 22px; color: var(--gold); line-height: 1; }
.ph-card .sub { font-size: 11px; color: var(--fg-3); margin-top: 5px; }
.ph-tabs { display: flex; justify-content: space-around; padding-top: 12px; border-top: 1px solid var(--line); }
.ph-tab { width: 22px; height: 22px; border-radius: 6px; color: var(--fg-4); display: grid; place-items: center; }
.ph-tab.on { color: var(--gold); }

/* floating push */
.push-float {
  position: absolute; z-index: 20; top: 64px; right: -8px; width: 280px;
  border-radius: 18px; padding: 12px 14px;
  background: rgba(28,28,32,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex; gap: 11px; align-items: flex-start;
  box-shadow: 0 24px 50px rgba(0,0,0,0.55);
  animation: floaty 5s ease-in-out infinite;
}
.push-float .ic {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(145deg, #15130F, #0A0A0B);
  border: 1px solid rgba(232,182,90,0.42);
  display: grid; place-items: center;
}
.push-float .ic svg {
  width: 25px;
  height: 25px;
  overflow: visible;
}
.push-float .ic circle {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.1;
}
.push-float .ic path {
  fill: none;
  stroke: var(--green);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.push-float .ic path:last-child {
  stroke: var(--gold);
  stroke-width: 1.7;
  opacity: 0.9;
}
.push-float .t { font-size: 12.5px; font-weight: 600; }
.push-float .b { font-size: 12.5px; color: var(--fg-2); margin-top: 2px; line-height: 1.35; }
.push-float .when { font-size: 10.5px; color: var(--fg-4); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.coin-float {
  position: absolute; z-index: 5; bottom: 60px; left: -6px;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px 12px 12px; border-radius: 16px;
  background: rgba(19,19,22,0.92); border: 1px solid var(--line);
  box-shadow: 0 20px 44px rgba(0,0,0,0.5);
  animation: floaty 6s ease-in-out infinite 0.6s;
}
.coin-float .amt { font-family: 'Geist Mono', monospace; font-size: 17px; color: var(--green); }
.coin-float .lbl { font-size: 11px; color: var(--fg-3); }
.coin-float .ring { width: 36px; height: 36px; border-radius: 18px; background: rgba(110,228,143,0.12); display: grid; place-items: center; color: var(--green); }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .phone-stage { margin-top: 30px; }
  .push-float { right: auto; left: 50%; transform: translateX(40px); }
}

/* ───────── LOGO / TRUST BAR ───────── */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px 0; }
.trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.trust-label { font-size: 12px; color: var(--fg-4); letter-spacing: 0.4px; }
.trust-logos { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.trust-logos span { font-size: 17px; color: var(--fg-3); font-weight: 500; letter-spacing: -0.3px; opacity: 0.8; }

/* ───────── SECTION SHELL ───────── */
section { position: relative; }
.sec { padding: 100px 0; }
.sec-head { max-width: 680px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 {
  font-size: clamp(32px, 4vw, 50px); line-height: 1.05; letter-spacing: -1.3px;
  margin-top: 18px; font-weight: 600; text-wrap: balance;
}
.sec-head h2 .serif { font-weight: 400; font-style: italic; color: var(--gold); }
.sec-head p { font-size: 18px; color: var(--fg-2); margin-top: 18px; line-height: 1.55; text-wrap: pretty; }

/* problem split */
.problem { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.prob-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.prob-quote { font-family: 'Instrument Serif', serif; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.15; letter-spacing: -0.6px; text-wrap: balance; }
.prob-quote .strike { color: var(--fg-4); text-decoration: line-through; text-decoration-color: var(--red); }
.prob-quote em { font-style: italic; color: var(--green); }
.prob-list { display: flex; flex-direction: column; gap: 16px; }
.prob-card {
  padding: 22px; border-radius: 18px; background: var(--ink); border: 1px solid var(--line);
  display: flex; gap: 16px; align-items: flex-start;
}
.prob-card .badge {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: rgba(255,122,106,0.10); border: 1px solid rgba(255,122,106,0.22);
  display: grid; place-items: center; color: var(--red);
}
.prob-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.prob-card p { font-size: 13.5px; color: var(--fg-3); line-height: 1.5; }
@media (max-width: 860px) { .prob-grid { grid-template-columns: 1fr; gap: 36px; } }

/* pillars */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar {
  position: relative; border-radius: 24px; padding: 30px; overflow: hidden;
  background: var(--ink-2); border: 1px solid var(--line);
  transition: transform .25s ease, border-color .25s;
}
.pillar:hover { transform: translateY(-4px); border-color: var(--line-2); }
.pillar .pic {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 22px;
}
.pillar.p1 .pic { background: rgba(110,228,143,0.12); color: var(--green); }
.pillar.p2 .pic { background: rgba(232,182,90,0.12); color: var(--gold); }
.pillar.p3 .pic { background: rgba(150,170,255,0.12); color: #9DB0FF; }
.pillar h3 { font-size: 22px; letter-spacing: -0.5px; font-weight: 600; margin-bottom: 10px; }
.pillar p { font-size: 14.5px; color: var(--fg-3); line-height: 1.55; }
.pillar .feat { margin-top: 20px; display: flex; flex-direction: column; gap: 9px; }
.pillar .feat li { list-style: none; font-size: 13.5px; color: var(--fg-2); display: flex; align-items: center; gap: 9px; }
.pillar .feat .ck { color: var(--green); flex-shrink: 0; }
@media (max-width: 860px) { .pillars { grid-template-columns: 1fr; } }

/* how it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.step { padding: 0 26px; position: relative; }
.step:not(:last-child)::after {
  content: ''; position: absolute; top: 24px; right: -1px; width: 1px; height: calc(100% - 24px);
  background: var(--line);
}
.step .num {
  width: 48px; height: 48px; border-radius: 24px; display: grid; place-items: center;
  background: var(--ink-2); border: 1px solid var(--line-2); color: var(--gold);
  font-family: 'Geist Mono', monospace; font-size: 18px; margin-bottom: 22px;
}
.step .time { font-size: 12px; color: var(--green); font-family: 'Geist Mono', monospace; margin-bottom: 8px; }
.step h4 { font-size: 19px; font-weight: 600; letter-spacing: -0.3px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--fg-3); line-height: 1.55; }
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .step { padding: 0; }
  .step::after { display: none !important; }
}

/* black card showcase */
.club { background: radial-gradient(120% 80% at 80% 0%, #1A1206 0%, var(--ink) 60%); border-top: 1px solid var(--line); }
.club-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.bigcard {
  aspect-ratio: 1.586/1; border-radius: 26px; position: relative; overflow: hidden;
  background: radial-gradient(120% 100% at 0% 0%, #2C2110 0%, #0A0703 70%);
  border: 1px solid rgba(232,182,90,0.3);
  box-shadow: 0 50px 90px -30px rgba(0,0,0,0.8), inset 0 0 0 1px rgba(232,182,90,0.08);
  transform: rotate(2.5deg);
}
.bigcard .shine {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(232,182,90,0.18) 50%, transparent 70%);
  background-size: 200% 100%; animation: shine 5s linear infinite;
}
.bigcard .gridtex {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: linear-gradient(rgba(232,182,90,0.6) 1px, transparent 1px), linear-gradient(90deg, rgba(232,182,90,0.6) 1px, transparent 1px);
  background-size: 16px 16px;
}
@keyframes shine { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
.bigcard .top { position: absolute; top: 30px; left: 32px; right: 32px; display: flex; justify-content: space-between; align-items: flex-start; }
.bigcard .name { font-family: 'Instrument Serif', serif; font-size: 44px; color: var(--gold); line-height: 0.94; letter-spacing: -0.5px; }
.bigcard .name em { font-style: italic; }
.bigcard .chip { width: 48px; height: 36px; border-radius: 7px; background: linear-gradient(135deg, #E8B65A, #8E6A2A); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2); }
.bigcard .bottom { position: absolute; bottom: 28px; left: 32px; right: 32px; }
.bigcard .holder { font-family: 'Geist Mono', monospace; font-size: 19px; color: var(--gold); letter-spacing: 3px; }
.bigcard .meta { display: flex; justify-content: space-between; margin-top: 8px; font-family: 'Geist Mono', monospace; font-size: 12px; color: rgba(232,182,90,0.6); letter-spacing: 1.4px; }
.club-perks { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.perk { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 16px; background: var(--ink-2); border: 1px solid var(--line); }
.perk .pic { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg, rgba(232,182,90,0.18), rgba(232,182,90,0.04)); border: 1px solid rgba(232,182,90,0.2); display: grid; place-items: center; color: var(--gold); font-family: 'Instrument Serif', serif; font-size: 20px; flex-shrink: 0; }
.perk .nm { font-size: 14px; }
.perk .ds { font-size: 11.5px; color: var(--fg-4); margin-top: 2px; }
.perk .disc { margin-left: auto; padding: 5px 11px; border-radius: 100px; background: rgba(232,182,90,0.12); color: var(--gold); font-size: 12.5px; font-weight: 600; border: 1px solid rgba(232,182,90,0.22); }
@media (max-width: 860px) { .club-grid { grid-template-columns: 1fr; gap: 40px; } .bigcard { transform: none; } }

/* audience tabs */
.aud-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 44px; flex-wrap: wrap; }
.aud-tab {
  padding: 12px 22px; border-radius: 100px; background: var(--ink-2); border: 1px solid var(--line);
  color: var(--fg-3); font-family: inherit; font-size: 14.5px; font-weight: 500; cursor: pointer;
  transition: all .18s;
}
.aud-tab.on { background: var(--gold); color: #1A1206; border-color: var(--gold); }
.aud-tab:not(.on):hover { color: var(--fg); border-color: var(--line-2); }
.aud-panel { display: none; animation: fadeUp .4s ease; }
.aud-panel.on { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.aud-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 28px; padding: 48px;
}
.aud-card .big { font-family: 'Instrument Serif', serif; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.08; letter-spacing: -0.6px; }
.aud-card .big em { font-style: italic; color: var(--gold); }
.aud-points { display: flex; flex-direction: column; gap: 18px; }
.aud-point { display: flex; gap: 14px; align-items: flex-start; }
.aud-point .ck { width: 26px; height: 26px; border-radius: 13px; background: rgba(110,228,143,0.12); color: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.aud-point h5 { font-size: 16px; font-weight: 600; margin-bottom: 3px; }
.aud-point p { font-size: 14px; color: var(--fg-3); line-height: 1.5; }
@media (max-width: 860px) { .aud-card { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; } }

/* stats band */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-b { text-align: center; padding: 10px; }
.stat-b .n { font-family: 'Geist Mono', monospace; font-size: clamp(36px, 4.6vw, 56px); letter-spacing: -2px; line-height: 1; }
.stat-b .n.gold { color: var(--gold); }
.stat-b .n.green { color: var(--green); }
.stat-b .l { font-size: 13px; color: var(--fg-3); margin-top: 12px; }
@media (max-width: 700px) { .stats { grid-template-columns: 1fr 1fr; gap: 36px 16px; } }

/* pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price {
  border-radius: 24px; padding: 32px; background: var(--ink-2); border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.price.feature { background: radial-gradient(120% 100% at 50% 0%, #1F1708 0%, var(--ink-2) 60%); border-color: rgba(232,182,90,0.35); }
.price .tier { font-size: 13px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--fg-3); }
.price.feature .tier { color: var(--gold); }
.price .amt { font-family: 'Geist Mono', monospace; font-size: 42px; letter-spacing: -1.5px; margin-top: 14px; }
.price .amt small { font-family: 'Geist', sans-serif; font-size: 14px; color: var(--fg-4); letter-spacing: 0; }
.price .desc { font-size: 13.5px; color: var(--fg-3); margin-top: 8px; min-height: 38px; }
.price ul { list-style: none; margin: 22px 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.price li { font-size: 13.5px; color: var(--fg-2); display: flex; align-items: center; gap: 10px; }
.price li .ck { color: var(--green); flex-shrink: 0; }
.price .ribbon { position: absolute; top: 18px; right: 18px; padding: 4px 10px; border-radius: 100px; background: var(--gold); color: #1A1206; font-size: 11px; font-weight: 600; letter-spacing: 0.4px; }
.price { position: relative; }
.price-note { text-align: center; margin-top: 26px; font-size: 13.5px; color: var(--fg-4); }
.price-note b { color: var(--green); font-weight: 500; }
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; } }

/* final cta */
.cta { padding: 110px 0; text-align: center; position: relative; overflow: hidden; }
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 30%, rgba(232,182,90,0.12) 0%, transparent 60%);
}
.cta h2 { position: relative; font-family: 'Instrument Serif', serif; font-size: clamp(40px, 6vw, 76px); line-height: 1; letter-spacing: -1.4px; text-wrap: balance; }
.cta h2 em { font-style: italic; color: var(--gold); }
.cta p { position: relative; font-size: 18px; color: var(--fg-2); margin: 24px auto 0; max-width: 480px; }
.cta-actions { position: relative; display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.demo-form {
  position: relative;
  max-width: 860px;
  margin: 44px auto 0;
  padding: 26px;
  border-radius: 24px;
  background: rgba(19,19,22,0.82);
  border: 1px solid var(--line);
  box-shadow: 0 32px 80px -48px rgba(0,0,0,0.85);
  text-align: left;
}
.demo-form .honey { display: none; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.demo-form label { display: flex; flex-direction: column; gap: 8px; }
.demo-form label.wide { grid-column: 1 / -1; }
.demo-form span {
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(10,10,11,0.72);
  color: var(--fg);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.demo-form input,
.demo-form select { height: 50px; padding: 0 14px; }
.demo-form textarea { min-height: 116px; resize: vertical; padding: 14px; }
.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  border-color: rgba(232,182,90,0.58);
  background: rgba(10,10,11,0.9);
  box-shadow: 0 0 0 3px rgba(232,182,90,0.10);
}
.demo-form ::placeholder { color: var(--fg-4); }
.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.form-note {
  flex: 1;
  min-width: 220px;
  font-size: 13px !important;
  color: var(--green) !important;
  margin: 0 !important;
}
.privacy-note {
  margin: 16px 0 0 !important;
  max-width: none !important;
  color: var(--fg-4) !important;
  font-size: 12.5px !important;
  line-height: 1.5;
}
.contact-note {
  margin: 8px 0 0 !important;
  max-width: none !important;
  color: var(--fg-3) !important;
  font-size: 13px !important;
  line-height: 1.5;
}
.contact-note a {
  color: var(--fg-2);
  text-decoration: underline;
  text-decoration-color: rgba(201,197,187,0.35);
  text-underline-offset: 3px;
}
.contact-note a:hover { color: var(--fg); }
@media (max-width: 700px) {
  .demo-form { padding: 20px; border-radius: 20px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* footer */
.foot { border-top: 1px solid var(--line); padding: 60px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.foot-brand p { font-size: 13.5px; color: var(--fg-4); margin-top: 16px; max-width: 280px; line-height: 1.55; }
.foot h6 { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--fg-3); margin-bottom: 16px; }
.foot a { display: block; font-size: 14px; color: var(--fg-2); margin-bottom: 11px; transition: color .15s; }
.foot a:hover { color: var(--fg); }
.foot-legal {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 760px;
}
.foot-legal p {
  color: var(--fg-4);
  font-size: 12.5px;
  line-height: 1.6;
}
.foot-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); font-size: 13px; color: var(--fg-4); flex-wrap: wrap; gap: 14px; }
.foot-bottom a {
  display: inline;
  margin: 0;
  color: var(--fg-2);
  font-size: inherit;
}
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }

/* cookie consent */
.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  width: min(440px, calc(100vw - 44px));
  padding: 16px;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  background: rgba(19,19,22,0.86);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 70px -35px rgba(0,0,0,0.85);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p {
  color: var(--fg-2);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 14px;
}
.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 560px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
  }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}

/* reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .push-float, .coin-float, .bigcard .shine { animation: none; } }
