:root {
  --bg: #13111C;
  --bg-surface: #1C1A27;
  --bg-card: #211F30;
  --fg: #F5F5F0;
  --fg-muted: #8A8899;
  --fg-dim: #5A5870;
  --accent: #F5A623;
  --accent-dim: #B87D1A;
  --green: #4ADE80;
  --amber: #F5A623;
  --border: rgba(245,166,35,0.12);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav__tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
}

/* ── SECTION LABEL ── */
.section__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ── HERO ── */
.hero {
  padding: 80px 40px 60px;
  border-bottom: 1px solid var(--border);
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero__bands {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}
.hero__band {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__band-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}
.hero__band-value {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent);
}
.hero__band-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Widget */
.hero__visual {
  display: flex;
  justify-content: center;
}
.hero__widget {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  max-width: 380px;
  font-size: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hero__widget-label {
  font-size: 11px;
  color: var(--fg-dim);
  margin-bottom: 16px;
  font-weight: 500;
}
.hero__widget-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--fg-muted);
}
.hero__widget-row--green { color: var(--green); }
.hero__widget-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.hero__widget-dot--amber { background: var(--amber); }
.hero__widget-dot--muted { background: var(--fg-dim); }
.hero__widget-status {
  margin-top: 16px;
  font-size: 13px;
  color: var(--fg-dim);
  font-style: italic;
}

/* ── VERTICALS ── */
.verticals {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}
.verticals__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.verticals__headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--fg);
  max-width: 600px;
  margin-bottom: 52px;
}
.verticals__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.verticals__card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 20px;
  transition: border-color 0.2s;
}
.verticals__card:hover { border-color: rgba(245,166,35,0.35); }
.verticals__icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.verticals__card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.verticals__card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── FEATURES ── */
.features {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}
.features__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features__headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--fg);
  max-width: 520px;
  margin-bottom: 52px;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.features__item {
  display: flex;
  gap: 16px;
  padding: 28px 28px;
  background: var(--bg-surface);
}
.features__item-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.features__item h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.features__item p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── PROCESS ── */
.process {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}
.process__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.process__headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--fg);
  max-width: 540px;
  margin-bottom: 52px;
}
.process__steps {
  display: flex;
  align-items: center;
  gap: 32px;
}
.process__step {
  flex: 1;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
}
.process__step-number {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.process__step h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.process__step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.process__step-arrow {
  color: var(--fg-dim);
  flex-shrink: 0;
}

/* ── STATS ── */
.stats {
  padding: 60px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}
.stats__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats__item {
  padding: 0 40px 0 0;
  border-right: 1px solid var(--border);
}
.stats__item:last-child { border-right: none; }
.stats__value {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.stats__label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-surface) 100%);
}
.closing__inner {
  max-width: 800px;
  margin: 0 auto;
}
.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing__sub {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.closing__closing {
  font-size: 15px;
  color: var(--fg-dim);
  font-style: italic;
  margin-bottom: 56px;
}

/* ── LEAD FORM ── */
.lead-form-wrapper {
  max-width: 560px;
  margin: 0 auto;
}
.lead-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  text-align: left;
}
.lead-form__title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--fg);
  margin-bottom: 28px;
  text-align: center;
}
.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.lead-form__input,
.lead-form__textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.2s;
}
.lead-form__input::placeholder,
.lead-form__textarea::placeholder {
  color: var(--fg-dim);
}
.lead-form__input:focus,
.lead-form__textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.lead-form__textarea {
  width: 100%;
  resize: vertical;
  min-height: 80px;
  margin-bottom: 16px;
}
.lead-form__submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #13111C;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.lead-form__submit:hover { background: #ffc04a; }
.lead-form__submit:disabled { opacity: 0.6; cursor: not-allowed; }
.lead-form__msg {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}
.lead-form__msg--success {
  background: rgba(74,222,128,0.12);
  color: var(--green);
  border: 1px solid rgba(74,222,128,0.2);
}
.lead-form__msg--error {
  background: rgba(214,48,49,0.12);
  color: #d63031;
  border: 1px solid rgba(214,48,49,0.2);
}

/* ── FOOTER ── */
.footer {
  padding: 60px 40px 32px;
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.footer__desc {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 340px;
  line-height: 1.6;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 4px;
}
.footer__links span {
  font-size: 14px;
  color: var(--fg-muted);
}
.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer__bottom p {
  font-size: 12px;
  color: var(--fg-dim);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .verticals__grid { grid-template-columns: repeat(3, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stats__item { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
  .stats__item:nth-child(3), .stats__item:nth-child(4) { border-bottom: none; }
  .process__steps { flex-direction: column; }
  .process__step-arrow { transform: rotate(90deg); }
}
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .hero { padding: 60px 20px 40px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { order: -1; }
  .hero__widget { max-width: 100%; }
  .verticals__grid { grid-template-columns: 1fr 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { flex-direction: column; }
  .closing { padding: 72px 20px; }
  .lead-form__row { grid-template-columns: 1fr; }
  .lead-form { padding: 24px 20px; }
}