:root {
  --bg: #070b10;
  --bg-soft: #0b1117;
  --bg-card: #111923;
  --ink: #f5f7fa;
  --ink-muted: rgba(245, 247, 250, 0.72);
  --paper: #f5f6f2;
  --paper-2: #ebeee8;
  --text: #111417;
  --text-muted: #5d656c;
  --line: rgba(17, 20, 23, 0.12);
  --line-dark: rgba(255, 255, 255, 0.12);
  --green: #f4cd27;
  --green-dark: #2d2104;
  --blue: #54d3c2;
  --blue-dark: #174f48;
  --orange: #ffb86b;
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  --container: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-bottom: 86px;
  font-family: 'Onest', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img, svg { max-width: 100%; }

.page-shell { overflow-x: clip; }
.container { width: var(--container); margin: 0 auto; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100vw - 28px));
  height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 8px 10px 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(9, 13, 19, 0.74);
  color: #fff;
  backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}
.site-header.is-scrolled { background: rgba(9, 13, 19, 0.9); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 760; letter-spacing: -0.04em; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: visible;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(244, 188, 28, 0.24));
}
.brand-text { font-size: 18px; }
.main-nav { display: flex; justify-content: center; gap: 6px; }
.main-nav a {
  color: rgba(255,255,255,0.74);
  padding: 12px 14px;
  border-radius: 999px;
  font-size: 14px;
  transition: background .2s ease, color .2s ease;
}
.main-nav a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.header-cta {
  padding: 14px 18px;
  border-radius: 999px;
  background: #fff;
  color: #0a0f14;
  font-size: 14px;
  font-weight: 700;
}

.section { padding: 110px 0; }
.section-dark { color: var(--ink); background: var(--bg); }
.section-light { background: var(--paper); }
.section-muted { background: var(--paper-2); }
.compact { padding: 78px 0; }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 126px 0 78px;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: -1; }
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(85, 214, 255, 0.2), transparent 28%),
    radial-gradient(circle at 72% 24%, rgba(183, 255, 90, 0.16), transparent 30%),
    linear-gradient(180deg, #070b10 0%, #0b1117 58%, #070b10 100%);
}
.orb { position: absolute; border-radius: 999px; filter: blur(14px); opacity: .65; }
.orb-one { width: 320px; height: 320px; right: 8%; top: 18%; background: rgba(85,214,255,.16); }
.orb-two { width: 240px; height: 240px; left: 8%; bottom: 10%; background: rgba(183,255,90,.13); }
.grid-glow {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .82fr);
  gap: 54px;
  align-items: center;
}
.hero-copy { min-width: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--text-muted); }
.eyebrow span {
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 860px;
  margin-bottom: 26px;
  font-size: clamp(2.55rem, 5.25vw, 5.6rem);
  line-height: .95;
  letter-spacing: -0.065em;
  font-weight: 800;
}
.hero-lead {
  max-width: 760px;
  margin-bottom: 34px;
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  line-height: 1.52;
  letter-spacing: -0.015em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 760;
  letter-spacing: -0.02em;
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.99); }
.btn-primary { background: linear-gradient(135deg, var(--green), #d8ff93); color: var(--green-dark); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.16); }
.btn.full { width: 100%; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-proof span {
  color: rgba(255,255,255,.74);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
  max-width: 760px;
}
.hero-metrics div {
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
}
.hero-metrics b {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 20px;
  letter-spacing: -0.04em;
}
.hero-metrics small {
  display: block;
  color: rgba(255,255,255,.62);
  line-height: 1.42;
}
.deal-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.055));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.deal-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-lg) - 1px);
  pointer-events: none;
  background: linear-gradient(135deg, rgba(183,255,90,.16), transparent 45%, rgba(85,214,255,.12));
}
.deal-card > * { position: relative; }
.deal-card-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,.74);
  font-size: 14px;
  margin-bottom: 18px;
}
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(183,255,90,.13); }
.amount-panel {
  padding: 26px;
  border-radius: 26px;
  background: #f4f7ee;
  color: var(--text);
  margin-bottom: 14px;
}
.amount-panel span { color: var(--text-muted); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.amount-panel strong { display: block; margin: 9px 0 12px; font-size: clamp(1.45rem, 2.4vw, 2.1rem); line-height: 1.04; letter-spacing: -0.045em; }
.amount-panel p { margin: 0; color: var(--text-muted); line-height: 1.45; }
.route-stack { display: grid; gap: 10px; }
.route-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
}
.route-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.72);
  font-weight: 800;
}
.route-step.active span { background: var(--green); color: var(--green-dark); }
.route-step b { display: block; font-size: 15px; }
.route-step small { display: block; margin-top: 3px; color: rgba(255,255,255,.58); }

.ticker { overflow: hidden; background: #dfe6dc; border-block: 1px solid rgba(17,20,23,.1); }
.ticker-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 18px 0;
  animation: ticker 34s linear infinite;
}
.ticker-track span {
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  color: #202429;
  font-size: 14px;
  font-weight: 760;
  white-space: nowrap;
}
@keyframes ticker { to { transform: translateX(-50%); } }

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 70px;
  align-items: end;
  margin-bottom: 44px;
}
h2 {
  font-size: clamp(2rem, 3.65vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 800;
}
.split-heading p:last-child, .process-intro p, .promise-copy p, .trust-panel p, .request-copy p {
  color: var(--text-muted);
  line-height: 1.62;
  font-size: 17px;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.case-card {
  min-height: 255px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
}
.case-card.featured {
  background: #101820;
  color: #fff;
  border-color: #101820;
}
.case-index {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(17,20,23,.07);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 24px;
}
.featured .case-index { background: rgba(255,255,255,.12); color: rgba(255,255,255,.74); }
.case-card h3 { margin: 0 0 12px; font-size: 25px; line-height: 1.08; letter-spacing: -0.04em; }
.case-card p { margin: 0; color: var(--text-muted); line-height: 1.52; }
.featured p { color: rgba(255,255,255,.72); }
.case-link {
  margin-top: auto;
  padding-top: 22px;
  color: #111417;
  font-weight: 820;
  letter-spacing: -0.025em;
}
.featured .case-link { color: var(--green); }

.promise-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: 70px;
  align-items: center;
}
.promise-copy p { color: rgba(255,255,255,.72); }
.inline-link { color: var(--green); font-weight: 800; }

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: 70px;
}
.process-intro { position: sticky; top: 120px; align-self: start; }
.process-list { display: grid; gap: 14px; counter-reset: process; }
.process-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
}
.process-list span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #101820;
  color: #fff;
  font-weight: 800;
}
.process-list h3 { margin: 0 0 8px; font-size: 22px; letter-spacing: -0.035em; }
.process-list p { grid-column: 2; margin: 0; color: var(--text-muted); line-height: 1.55; }

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}
.trust-panel {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: #101820;
  color: #fff;
}
.trust-panel p { color: rgba(255,255,255,.72); }
.trust-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.trust-cards div {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
}
.trust-cards b { display: block; margin-bottom: 10px; font-size: 20px; letter-spacing: -0.035em; }
.trust-cards span { color: var(--text-muted); line-height: 1.5; }

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: 70px;
}
.why-list {
  display: grid;
  gap: 18px;
  font-size: 20px;
  line-height: 1.55;
}
.why-list p { margin: 0; padding-bottom: 18px; border-bottom: 1px solid var(--line); color: var(--text-muted); }
.why-list strong { color: var(--text); }

.terms-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.term-card,
.audience-grid div {
  min-height: 210px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
}
.term-card b,
.audience-grid b {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.term-card span,
.audience-grid span {
  display: block;
  color: var(--text-muted);
  line-height: 1.55;
}
.audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.audience-grid div { min-height: 170px; background: #fff; }

.request-section { position: relative; overflow: hidden; }
.request-section::before {
  content: "";
  position: absolute;
  inset: auto -12% -40% 46%;
  height: 540px;
  background: radial-gradient(circle, rgba(183,255,90,.18), transparent 64%);
  pointer-events: none;
}
.request-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, .72fr);
  gap: 70px;
  align-items: start;
}
.request-copy p { color: rgba(255,255,255,.72); }
.mini-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}
.mini-checklist li {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.78);
  font-weight: 700;
}
.lead-form {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow);
  scroll-margin-top: 92px;
}
.form-title { margin-bottom: 18px; }
.form-title h3 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.045em;
}
.form-title p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.5;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.field { display: grid; gap: 8px; margin-bottom: 14px; }
.field span { color: #333b42; font-size: 13px; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(17,20,23,.14);
  border-radius: 16px;
  background: #f7f8f5;
  color: var(--text);
  padding: 14px 15px;
  outline: 0;
  transition: border .18s ease, box-shadow .18s ease, background .18s ease;
}
.field textarea { resize: vertical; min-height: 116px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(47,134,255,.55); box-shadow: 0 0 0 4px rgba(85,214,255,.16); background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 6px 0 16px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.42;
}
.consent input { margin-top: 2px; accent-color: #6fd12e; }
.form-note { min-height: 20px; margin: 12px 0 0; color: var(--text-muted); font-size: 13px; line-height: 1.4; }
.form-note.success { color: #226b19; font-weight: 750; }
.form-note.error { color: #a3322b; font-weight: 750; }

.faq-grid { display: grid; grid-template-columns: minmax(0, .55fr) minmax(0, 1fr); gap: 70px; }
.faq-list { display: grid; gap: 12px; }
details {
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px 22px;
}
summary { cursor: pointer; font-size: 18px; font-weight: 800; letter-spacing: -0.03em; }
details p { color: var(--text-muted); line-height: 1.6; margin: 14px 0 0; }

.site-footer {
  background: #060a0f;
  color: #fff;
  padding: 48px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto minmax(320px, .8fr);
  gap: 34px;
  align-items: start;
}
.footer-brand { margin-bottom: 14px; }
.site-footer p { color: rgba(255,255,255,.58); line-height: 1.55; margin-bottom: 0; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.78); font-weight: 700; }
.legal-note { font-size: 12px; }
.sticky-lead {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 16px);
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(520px, calc(100vw - 28px));
  padding: 10px 10px 10px 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(8,12,17,.88);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  backdrop-filter: blur(18px) saturate(160%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.sticky-lead.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.sticky-lead span {
  flex: 1;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 700;
}
.sticky-lead a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--green);
  color: var(--green-dark);
  font-weight: 820;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  .main-nav { display: none; }
  .hero-grid, .split-heading, .promise-grid, .process-layout, .trust-grid, .why-grid, .request-grid, .faq-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .deal-card { max-width: 560px; }
  .case-grid, .terms-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-intro { position: static; }
  .footer-grid { gap: 24px; }
}
@media (max-width: 640px) {
  :root { --container: min(100vw - 28px, 1180px); }
  .site-header { top: 10px; width: calc(100vw - 20px); height: 58px; padding: 7px 8px 7px 12px; gap: 10px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-text { font-size: 16px; }
  .header-cta { padding: 12px 13px; font-size: 13px; }
  .section { padding: 74px 0; }
  .compact { padding: 58px 0; }
  .hero { padding-top: 104px; padding-bottom: 56px; }
  h1 { font-size: clamp(2.45rem, 13vw, 4.2rem); line-height: .96; letter-spacing: -0.06em; }
  h2 { font-size: clamp(2rem, 9.2vw, 3rem); }
  .hero-lead { font-size: 1.02rem; }
  .hero-metrics { grid-template-columns: 1fr; }
  .hero-metrics div { min-height: auto; }
  .btn { width: 100%; min-height: 54px; }
  .hero-proof { display: grid; grid-template-columns: 1fr; }
  .deal-card, .lead-form, .trust-panel { border-radius: 24px; padding: 16px; }
  .amount-panel { padding: 20px; border-radius: 20px; }
  .case-grid, .trust-cards, .mini-checklist, .form-row, .terms-grid, .audience-grid { grid-template-columns: 1fr; }
  .case-card { min-height: 220px; padding: 20px; }
  .term-card, .audience-grid div { min-height: auto; padding: 20px; }
  .process-list article { grid-template-columns: 1fr; }
  .process-list p { grid-column: auto; }
  .faq-list details { padding: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition: none !important; }
}
