/* =========================================================
   AI Unite — Premium AI Platform
   Design System / Global Styles
   ========================================================= */

:root {
  /* Core palette — dark mode first */
  --bg: #070a14;
  --bg-2: #0b1020;
  --bg-3: #101630;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #eef1f8;
  --text-soft: #aab2c8;
  --text-dim: #7c889f;

  --brand: #6d8cff;
  --brand-2: #9a6bff;
  --brand-3: #36d1c4;
  --accent: #ff7eb6;

  --grad-brand: linear-gradient(135deg, #6d8cff 0%, #9a6bff 50%, #36d1c4 100%);
  --grad-soft: linear-gradient(135deg, rgba(109,140,255,.18), rgba(154,107,255,.12));
  --grad-text: linear-gradient(90deg, #8aa2ff, #b58bff 50%, #4fe3d4);

  --glow: 0 0 60px rgba(109,140,255,.35);
  --shadow-lg: 0 30px 80px -20px rgba(4,8,20,.75);
  --shadow-md: 0 16px 40px -16px rgba(4,8,20,.6);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --maxw: 1200px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;

  --header-h: 72px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient background glows */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(800px 500px at 12% -5%, rgba(109,140,255,.18), transparent 60%),
    radial-gradient(700px 500px at 95% 8%, rgba(154,107,255,.15), transparent 60%),
    radial-gradient(900px 600px at 50% 110%, rgba(54,209,196,.10), transparent 60%);
  pointer-events: none;
}

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

a { color: inherit; text-decoration: none; transition: color .2s ease; }

h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; color: var(--text-soft); }

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

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 6px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  background: var(--surface);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-3); box-shadow: 0 0 10px var(--brand-3); }

.section { padding: 92px 0; position: relative; }
.section--tight { padding: 60px 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head p { font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 24px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--grad-brand);
  color: #0a0d18;
  box-shadow: 0 10px 30px -8px rgba(109,140,255,.6);
}
.btn-primary:hover { box-shadow: 0 14px 38px -8px rgba(154,107,255,.7); }
.btn-ghost {
  background: var(--surface);
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--brand); }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(7,10,20,.72);
  border-bottom: 1px solid var(--border);
  transition: background .3s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; font-size: 1.18rem; letter-spacing: -.02em; }
.brand img { width: 34px; height: 34px; }
.brand span b { color: var(--text); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: 8px 13px; border-radius: 9px; font-size: .92rem; color: var(--text-soft); font-weight: 500; }
.nav a:hover, .nav a.active { color: var(--text); background: var(--surface); }

.nav-dd { position: relative; }
.nav-dd-toggle { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-dd-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 230px; padding: 8px;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s ease;
}
.nav-dd:hover .nav-dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd-menu a { display: block; padding: 9px 12px; border-radius: 8px; }
.nav-dd-menu a small { display: block; color: var(--text-dim); font-size: .78rem; font-weight: 400; }

.header-cta { display: flex; align-items: center; gap: 10px; }

.menu-toggle { display: none; background: none; border: 1px solid var(--border-strong); border-radius: 10px; width: 42px; height: 42px; cursor: pointer; flex-direction: column; gap: 4px; align-items: center; justify-content: center; }
.menu-toggle span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: rgba(7,10,20,.98); backdrop-filter: blur(20px);
  padding: 24px 22px; overflow-y: auto;
  transform: translateX(100%); transition: transform .3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { display: block; padding: 14px 6px; border-bottom: 1px solid var(--border); font-size: 1.05rem; font-weight: 500; }
.mobile-nav .btn { margin-top: 18px; }
.mobile-nav h4 { color: var(--text-dim); font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; margin: 22px 0 6px; }

/* ---------- Hero ---------- */
.hero { padding: 70px 0 80px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin-top: 18px; }
.hero p.lead { font-size: 1.18rem; max-width: 540px; color: var(--text-soft); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-meta { display: flex; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.hero-meta div b { display: block; font-size: 1.5rem; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-meta div span { font-size: .85rem; color: var(--text-dim); }

.hero-visual { position: relative; }
.hero-visual::after {
  content: ""; position: absolute; inset: -10% -6%; z-index: -1;
  background: radial-gradient(closest-side, rgba(109,140,255,.28), transparent 70%);
  filter: blur(20px);
}

/* ---------- Glass card / mockups ---------- */
.glass {
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
}

.mock {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(160deg, rgba(20,26,52,.9), rgba(11,16,32,.92));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--border); }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: #2c3454; display: inline-block; }
.mock-bar i:nth-child(1){ background:#ff5f57;} .mock-bar i:nth-child(2){ background:#febc2e;} .mock-bar i:nth-child(3){ background:#28c840;}
.mock-bar .url { margin-left: 10px; font-size: .78rem; color: var(--text-dim); background: var(--bg); padding: 4px 12px; border-radius: 8px; flex: 1; }
.mock-body { padding: 20px; }

.mock-search { display: flex; align-items: center; gap: 10px; background: var(--bg); border: 1px solid var(--border-strong); border-radius: 100px; padding: 11px 18px; }
.mock-search input { flex: 1; background: none; border: none; color: var(--text); font-size: .92rem; outline: none; font-family: var(--font); }
.mock-search .send { width: 30px; height: 30px; border-radius: 50%; background: var(--grad-brand); display: grid; place-items: center; }

.mock-chips { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0; }
.mock-chips span { font-size: .76rem; color: var(--text-soft); padding: 5px 11px; border: 1px solid var(--border); border-radius: 100px; background: var(--surface); }

.mock-answer { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 16px; margin-top: 4px; }
.mock-answer .line { height: 9px; border-radius: 5px; background: linear-gradient(90deg, rgba(255,255,255,.13), rgba(255,255,255,.05)); margin-bottom: 9px; }
.mock-answer .line.w90{width:90%;} .mock-answer .line.w75{width:75%;} .mock-answer .line.w60{width:60%;}
.mock-source { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; color: var(--brand-3); margin-top: 8px; }

.mock-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.mock-stat { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 14px; }
.mock-stat b { font-size: 1.4rem; display: block; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mock-stat span { font-size: .74rem; color: var(--text-dim); }
.mock-stat .spark { display: flex; align-items: flex-end; gap: 3px; height: 28px; margin-top: 8px; }
.mock-stat .spark i { flex: 1; background: var(--grad-brand); border-radius: 3px; opacity: .8; }

/* floating accent card */
.float-card {
  position: absolute; right: -18px; bottom: -22px;
  padding: 14px 16px; border-radius: 16px;
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-2); border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  animation: floaty 5s ease-in-out infinite;
}
.float-card .ic { width: 38px; height: 38px; border-radius: 11px; background: var(--grad-brand); display: grid; place-items: center; }
.float-card b { font-size: .9rem; } .float-card span { font-size: .75rem; color: var(--text-dim); display: block; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-10px);} }

/* ---------- Logos / trust strip ---------- */
.trust-strip { padding: 30px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-strip p { text-align: center; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 18px; }
.trust-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.trust-tags span { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--text-soft); padding: 8px 16px; border: 1px solid var(--border); border-radius: 100px; background: var(--surface); }

/* ---------- Feature cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.feature {
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid var(--border);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.feature:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.feature .ic {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px;
  display: grid; place-items: center;
  background: var(--grad-soft); border: 1px solid var(--border-strong);
}
.feature .ic svg { width: 26px; height: 26px; }
.feature h3 { margin-bottom: 8px; }
.feature p { font-size: .95rem; margin-bottom: 14px; }
.feature ul { margin: 0; padding: 0; list-style: none; }
.feature ul li { font-size: .88rem; color: var(--text-soft); padding: 5px 0 5px 24px; position: relative; }
.feature ul li::before { content: ""; position: absolute; left: 0; top: 11px; width: 14px; height: 8px; border-left: 2px solid var(--brand-3); border-bottom: 2px solid var(--brand-3); transform: rotate(-45deg); }

/* ---------- Token allowances band ---------- */
.band {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(600px 300px at 80% 0%, rgba(154,107,255,.2), transparent 60%),
    linear-gradient(160deg, rgba(20,26,52,.85), rgba(11,16,32,.9));
  padding: 50px;
  box-shadow: var(--shadow-lg);
}
.band-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: center; }
.allowance-bars { display: flex; flex-direction: column; gap: 16px; }
.allowance-bars .row b { font-size: .9rem; display: flex; justify-content: space-between; margin-bottom: 7px; }
.allowance-bars .row b span { color: var(--text-dim); font-weight: 500; }
.bar { height: 12px; border-radius: 100px; background: var(--surface-2); overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: 100px; background: var(--grad-brand); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.plan {
  display: flex; flex-direction: column;
  padding: 30px 26px; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  border: 1px solid var(--border);
  position: relative;
}
.plan.featured { border-color: transparent; background: linear-gradient(160deg, rgba(109,140,255,.16), rgba(154,107,255,.08)); box-shadow: 0 20px 60px -22px rgba(109,140,255,.55); }
.plan.featured::before { content: "Most Popular"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--grad-brand); color: #0a0d18; font-size: .72rem; font-weight: 700; padding: 5px 14px; border-radius: 100px; letter-spacing: .05em; }
.plan h3 { font-size: 1.15rem; }
.plan .price { font-size: 2.5rem; font-weight: 700; letter-spacing: -.03em; margin: 8px 0 2px; }
.plan .price small { font-size: .95rem; color: var(--text-dim); font-weight: 500; }
.plan .desc { font-size: .9rem; min-height: 42px; }
.plan ul { list-style: none; padding: 0; margin: 22px 0; flex: 1; }
.plan ul li { font-size: .9rem; color: var(--text-soft); padding: 8px 0 8px 26px; position: relative; border-top: 1px solid var(--border); }
.plan ul li:first-child { border-top: none; }
.plan ul li::before { content: ""; position: absolute; left: 0; top: 13px; width: 13px; height: 7px; border-left: 2px solid var(--brand); border-bottom: 2px solid var(--brand); transform: rotate(-45deg); }

.toggle-billing { display: inline-flex; align-items: center; gap: 12px; padding: 6px; border: 1px solid var(--border); border-radius: 100px; background: var(--surface); margin: 0 auto 38px; }
.toggle-billing button { border: none; background: none; color: var(--text-soft); padding: 9px 20px; border-radius: 100px; cursor: pointer; font-weight: 600; font-size: .9rem; font-family: var(--font); }
.toggle-billing button.active { background: var(--grad-brand); color: #0a0d18; }
.toggle-billing .save { font-size: .72rem; color: var(--brand-3); }

/* ---------- Compare table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; }
table.compare th, table.compare td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: .92rem; }
table.compare th { color: var(--text); font-weight: 600; background: var(--surface); }
table.compare td { color: var(--text-soft); }
table.compare tr td:first-child { color: var(--text); font-weight: 500; }
.tick { color: var(--brand-3); font-weight: 700; }
.dash { color: var(--text-dim); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; counter-reset: step; }
.step { padding: 26px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); position: relative; }
.step .n { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--border-strong); font-weight: 700; margin-bottom: 14px; color: var(--brand); }

/* ---------- Use case / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split img, .split .glass { border-radius: var(--radius-lg); }
.split.reverse { direction: rtl; } .split.reverse > * { direction: ltr; }
.media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-md); position: relative; }
.media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

.checklist { list-style: none; padding: 0; margin: 18px 0 26px; }
.checklist li { padding: 8px 0 8px 30px; position: relative; color: var(--text-soft); }
.checklist li::before { content: ""; position: absolute; left: 0; top: 9px; width: 18px; height: 18px; border-radius: 6px; background: var(--grad-soft); border: 1px solid var(--border-strong); }
.checklist li::after { content: ""; position: absolute; left: 5px; top: 12px; width: 8px; height: 5px; border-left: 2px solid var(--brand-3); border-bottom: 2px solid var(--brand-3); transform: rotate(-45deg); }

/* ---------- Program / persona cards ---------- */
.persona { padding: 26px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); transition: .25s; }
.persona:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.persona .tag { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--brand); font-weight: 600; }
.persona h3 { margin: 6px 0 8px; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center; padding: 64px 40px; border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(500px 280px at 50% -20%, rgba(109,140,255,.3), transparent 60%),
    linear-gradient(160deg, rgba(20,26,52,.9), rgba(11,16,32,.92));
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { max-width: 620px; margin: 0 auto .6rem; }
.cta-band p { max-width: 540px; margin: 0 auto 28px; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Stats ---------- */
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.stat { text-align: center; padding: 26px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); }
.stat b { display: block; font-size: 2.2rem; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--text-dim); font-size: .9rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 14px; margin-bottom: 12px; background: var(--surface); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--text); font-size: 1.02rem; font-weight: 600; padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font); }
.faq-q .pm { flex-shrink: 0; width: 24px; height: 24px; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--brand); border-radius: 2px; transition: .25s; }
.faq-q .pm::before { width: 14px; height: 2px; top: 11px; left: 5px; }
.faq-q .pm::after { width: 2px; height: 14px; top: 5px; left: 11px; }
.faq-item.open .pm::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 20px 20px; margin: 0; font-size: .95rem; }

/* ---------- Forms ---------- */
.form { max-width: 560px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 12px;
  background: var(--bg); border: 1px solid var(--border-strong);
  color: var(--text); font-size: .95rem; font-family: var(--font); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(109,140,255,.18); }
.field textarea { min-height: 130px; resize: vertical; }
.field .err { color: #ff8a8a; font-size: .8rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #ff6b6b; }
.field.invalid .err { display: block; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: .86rem; color: var(--text-soft); }
.consent input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; accent-color: var(--brand); }
.form-note { font-size: .8rem; color: var(--text-dim); margin-top: 14px; }
.form-success { display: none; padding: 22px; border-radius: 14px; border: 1px solid var(--brand-3); background: rgba(54,209,196,.08); color: var(--text); }
.form-success.show { display: block; }

/* ---------- Page hero (inner) ---------- */
.page-hero { padding: 70px 0 50px; text-align: center; }
.page-hero p { max-width: 640px; margin: 14px auto 0; font-size: 1.1rem; }
.breadcrumb { font-size: .85rem; color: var(--text-dim); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--brand); }

/* ---------- Legal / prose ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin-top: 2.2em; }
.prose h3 { font-size: 1.15rem; margin-top: 1.6em; }
.prose p, .prose li { color: var(--text-soft); font-size: .97rem; }
.prose ul { padding-left: 22px; }
.prose ul li { margin-bottom: 7px; }
.prose a { color: var(--brand); }
.prose a:hover { text-decoration: underline; }
.legal-meta { font-size: .88rem; color: var(--text-dim); padding: 16px 0 30px; border-bottom: 1px solid var(--border); margin-bottom: 30px; }
.toc { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px 24px; margin-bottom: 36px; }
.toc h4 { margin: 0 0 10px; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-dim); }
.toc ol { margin: 0; padding-left: 20px; columns: 2; }
.toc ol li { margin-bottom: 5px; } .toc a { color: var(--text-soft); font-size: .9rem; } .toc a:hover { color: var(--brand); }

/* ---------- Map ---------- */
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; filter: grayscale(.2) contrast(1.05); }

/* contact info card */
.info-card { padding: 26px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); margin-bottom: 16px; display: flex; gap: 15px; align-items: flex-start; }
.info-card .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--grad-soft); border: 1px solid var(--border-strong); display: grid; place-items: center; flex-shrink: 0; }
.info-card b { display: block; margin-bottom: 3px; }
.info-card a, .info-card p { color: var(--text-soft); font-size: .95rem; margin: 0; }
.info-card a:hover { color: var(--brand); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 64px 0 32px; margin-top: 40px; background: linear-gradient(180deg, transparent, rgba(11,16,32,.6)); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 32px; }
.footer-grid h5 { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-dim); margin: 0 0 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a { color: var(--text-soft); font-size: .92rem; }
.footer-grid ul li a:hover { color: var(--text); }
.footer-about p { font-size: .92rem; max-width: 300px; }
.footer-contact { margin-top: 16px; font-size: .9rem; color: var(--text-soft); }
.footer-contact a:hover { color: var(--brand); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); font-size: .85rem; color: var(--text-dim); }
.footer-bottom a { color: var(--text-dim); } .footer-bottom a:hover { color: var(--brand); }
.footer-legal-links { display: flex; gap: 18px; flex-wrap: wrap; }

.disclaimer-note { font-size: .82rem; color: var(--text-dim); background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; margin-top: 28px; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%) translateY(160%);
  width: min(960px, calc(100% - 32px)); z-index: 200;
  background: var(--bg-2); border: 1px solid var(--border-strong);
  border-radius: 18px; padding: 22px 24px; box-shadow: var(--shadow-lg);
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); }
.cookie-banner p { margin: 0; font-size: .9rem; flex: 1; min-width: 280px; }
.cookie-banner p a { color: var(--brand); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 18px; font-size: .85rem; }

.modal-overlay { position: fixed; inset: 0; z-index: 210; background: rgba(4,6,14,.7); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.show { display: flex; }
.modal { width: min(560px, 100%); max-height: 88vh; overflow-y: auto; background: var(--bg-2); border: 1px solid var(--border-strong); border-radius: 20px; padding: 30px; box-shadow: var(--shadow-lg); }
.modal h3 { margin-bottom: 8px; }
.modal .close { float: right; background: none; border: 1px solid var(--border-strong); border-radius: 10px; width: 36px; height: 36px; color: var(--text); cursor: pointer; font-size: 1.1rem; }
.cookie-opt { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cookie-opt b { display: block; } .cookie-opt span { font-size: .85rem; color: var(--text-dim); }
.switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider { position: absolute; inset: 0; background: var(--surface-2); border: 1px solid var(--border-strong); border-radius: 100px; cursor: pointer; transition: .25s; }
.switch .slider::before { content: ""; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: var(--text-dim); border-radius: 50%; transition: .25s; }
.switch input:checked + .slider { background: var(--grad-brand); border-color: transparent; }
.switch input:checked + .slider::before { transform: translateX(20px); background: #0a0d18; }
.switch input:disabled + .slider { opacity: .6; cursor: not-allowed; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Misc ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.lead { font-size: 1.12rem; color: var(--text-soft); }
.pill-note { display: inline-flex; gap: 8px; align-items: center; font-size: .82rem; color: var(--text-soft); background: var(--surface); border: 1px solid var(--border); padding: 7px 14px; border-radius: 100px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav, .header-cta .btn-ghost { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .band-grid, .split, .split.reverse { grid-template-columns: 1fr; gap: 30px; direction: ltr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .band { padding: 32px; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .grid-3, .grid-4, .grid-2, .pricing-grid, .stat-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .toc ol { columns: 1; }
  .hero-meta { gap: 18px; }
  .float-card { display: none; }
  .cta-band { padding: 44px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
