/* Novaria — AuthKit "frosted glass cathedral at midnight" style */
:root {
  --canvas: #05060f;
  --steel: #2f343e;
  --fog: #9da7ba;
  --moon: #c7d3ea;
  --frost: #d1e4fa;
  --ice: #d8ecf8;
  --white: #ffffff;
  --violet: #663af3;
  --violet-2: #7d55ff;
  --blueprint: #b6d9fc;

  --hairline: rgba(186,215,247,0.12);
  --hairline-strong: rgba(186,215,247,0.24);
  --frost-wash: rgba(186,214,247,0.06);
  --glass: rgba(186,214,247,0.03);
  --skywash: linear-gradient(0deg, #98c0ef 0%, #d8ecf8 100%);

  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Space Grotesk', var(--font-body);
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --max: 1200px;
  --gap: clamp(72px, 11vw, 120px);

  --shadow-glass: rgba(199,211,234,0.12) 0 1px 1px 0 inset, rgba(199,211,234,0.05) 0 24px 48px 0 inset, rgba(6,6,14,0.7) 0 24px 32px 0;
  --shadow-modal: rgba(216,236,248,0.2) 0 1px 1px 0 inset, rgba(168,216,245,0.06) 0 24px 48px 0 inset, rgba(0,0,0,0.3) 0 16px 32px 0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.5;
  color: var(--moon);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Ambient page background (no video) ---------- */
.bg-overlay {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background: radial-gradient(120% 70% at 50% -8%, rgba(124,145,182,0.22) 0%, transparent 52%);
}
.bg-grid {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(186,215,247,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(186,215,247,0.045) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 35%, transparent 85%);
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 35%, transparent 85%);
}

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .display { font-family: var(--font-display); font-weight: 500; line-height: 1.14; }
.grad {
  background: var(--skywash);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--moon); margin-bottom: 20px;
}
.eyebrow::before, .eyebrow::after {
  content: ""; height: 1px; width: min(90px, 16vw);
  background: linear-gradient(90deg, transparent, var(--hairline));
}
.eyebrow::after { background: linear-gradient(90deg, var(--hairline), transparent); }
.eyebrow--left { justify-content: flex-start; }
.eyebrow--left::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 11px 20px;
  font-size: 14px; font-weight: 500; color: var(--white);
  background: var(--frost-wash);
  box-shadow: var(--hairline) 0 0 0 1px inset;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn:hover { background: rgba(186,214,247,0.12); transform: translateY(-1px); }
.btn svg { width: 17px; height: 17px; }
.btn--violet {
  background: var(--violet); color: var(--white);
  box-shadow: 0 0 0 1px rgba(125,85,255,0.6) inset, 0 0 22px rgba(102,58,243,0.45);
}
.btn--violet:hover { background: var(--violet-2); box-shadow: 0 0 0 1px rgba(125,85,255,0.8) inset, 0 0 30px rgba(102,58,243,0.6); }
.btn--lg { padding: 14px 26px; font-size: 15px; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5,6,15,0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--glass); box-shadow: var(--hairline) 0 0 0 1px inset, 0 0 18px rgba(102,58,243,0.4);
  display: grid; place-items: center;
}
.brand__mark span { width: 13px; height: 13px; border-radius: 4px; background: var(--skywash); box-shadow: 0 0 10px rgba(152,192,239,0.8); }
.brand__name { font-family: var(--font-display); font-size: 19px; color: var(--frost); font-weight: 500; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 14px; color: var(--moon); }
.nav a:hover { color: var(--frost); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ---------- Hero (video background, minimalist) ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: 92vh; display: flex; align-items: center;
  text-align: center;
  padding: 100px 0 var(--gap);
  border-bottom: 1px solid var(--hairline);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.08) brightness(0.75); }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(124,145,182,0.28) 0%, transparent 50%),
    linear-gradient(180deg, rgba(5,6,15,0.55) 0%, rgba(5,6,15,0.55) 35%, rgba(5,6,15,0.82) 78%, #05060f 100%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero .eyebrow { margin-bottom: 22px; }
.hero h1 { font-size: clamp(42px, 7.2vw, 82px); letter-spacing: -0.02em; margin-bottom: 22px; }
.hero h1 .grad { display: inline-block; }
.hero__sub { font-size: clamp(17px, 2vw, 20px); color: var(--moon); max-width: 54ch; margin: 0 auto 36px; }
.hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.hero__trust { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--fog); }
.hero__trust .dot { width: 7px; height: 7px; border-radius: 50%; background: #43d9a3; box-shadow: 0 0 8px #43d9a3; }

.glass-card { background: var(--glass); border-radius: 16px; box-shadow: var(--shadow-glass); padding: 24px; }

/* chat mockup */
.chat__head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--hairline); }
.chat__ava { width: 30px; height: 30px; border-radius: 9999px; background: var(--glass); box-shadow: var(--hairline) 0 0 0 1px inset, 0 0 14px rgba(102,58,243,0.4); display: grid; place-items: center; color: var(--frost); }
.chat__ava svg { width: 16px; height: 16px; }
.chat__who { font-size: 13px; color: var(--frost); font-weight: 500; }
.chat__status { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: #43d9a3; }
.bubble { border-radius: 12px; padding: 11px 14px; font-size: 13px; line-height: 1.45; margin-bottom: 10px; text-align: left; }
.bubble--in { background: rgba(199,211,234,0.06); color: var(--moon); box-shadow: var(--hairline) 0 0 0 1px inset; }
.bubble--out { background: rgba(102,58,243,0.16); color: var(--frost); box-shadow: 0 0 0 1px rgba(125,85,255,0.35) inset; margin-left: 28px; }
.stat-mini { text-align: left; }
.stat-mini + .stat-mini { margin-top: 18px; }
.stat-mini .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fog); }
.stat-mini .v { font-family: var(--font-display); font-size: 30px; color: var(--frost); margin-top: 4px; }
.stat-mini .up { color: #43d9a3; font-size: 13px; font-family: var(--font-body); }

/* ---------- Section shell ---------- */
.section { padding: var(--gap) 0; position: relative; }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section__head h2 { font-size: clamp(30px, 4.6vw, 46px); letter-spacing: -0.01em; }
.section__head h2 .grad { display: inline; }
.section__head p { margin-top: 18px; font-size: 17px; color: var(--moon); }

/* ---------- Trust ---------- */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hairline); border-radius: 16px; overflow: hidden; box-shadow: var(--hairline) 0 0 0 1px inset; }
.trust__item { background: rgba(9,11,22,0.55); padding: 28px 18px; text-align: center; }
.trust__num { font-family: var(--font-display); font-size: clamp(26px,3.4vw,38px); color: var(--frost); }
.trust__num .grad { display: inline; }
.trust__label { font-size: 13px; color: var(--fog); margin-top: 6px; }

/* ---------- Showcase posters ---------- */
.showcase { display: grid; grid-template-columns: 1.7fr 1fr; gap: 20px; }
.shot {
  position: relative; margin: 0; border-radius: 16px; overflow: hidden;
  background: var(--glass); box-shadow: var(--shadow-glass);
  padding: 10px;
}
.shot img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; box-shadow: var(--hairline) 0 0 0 1px inset; }
.shot figcaption {
  position: absolute; left: 20px; bottom: 20px; right: 20px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--frost);
  background: rgba(5,6,15,0.55); backdrop-filter: blur(6px);
  padding: 8px 12px; border-radius: 8px; box-shadow: var(--hairline) 0 0 0 1px inset;
  display: inline-flex; align-items: center; gap: 8px; width: fit-content;
}
.shot figcaption svg { width: 14px; height: 14px; color: var(--violet-2); }

/* ---------- Logo ---------- */
.brand__logo { width: 30px; height: 30px; border-radius: 9px; object-fit: cover; box-shadow: var(--hairline) 0 0 0 1px inset, 0 0 16px rgba(102,58,243,0.4); }

/* ---------- Feature grid ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature {
  background: var(--glass); border-radius: 16px; padding: 26px;
  box-shadow: var(--shadow-glass);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-glass), 0 0 24px rgba(102,58,243,0.18); }
.icon-tile {
  width: 54px; height: 54px; border-radius: 9999px;
  display: grid; place-items: center; color: var(--frost);
  background: var(--frost-wash); box-shadow: var(--hairline) 0 0 0 1px inset;
  margin-bottom: 18px;
}
.icon-tile svg { width: 24px; height: 24px; stroke-width: 1.5; }
.feature h3 { font-size: 20px; color: var(--frost); margin-bottom: 8px; letter-spacing: -0.01em; }
.feature p { font-size: 14px; color: var(--fog); line-height: 1.5; }
.feature .badge {
  display: inline-block; margin-top: 14px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--frost); background: rgba(199,211,234,0.12); border-radius: 6px; padding: 4px 8px;
}

/* ---------- Assets (gradient-border cards / mobile accordion) ---------- */
.assets-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.asset {
  position: relative; border-radius: 16px; overflow: hidden;
  background: var(--glass); box-shadow: var(--shadow-glass);
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s;
}
.asset::before {
  content: ""; position: absolute; inset: 0; border-radius: 16px; padding: 1px;
  background: linear-gradient(145deg, rgba(186,215,247,0.22), rgba(102,58,243,0.4) 45%, rgba(186,215,247,0.05) 90%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .55; transition: opacity .35s; pointer-events: none;
}
.asset:hover { transform: translateY(-4px); box-shadow: var(--shadow-glass), 0 0 28px rgba(102,58,243,0.22); }
.asset:hover::before { opacity: 1; }
.asset__head {
  display: flex; flex-direction: column; align-items: flex-start; gap: 15px;
  width: 100%; text-align: left; cursor: default;
  background: none; border: 0; color: inherit; font: inherit;
  padding: 26px 24px 0;
}
.asset .icon-tile { margin: 0; }
.asset__meta h3 { font-size: 19px; color: var(--frost); margin: 0; letter-spacing: -0.01em; }
.asset__chev { display: none; }
.asset__body { display: block; padding: 12px 24px 26px; }
.asset__in p { font-size: 14px; color: var(--fog); line-height: 1.5; margin-bottom: 14px; }
.asset .badge {
  display: inline-block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--frost); background: rgba(199,211,234,0.12); border-radius: 6px; padding: 4px 8px;
}
@media (max-width: 940px) { .assets-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) {
  .assets-grid { grid-template-columns: 1fr; gap: 10px; }
  .asset__head {
    flex-direction: row; align-items: center; gap: 14px;
    padding: 15px 16px; cursor: pointer;
  }
  .asset .icon-tile { width: 44px; height: 44px; }
  .asset .icon-tile svg { width: 21px; height: 21px; }
  .asset__meta { flex: 1; min-width: 0; }
  .asset__meta h3 { font-size: 16px; }
  .asset__chev {
    display: grid; place-items: center; flex: none; color: var(--fog);
    width: 28px; height: 28px; transition: transform .4s cubic-bezier(.16,1,.3,1), color .3s;
  }
  .asset__chev svg { width: 18px; height: 18px; }
  .asset.open { box-shadow: var(--shadow-glass), 0 0 22px rgba(102,58,243,0.16); }
  .asset.open::before { opacity: 1; }
  .asset.open .asset__chev { transform: rotate(180deg); color: var(--frost); }
  .asset__body { display: grid; grid-template-rows: 0fr; padding: 0 16px; transition: grid-template-rows .4s cubic-bezier(.16,1,.3,1); }
  .asset.open .asset__body { grid-template-rows: 1fr; }
  .asset__in { overflow: hidden; }
  .asset__in p { padding-top: 2px; margin-bottom: 12px; }
  .asset .badge { margin-bottom: 16px; }
}

/* ---------- Why list ---------- */
.why-list {
  list-style: none; display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px; max-width: 940px; margin: 0 auto;
}
.why-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--glass); border-radius: 14px; padding: 20px 22px;
  box-shadow: var(--hairline) 0 0 0 1px inset;
  transition: box-shadow 0.3s, transform 0.3s;
}
.why-item:hover { transform: translateY(-2px); box-shadow: var(--hairline-strong) 0 0 0 1px inset, 0 0 20px rgba(102,58,243,0.14); }
.why-ic {
  flex: none; width: 42px; height: 42px; border-radius: 9999px;
  display: grid; place-items: center; color: var(--frost);
  background: var(--frost-wash); box-shadow: var(--hairline) 0 0 0 1px inset;
}
.why-ic svg { width: 20px; height: 20px; stroke-width: 1.5; }
.why-item h3 { font-size: 17px; color: var(--frost); margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--fog); line-height: 1.5; }

/* ---------- Testimonial avatar & mark ---------- */
.quote { position: relative; }
.quote__mark { position: absolute; top: 22px; right: 22px; color: rgba(125,85,255,0.5); }
.quote__mark svg { width: 26px; height: 26px; }
img.quote__av { width: 46px; height: 46px; border-radius: 9999px; object-fit: cover; box-shadow: var(--hairline) 0 0 0 1px inset, 0 0 14px rgba(102,58,243,0.3); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  position: relative;
  background: var(--glass); border-radius: 16px; padding: 30px 28px;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-glass);
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s, border-color .35s;
}
.step:hover { transform: translateY(-4px); border-color: rgba(125,85,255,.5); box-shadow: var(--shadow-glass), 0 0 26px rgba(102,58,243,.2); }
.step__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fog); margin-bottom: 14px; }
.step__num {
  position: absolute; top: 22px; right: 22px;
  width: 48px; height: 48px; border-radius: 9999px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 19px; color: var(--frost);
  background: rgba(102,58,243,.16);
  box-shadow: 0 0 0 1px rgba(125,85,255,.45) inset, 0 0 18px rgba(102,58,243,.35);
}
.step h3 { font-size: 20px; color: var(--frost); margin: 0 0 8px; padding-right: 60px; }
.step p { font-size: 14px; color: var(--fog); line-height: 1.5; }
@media (max-width: 940px) {
  .step__num { width: 44px; height: 44px; font-size: 17px; top: 20px; right: 20px; }
}

/* ---------- Assistant split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 20px; letter-spacing: -0.01em; }
.check-list { list-style: none; display: grid; gap: 16px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: var(--moon); }
.check-list .ic { flex: none; width: 26px; height: 26px; border-radius: 9999px; display: grid; place-items: center; color: var(--frost); background: var(--frost-wash); box-shadow: var(--hairline) 0 0 0 1px inset; }
.check-list .ic svg { width: 15px; height: 15px; }
.check-list b { color: var(--frost); font-weight: 500; }
.split .glass-card { padding: 26px; }

/* ---------- Testimonials ---------- */
.quote { background: var(--glass); border-radius: 16px; padding: 28px; box-shadow: var(--shadow-glass); }
.quote__stars { color: #d8ecf8; letter-spacing: 3px; font-size: 14px; margin-bottom: 14px; }
.quote p { font-size: 15px; color: var(--moon); line-height: 1.55; }
.quote__foot { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--hairline); }
.quote__av { width: 40px; height: 40px; border-radius: 9999px; display: grid; place-items: center; font-family: var(--font-display); color: var(--frost); background: var(--glass); box-shadow: var(--hairline) 0 0 0 1px inset; }
.quote__name { font-size: 14px; color: var(--frost); }
.quote__role { font-size: 12px; color: var(--fog); }

/* ---------- Form ---------- */
.form-section .wrap { max-width: 920px; }
.form-card {
  background: rgba(5,6,15,0.6); border-radius: 16px;
  box-shadow: var(--shadow-modal); padding: 6px;
  display: grid; grid-template-columns: 1fr 1fr;
}
.form-card__aside { padding: 34px; display: flex; flex-direction: column; }
.form-card__aside .eyebrow { justify-content: flex-start; }
.form-card__aside .eyebrow::before { display: none; }
.form-card__aside h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 14px; letter-spacing: -0.01em; }
.form-card__aside > p { font-size: 15px; color: var(--moon); line-height: 1.55; margin-bottom: 24px; }
.aside-list { list-style: none; display: grid; gap: 14px; margin-bottom: auto; }
.aside-list li { display: flex; gap: 12px; align-items: center; font-size: 14px; color: var(--moon); }
.aside-list .ic { flex: none; width: 24px; height: 24px; border-radius: 9999px; display: grid; place-items: center; color: var(--frost); background: var(--frost-wash); box-shadow: var(--hairline) 0 0 0 1px inset; }
.aside-list .ic svg { width: 14px; height: 14px; }
.aside-secure { margin-top: 24px; display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--fog); font-family: var(--font-mono); letter-spacing: 0.04em; }
.aside-secure svg { width: 15px; height: 15px; color: var(--blueprint); }
.form-panel { background: var(--glass); border-radius: 12px; box-shadow: var(--hairline) 0 0 0 1px inset; padding: 30px; }
.field { margin-bottom: 16px; }
.field label { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--moon); margin-bottom: 7px; }
.field label svg { width: 15px; height: 15px; color: var(--fog); }
.field input {
  width: 100%; border: none; border-radius: 6px;
  background: rgba(199,211,234,0.06); color: var(--white);
  box-shadow: var(--hairline) 0 0 0 1px inset;
  padding: 12px 14px; font-family: inherit; font-size: 15px;
  transition: box-shadow 0.2s, background 0.2s;
}
.field input::placeholder { color: rgba(199,211,234,0.5); }
.field input:focus { outline: none; box-shadow: var(--hairline-strong) 0 0 0 1px inset, 0 0 0 3px rgba(102,58,243,0.25); background: rgba(199,211,234,0.09); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; color: var(--fog); margin: 4px 0 18px; line-height: 1.45; }
.consent input { margin-top: 2px; accent-color: var(--violet); }
.consent a { color: var(--frost); text-decoration: underline; }
.form-note { display: flex; align-items: center; justify-content: center; gap: 7px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--fog); margin-top: 12px; }
.form-note svg { width: 13px; height: 13px; color: #43d9a3; }
.form-ok { display: none; margin-top: 14px; padding: 14px; border-radius: 10px; background: rgba(67,217,163,0.1); box-shadow: rgba(67,217,163,0.3) 0 0 0 1px inset; color: var(--frost); font-size: 14px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--glass); border-radius: 16px; box-shadow: var(--hairline) 0 0 0 1px inset; overflow: hidden; transition: box-shadow 0.3s; }
.faq-item.open { box-shadow: var(--hairline-strong) 0 0 0 1px inset, 0 0 22px rgba(102,58,243,0.14); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 22px 24px; display: flex; align-items: center; gap: 14px; color: var(--frost); font-family: var(--font-body); font-size: 17px; font-weight: 500; }
.faq-q__ic { flex: none; width: 34px; height: 34px; border-radius: 9999px; display: grid; place-items: center; color: var(--frost); background: var(--frost-wash); box-shadow: var(--hairline) 0 0 0 1px inset; }
.faq-q__ic svg { width: 17px; height: 17px; }
.faq-item.open .faq-q__ic { background: rgba(102,58,243,0.24); box-shadow: 0 0 0 1px rgba(125,85,255,0.5) inset; }
.faq-q__text { flex: 1; }
.faq-q__chev { flex: none; color: var(--fog); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.faq-q__chev svg { width: 18px; height: 18px; }
.faq-item.open .faq-q__chev { transform: rotate(180deg); color: var(--frost); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s cubic-bezier(0.16,1,0.3,1); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a__in { overflow: hidden; }
.faq-a p { margin: 0; padding: 0 24px 24px 72px; font-size: 15px; color: var(--fog); line-height: 1.6; }
.faq-a a { color: var(--frost); text-decoration: underline; }

/* ---------- Final CTA ---------- */
.final { text-align: center; }
.final .box {
  position: relative; overflow: hidden;
  background: rgba(9,11,22,0.6); border-radius: 20px; padding: clamp(48px,7vw,84px) 32px;
  box-shadow: var(--shadow-modal);
}
.final .box::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(80% 120% at 50% -10%, rgba(102,58,243,0.35), transparent 60%);
}
.final h2 { position: relative; font-size: clamp(30px,5vw,52px); margin-bottom: 16px; letter-spacing: -0.01em; }
.final p { position: relative; color: var(--moon); font-size: 18px; max-width: 54ch; margin: 0 auto 28px; }
.final .hero__actions { position: relative; }

/* ---------- Disclaimer ---------- */
.disclaimer .wrap { max-width: 960px; padding-top: 40px; padding-bottom: 40px; }
.disclaimer p { font-size: 12px; color: var(--fog); line-height: 1.65; text-align: center; }
.disclaimer strong { color: var(--moon); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--hairline); padding: 56px 0 40px; background: rgba(5,6,15,0.6); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-grid h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fog); margin-bottom: 16px; }
.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid a { font-size: 14px; color: var(--moon); }
.footer-grid a:hover { color: var(--frost); }
.footer-grid .about p { font-size: 14px; color: var(--fog); line-height: 1.55; margin-top: 14px; max-width: 32ch; }
.footer-bottom { border-top: 1px solid var(--hairline); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12px; color: var(--fog); }

/* ---------- Cookie ---------- */
.cookie {
  position: fixed; z-index: 90; left: 20px; right: 20px; bottom: 20px;
  max-width: 520px; margin: 0 auto;
  background: rgba(9,11,22,0.92); backdrop-filter: blur(10px);
  border-radius: 14px; box-shadow: var(--shadow-modal);
  padding: 16px 18px; display: flex; align-items: center; gap: 16px;
  transform: translateY(160%); transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.cookie.show { transform: translateY(0); }
.cookie p { flex: 1; font-size: 12px; color: var(--moon); line-height: 1.5; }
.cookie a { color: var(--frost); text-decoration: underline; }
.cookie__actions { display: flex; gap: 8px; flex: none; }
.cookie__actions .btn { padding: 8px 16px; font-size: 13px; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.open { display: block; }
.modal__ov { position: absolute; inset: 0; background: rgba(5,6,15,0.7); backdrop-filter: blur(6px); }
.modal__panel { position: relative; max-width: 440px; margin: 7vh auto 0; background: rgba(5,6,15,0.97); border-radius: 16px; box-shadow: var(--shadow-modal); padding: 34px; max-height: 86vh; overflow-y: auto; }
.modal__close { position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border-radius: 9999px; border: none; background: var(--frost-wash); box-shadow: var(--hairline) 0 0 0 1px inset; color: var(--moon); font-size: 16px; }
.modal__panel h3 { font-family: var(--font-display); font-size: 24px; color: var(--frost); margin-bottom: 6px; }
.modal__panel .lead { font-size: 14px; color: var(--moon); margin-bottom: 22px; }

/* ---------- Legal ---------- */
.legal { padding: 56px 0 90px; }
.legal .wrap { max-width: 820px; }
.legal h1 { font-family: var(--font-display); font-size: clamp(30px,5vw,50px); color: var(--frost); margin-bottom: 12px; }
.legal .updated { font-family: var(--font-mono); font-size: 13px; color: var(--fog); margin-bottom: 36px; }
.legal h2 { font-family: var(--font-display); font-size: 24px; color: var(--frost); margin: 34px 0 12px; }
.legal h3 { font-size: 18px; color: var(--moon); margin: 22px 0 8px; }
.legal p, .legal li { color: var(--moon); font-size: 15px; line-height: 1.7; }
.legal p { margin-bottom: 14px; }
.legal ul, .legal ol { margin: 0 0 14px 22px; display: grid; gap: 6px; }
.legal a { color: var(--frost); text-decoration: underline; }
.back-link { display: inline-flex; gap: 8px; align-items: center; font-family: var(--font-mono); font-size: 13px; color: var(--fog); margin-bottom: 28px; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .steps { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split .glass-card { order: -1; }
  .form-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .hero { min-height: 88vh; }
}
@media (max-width: 680px) {
  .trust { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
  .form-card__aside, .form-panel { padding: 22px; }
  .cookie { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie__actions .btn { flex: 1; }
  .faq-q { font-size: 15px; padding: 18px; }
  .faq-a p { padding: 0 18px 20px 18px; }
}
@media (max-width: 400px) {
  .trust { grid-template-columns: 1fr; }
}
