@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-Variable.woff2") format("woff2-variations"),
       url("../fonts/Vazirmatn-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-Variable.woff2") format("woff2-variations"),
       url("../fonts/Inter-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #05070b;
  --bg-2: #080b11;
  --surface: #0f141c;
  --surface-2: #151c26;
  --surface-3: #1b2430;
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.12);
  --text: #e9eef4;
  --text-2: #b7c0cb;
  --muted: #7d8794;
  --green: #0ecb81;
  --green-2: #1ee89a;
  --green-dim: rgba(14, 203, 129, 0.14);
  --gold: #f0b90b;
  --gold-dim: rgba(240, 185, 11, 0.12);
  --purple: #8b6cff;
  --purple-2: #b39bff;
  --purple-dim: rgba(139, 108, 255, 0.16);
  --cyan: #22d3ee;
  --cyan-dim: rgba(34, 211, 238, 0.12);
  --red: #f6465d;
  --red-dim: rgba(246, 70, 93, 0.12);
  --orange: #ff7a45;
  --orange-dim: rgba(255, 122, 69, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --glow-green: 0 0 80px rgba(14, 203, 129, 0.18);
  --glow-purple: 0 0 90px rgba(139, 108, 255, 0.2);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --header-h: 72px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: Vazirmatn, Tahoma, sans-serif;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color-scheme: dark;
}

::selection {
  background: rgba(14, 203, 129, 0.28);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

ul, ol {
  list-style: none;
}

.num {
  font-family: Inter, Vazirmatn, sans-serif;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "ss01" 1;
  direction: ltr;
  unicode-bidi: isolate;
  letter-spacing: -0.02em;
}

.skip {
  position: absolute;
  right: 16px;
  top: -40px;
  background: var(--green);
  color: #04110a;
  padding: 8px 14px;
  border-radius: 8px;
  z-index: 100;
}

.skip:focus {
  top: 12px;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.55'/></svg>");
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 108px 0;
  position: relative;
}

.section-sm {
  padding: 72px 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.kicker.purple {
  color: var(--purple-2);
}

.kicker.purple::before {
  background: var(--purple);
  box-shadow: 0 0 12px var(--purple);
}

.kicker.warn {
  color: var(--orange);
}

.kicker.warn::before {
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
}

h1, h2, h3 {
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lead {
  color: var(--text-2);
  font-size: 17px;
  max-width: 62ch;
}

.center {
  text-align: center;
}

.center .lead {
  margin-inline: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s var(--ease) forwards;
}

.reveal.d1 { animation-delay: 0.08s; }
.reveal.d2 { animation-delay: 0.16s; }
.reveal.d3 { animation-delay: 0.24s; }
.reveal.d4 { animation-delay: 0.32s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(180deg, #1ee89a, var(--green));
  color: #04110a;
  box-shadow: 0 10px 32px rgba(14, 203, 129, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(14, 203, 129, 0.38);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  border-color: rgba(139, 108, 255, 0.55);
  background: var(--purple-dim);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.header.scrolled {
  background: rgba(5, 7, 11, 0.78);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

.header-inner {
  width: min(var(--max), calc(100% - 40px));
  height: var(--header-h);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
}

.brand-mark {
  width: 36px;
  height: 36px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--text-2);
  font-size: 14.5px;
  font-weight: 500;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

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

.header-cta .btn {
  min-height: 42px;
  padding: 0 16px;
  font-size: 13.5px;
  border-radius: 12px;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: none;
  position: absolute;
  inset: var(--header-h) 16px auto;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.mobile-nav.open {
  display: grid;
  gap: 6px;
}

.mobile-nav a {
  padding: 12px 10px;
  border-radius: 10px;
  color: var(--text-2);
}

.mobile-nav a:hover {
  background: var(--surface-2);
  color: var(--text);
}

/* Hero */
.hero {
  position: relative;
  padding: 56px 0 88px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg .orb {
  position: absolute;
  filter: blur(40px);
  border-radius: 50%;
}

.orb-g {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(14, 203, 129, 0.22), transparent 68%);
  right: -80px;
  top: -120px;
}

.orb-p {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(139, 108, 255, 0.2), transparent 68%);
  left: -60px;
  bottom: -80px;
}

.orb-c {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12), transparent 68%);
  left: 38%;
  top: 10%;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 75%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.hero h1 {
  font-size: clamp(1.85rem, 3.6vw, 3.15rem);
  margin-bottom: 18px;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--green-2), #9ef6d0 42%, var(--purple-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lead {
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.lbank-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
}

.lbank-logo {
  width: 16px;
  height: 16px;
}

/* Mockup */
.mock {
  position: relative;
  perspective: 1400px;
}

.mock-frame {
  position: relative;
  background: linear-gradient(180deg, #171f2a, #10161f);
  border: 1px solid var(--line-2);
  border-radius: 22px;
  box-shadow: var(--shadow), var(--glow-green);
  overflow: hidden;
  transform: rotateY(8deg) rotateX(4deg);
  transition: transform 0.6s var(--ease);
}

.mock:hover .mock-frame {
  transform: rotateY(0) rotateX(0);
}

.mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.dots {
  display: flex;
  gap: 6px;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2a3340;
}

.dots span:nth-child(1) { background: #f6465d; }
.dots span:nth-child(2) { background: #f0b90b; }
.dots span:nth-child(3) { background: #0ecb81; }

.mock-title {
  font-size: 12px;
  color: var(--muted);
}

.mock-body {
  padding: 16px;
  display: grid;
  gap: 14px;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.kpi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
}

.kpi small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 4px;
}

.kpi strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.kpi.up strong { color: var(--green-2); }
.kpi.down strong { color: var(--red); }

.chart-card {
  background: #0b1017;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
}

.chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--muted);
}

.trades {
  display: grid;
  gap: 8px;
}

.trade {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  padding: 8px 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.tag {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
}

.tag-green {
  background: var(--green-dim);
  color: var(--green-2);
}

.tag-red {
  background: var(--red-dim);
  color: #ff8a9a;
}

.float-card {
  position: absolute;
  z-index: 2;
  background: rgba(15, 20, 28, 0.78);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
  font-size: 12px;
  min-width: 148px;
}

.float-1 {
  top: -18px;
  left: -28px;
  animation: floaty 5s ease-in-out infinite;
}

.float-2 {
  bottom: 36px;
  right: -22px;
  animation: floaty 6s ease-in-out infinite reverse;
}

@keyframes floaty {
  50% { transform: translateY(-8px); }
}

.float-card b {
  display: block;
  font-size: 16px;
  margin-top: 2px;
}

/* Problem */
.problem {
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(255, 122, 69, 0.08), transparent 70%);
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  box-shadow: var(--shadow);
}

.ico {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.ico svg {
  width: 22px;
  height: 22px;
}

.ico-warn {
  background: var(--orange-dim);
  color: var(--orange);
}

.ico-red {
  background: var(--red-dim);
  color: var(--red);
}

.ico-gold {
  background: var(--gold-dim);
  color: var(--gold);
}

.ico-green {
  background: var(--green-dim);
  color: var(--green);
}

.ico-blue {
  background: var(--cyan-dim);
  color: var(--cyan);
}

.ico-purple {
  background: var(--purple-dim);
  color: var(--purple-2);
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card p {
  color: var(--text-2);
  font-size: 14.5px;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14, 203, 129, 0.45), rgba(139, 108, 255, 0.45), transparent);
}

.step {
  text-align: center;
  position: relative;
  padding: 0 8px;
}

.step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  color: var(--green-2);
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 0 0 8px var(--bg);
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-2);
  font-size: 14.5px;
}

.step small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

/* AI panel */
.ai-section {
  background:
    radial-gradient(700px 280px at 70% 40%, rgba(139, 108, 255, 0.12), transparent 70%);
}

.ai-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.ai-panel {
  background: linear-gradient(180deg, rgba(22, 18, 40, 0.75), rgba(12, 16, 24, 0.8));
  border: 1px solid rgba(139, 108, 255, 0.28);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--glow-purple);
  backdrop-filter: blur(18px);
}

.ai-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #c4b5fd, #6d28d9);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 3px rgba(139, 108, 255, 0.25);
  position: relative;
}

.avatar::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--green);
  border: 2px solid var(--bg);
  border-radius: 50%;
  bottom: 0;
  left: 0;
}

.ai-head b {
  display: block;
  font-size: 14px;
}

.ai-head span {
  color: var(--muted);
  font-size: 12px;
}

.ai-msg {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.9;
}

.ai-msg .plan {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--purple-dim);
  color: var(--text);
  border: 1px solid rgba(139, 108, 255, 0.25);
}

.ai-aside h3 {
  font-size: 28px;
  margin: 10px 0 14px;
}

/* Vault */
.vault .card {
  background: linear-gradient(180deg, #121a14, var(--surface));
}

.vault .card:nth-child(2) {
  background: linear-gradient(180deg, #141822, var(--surface));
}

.vault .card:nth-child(3) {
  background: linear-gradient(180deg, #101820, var(--surface));
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 36px auto 0;
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: right;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 15.5px;
}

.faq-q svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
  color: var(--green);
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  color: var(--text-2);
  font-size: 14.5px;
}

.faq-item.open .faq-a {
  display: block;
}

/* Final CTA */
.final {
  padding: 120px 0;
  text-align: center;
  background:
    radial-gradient(500px 220px at 50% 50%, rgba(14, 203, 129, 0.1), transparent 70%);
}

.final h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 8px 0 12px;
}

.final .lead {
  margin-bottom: 28px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 28px;
  color: var(--muted);
  font-size: 13.5px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* App shell */
.app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 250px 1fr;
}

.side {
  background: #080c12;
  border-left: 1px solid var(--line);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: sticky;
  top: 0;
  height: 100vh;
}

.side-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
}

.side-nav a svg {
  width: 18px;
  height: 18px;
}

.side-nav a:hover,
.side-nav a.active {
  background: var(--surface-2);
  color: var(--text);
}

.side-nav a.active {
  box-shadow: inset 3px 0 0 var(--green);
}

.side-foot {
  margin-top: auto;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 12.5px;
  color: var(--text-2);
}

.app-main {
  padding: 22px 28px 48px;
  min-width: 0;
}

.app-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.app-top h1 {
  font-size: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--green-2);
  background: var(--green-dim);
  border-radius: 999px;
  padding: 4px 10px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

.stat span {
  color: var(--muted);
  font-size: 12.5px;
}

.stat b {
  display: block;
  font-size: 26px;
  margin: 6px 0 2px;
  font-family: Inter, sans-serif;
}

.stat em {
  font-style: normal;
  font-size: 12px;
  color: var(--green);
}

.stat em.neg { color: var(--red); }

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}

.panel h3 {
  font-size: 15px;
  margin-bottom: 12px;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 14px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

th {
  text-align: right;
  color: var(--muted);
  font-weight: 500;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
}

td {
  padding: 12px 8px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

tr:hover td {
  background: rgba(255, 255, 255, 0.015);
}

/* Wizard / forms */
.page-hero {
  padding: 48px 0 12px;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}

.wizard {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  margin-top: 28px;
}

.wizard-steps {
  display: grid;
  gap: 10px;
  align-content: start;
}

.wstep {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
}

.wstep.active {
  border-color: rgba(14, 203, 129, 0.4);
  color: var(--text);
  background: linear-gradient(180deg, rgba(14, 203, 129, 0.08), var(--surface));
}

.wstep b {
  display: block;
  font-size: 14px;
}

.wstep span {
  font-size: 12px;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}

.form-card h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin: 14px 0 6px;
}

.field {
  width: 100%;
  background: #0b1017;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  min-height: 48px;
  padding: 0 14px;
  outline: none;
}

.field:focus {
  border-color: rgba(14, 203, 129, 0.55);
  box-shadow: 0 0 0 4px var(--green-dim);
}

.help {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}

.alert {
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--green-dim);
  color: var(--green-2);
  font-size: 13.5px;
  margin-bottom: 14px;
  border: 1px solid rgba(14, 203, 129, 0.2);
}

.alert.warn {
  background: var(--gold-dim);
  color: #f5d56a;
  border-color: rgba(240, 185, 11, 0.2);
}

.how-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 22px;
}

.how-list li {
  display: flex;
  gap: 10px;
  background: #0b1017;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  font-size: 14px;
}

.how-list b {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-dim);
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: Inter, sans-serif;
  font-size: 12px;
}

.hidden { display: none !important; }

.success-box {
  text-align: center;
  padding: 32px 12px;
}

.success-box h2 {
  margin: 12px 0 8px;
}

/* Report extras */
.report-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13.5px;
  margin: 10px 0 28px;
}

.bars {
  display: grid;
  gap: 10px;
}

.bar-row {
  display: grid;
  grid-template-columns: 110px 1fr 52px;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}

.bar-track {
  height: 8px;
  background: #0b1017;
  border-radius: 99px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 99px;
  background: var(--green);
}

.bar-fill.bad {
  background: var(--red);
}

/* Legal */
.prose {
  max-width: 760px;
  margin: 0 auto;
}

.prose h2 {
  font-size: 20px;
  margin: 28px 0 10px;
}

.prose p, .prose li {
  color: var(--text-2);
  margin-bottom: 10px;
}

.prose ul {
  padding-right: 18px;
  list-style: disc;
}

@media (max-width: 1024px) {
  .hero-grid,
  .ai-layout,
  .wizard,
  .split,
  .app {
    grid-template-columns: 1fr;
  }

  .mock-frame {
    transform: none;
  }

  .float-1, .float-2 {
    display: none;
  }

  .steps::before {
    display: none;
  }

  .side {
    position: relative;
    height: auto;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    flex-direction: row;
    overflow-x: auto;
  }

  .side-foot { display: none; }
}

@media (max-width: 860px) {
  .nav, .header-cta .btn-ghost { display: none; }
  .menu-btn { display: inline-flex; }
  .cards-3, .kpis, .stats, .steps {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 28px; }
  .section { padding: 72px 0; }
  .header-cta .btn-primary { display: none; }
}

@media (max-width: 560px) {
  .wrap, .header-inner {
    width: calc(100% - 28px);
  }
  .hero-actions .btn,
  .final .btn,
  .form-card .btn-primary,
  .ai-aside .btn {
    width: 100%;
  }
  .hero-actions { display: grid; }
  .trust-bar { flex-direction: column; gap: 8px; }
  .app-main { padding: 16px; }
}
