/* ===== Keyquest Funding — corporate design system ===== */

:root {
  --navy-900: #061325;
  --navy-800: #0a1f3d;
  --navy-700: #112d52;
  --navy-600: #1a3a6b;
  --navy-500: #2c4f80;
  --navy-50:  #eef2f8;

  --gold-700: #8c6f1f;
  --gold-600: #a98325;
  --gold-500: #c69b32;
  --gold-400: #d4a64a;
  --gold-100: #f5edda;

  --slate-900: #0a1929;
  --slate-700: #2d3a4f;
  --slate-600: #4a5568;
  --slate-500: #6b7587;
  --slate-400: #94a0b3;
  --slate-300: #c1cad8;
  --slate-200: #dde3ec;
  --slate-100: #eef2f7;
  --slate-50:  #f7f9fc;

  --paper: #ffffff;
  --green-700: #04603e;
  --green-500: #0a7a4f;
  --red-600: #b91c1c;

  --shadow-sm: 0 1px 2px rgba(10, 25, 41, 0.04), 0 1px 3px rgba(10, 25, 41, 0.06);
  --shadow:    0 1px 2px rgba(10, 25, 41, 0.04), 0 8px 24px rgba(10, 25, 41, 0.08);
  --shadow-lg: 0 1px 2px rgba(10, 25, 41, 0.04), 0 24px 48px -16px rgba(10, 25, 41, 0.18);

  --radius:    2px;
  --radius-md: 4px;
  --radius-lg: 6px;

  --sans: -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --display: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --mono: "SF Mono", "JetBrains Mono", "Roboto Mono", ui-monospace, "Menlo", monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--slate-900);
  background: var(--paper);
  line-height: 1.55;
  font-size: 15.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

a { color: var(--navy-700); text-decoration: none; }
a:hover { color: var(--gold-600); }

img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--navy-800); color: white; }

/* ===== Layout ===== */
.wrap         { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow  { max-width: 880px; margin: 0 auto; padding: 0 32px; }

/* ===== Top utility bar ===== */
.utility-bar {
  background: var(--navy-900);
  color: var(--slate-300);
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.utility-bar .wrap {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.utility-bar .ticker {
  display: flex; gap: 24px; font-family: var(--mono); font-size: 11px; align-items: center;
  color: var(--slate-400);
}
.utility-bar .ticker span strong { color: white; margin-right: 6px; }
.utility-bar .ticker .up { color: #34d399; }
.utility-bar nav { display: flex; gap: 24px; }
.utility-bar nav a { color: var(--slate-300); }
.utility-bar nav a:hover { color: white; }

/* ===== Header ===== */
.site-header {
  background: white;
  border-bottom: 1px solid var(--slate-200);
  position: sticky; top: 0; z-index: 50;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  letter-spacing: -0.005em;
}
.brand-mark {
  width: 40px; height: 40px;
  background: var(--navy-800); color: white;
  display: grid; place-items: center;
  border-radius: var(--radius);
  font-family: var(--display); font-weight: 700;
  font-size: 18px;
  position: relative;
  box-shadow: inset 0 -3px 0 var(--gold-500);
}
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.015em;
  color: var(--navy-900);
  line-height: 1;
}
.brand-name .sub {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--slate-500);
  margin-top: 4px;
}

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none; padding: 0; margin: 0;
}
.nav-links a {
  color: var(--slate-700); font-size: 14px; font-weight: 600;
  letter-spacing: -0.005em; padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 120ms ease, color 120ms ease;
}
.nav-links a:hover { color: var(--navy-800); border-bottom-color: var(--gold-500); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px; letter-spacing: 0.005em;
  border: 1px solid transparent;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease, transform 80ms ease;
  font-family: inherit;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--navy-800); color: white;
  border-color: var(--navy-800);
}
.btn-primary:hover { background: var(--navy-900); border-color: var(--navy-900); color: white; }
.btn-gold {
  background: var(--gold-500); color: var(--navy-900);
  border-color: var(--gold-500);
}
.btn-gold:hover { background: var(--gold-400); border-color: var(--gold-400); color: var(--navy-900); }
.btn-ghost {
  background: transparent; color: var(--navy-800);
  border-color: var(--slate-300);
}
.btn-ghost:hover { background: var(--slate-50); border-color: var(--slate-400); color: var(--navy-900); }
.btn-lg { padding: 16px 32px; font-size: 15px; }

.nav-toggle { display: none; }

/* ===== Hero ===== */
.hero {
  padding: 88px 0 0;
  background: linear-gradient(180deg, var(--paper) 0%, var(--slate-50) 100%);
  border-bottom: 1px solid var(--slate-200);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 166, 74, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: center;
  padding-bottom: 88px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy-700); font-weight: 700;
  font-family: var(--display);
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px; background: var(--gold-500); display: inline-block;
}

h1, .h1 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--navy-900);
}
.hero h1 {
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.05;
  margin: 24px 0 24px;
}
.hero .lede {
  font-size: 18px;
  color: var(--slate-600);
  max-width: 580px;
  line-height: 1.6;
  margin: 0;
}
.hero-cta { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

.hero-trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 56px; padding-top: 32px;
  border-top: 1px solid var(--slate-200);
}
.hero-trust > div {
  font-size: 12px; color: var(--slate-500); letter-spacing: 0.04em; text-transform: uppercase;
  font-weight: 600; padding-right: 24px;
}
.hero-trust strong {
  display: block; font-size: 28px; color: var(--navy-900); font-family: var(--display);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1; margin-bottom: 6px;
  text-transform: none;
}

.hero-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-card-head {
  background: var(--navy-900);
  color: white;
  padding: 18px 24px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 3px solid var(--gold-500);
}
.hero-card-head .ticker-id {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.06em; color: var(--slate-400);
}
.hero-card-head .ticker-id strong { color: white; margin-right: 8px; }
.hero-card-head .live {
  font-family: var(--mono); font-size: 10px;
  background: rgba(34, 197, 94, 0.15); color: #4ade80;
  padding: 4px 8px; border-radius: 100px; letter-spacing: 0.08em;
}
.hero-card-body { padding: 24px; }
.hero-card-body h3 {
  font-family: var(--display); font-weight: 600; font-size: 16px;
  margin: 0 0 4px; color: var(--navy-900); letter-spacing: -0.01em;
}
.hero-card-body .muted { color: var(--slate-500); font-size: 12.5px; margin: 0 0 20px; font-family: var(--mono); }
.hero-card-body .quote-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 11px 0; border-bottom: 1px solid var(--slate-100);
  font-size: 13.5px;
}
.hero-card-body .quote-row:last-child { border-bottom: none; padding-bottom: 0; }
.hero-card-body .quote-row span:first-child { color: var(--slate-600); }
.hero-card-body .quote-row .v { font-family: var(--mono); color: var(--navy-900); font-weight: 600; }
.hero-card-body .quote-row .v.green { color: var(--green-500); }
.hero-card-body .quote-row .v.gold { color: var(--gold-700); }

/* trust badge strip */
.trust-strip {
  background: var(--slate-50);
  padding: 36px 0;
  border-bottom: 1px solid var(--slate-200);
}
.trust-strip .wrap {
  display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap;
}
.trust-strip .label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--slate-500); font-weight: 700;
}
.trust-strip .badges {
  display: flex; gap: 32px; flex: 1; flex-wrap: wrap; justify-content: flex-end;
  align-items: center;
}
.trust-badge {
  font-family: var(--display); color: var(--slate-600);
  font-weight: 700; font-size: 13px; letter-spacing: -0.005em;
  display: flex; align-items: center; gap: 10px;
}
.trust-badge .dot { width: 6px; height: 6px; background: var(--gold-500); border-radius: 50%; }

/* ===== Sections ===== */
section { padding: 96px 0; }
.section-head {
  display: flex; flex-direction: column; align-items: flex-start;
  margin-bottom: 56px; max-width: 760px;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--navy-900);
  margin: 16px 0 16px;
}
.section-head p { color: var(--slate-600); font-size: 17px; max-width: 660px; margin: 0; line-height: 1.6; }

/* ===== Stats strip ===== */
.stats {
  background: var(--navy-900);
  color: white;
  padding: 80px 0;
  position: relative;
  background-image:
    linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
}
.stats::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-500) 50%, transparent 100%);
}
.stats .section-head h2 { color: white; }
.stats .section-head p { color: var(--slate-400); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stat:nth-child(4n) { border-right: none; }
.stat:nth-child(n+5) { border-bottom: none; }
.stat .num {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: white;
}
.stat .num .accent { color: var(--gold-400); }
.stat .label {
  margin-top: 12px; font-size: 12px; color: var(--slate-400);
  letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600;
}
.stat .footnote {
  font-family: var(--mono); font-size: 11px; color: var(--slate-500);
  margin-top: 8px;
}

/* ===== Products: featured + grid ===== */
.products-section { background: var(--slate-50); border-bottom: 1px solid var(--slate-200); }

.featured-product {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  display: grid; grid-template-columns: 1.1fr 1fr;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 160ms ease, transform 160ms ease;
}
.featured-product:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.featured-product .body { padding: 40px 44px; }
.featured-product .specs {
  background: var(--navy-900); color: white;
  padding: 40px 44px;
  position: relative;
}
.featured-product .specs::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: var(--gold-500);
}
.featured-product .product-no {
  font-family: var(--mono); font-size: 11px;
  color: var(--slate-500); letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.featured-product h3 {
  font-family: var(--display); font-weight: 700;
  font-size: 32px; letter-spacing: -0.025em; line-height: 1.1;
  margin: 0 0 8px; color: var(--navy-900);
}
.featured-product .tagline {
  font-size: 14px; color: var(--gold-700); font-weight: 600;
  letter-spacing: 0.02em; margin: 0 0 18px;
}
.featured-product .desc { color: var(--slate-600); font-size: 15.5px; line-height: 1.6; margin: 0 0 24px; }
.featured-product .uses {
  list-style: none; padding: 0; margin: 0 0 28px;
}
.featured-product .uses li {
  font-size: 14px; color: var(--slate-700);
  padding: 6px 0 6px 24px; position: relative;
}
.featured-product .uses li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 12px; height: 1px; background: var(--gold-500);
}
.featured-product .specs h4 {
  font-family: var(--display); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--slate-400); font-weight: 700; margin: 0 0 18px;
}
.featured-product .specs table {
  width: 100%; border-collapse: collapse; font-size: 13.5px;
}
.featured-product .specs td {
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.featured-product .specs td:first-child { color: var(--slate-400); width: 50%; }
.featured-product .specs td:last-child {
  font-family: var(--mono); color: white; font-weight: 600; text-align: right;
}
.featured-product .specs tr:last-child td { border-bottom: none; }
.featured-product .specs .gold { color: var(--gold-400); }

.featured-product .cta-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-top: 20px; border-top: 1px solid var(--slate-200);
}
.featured-product .speed {
  font-family: var(--mono); font-size: 12px; color: var(--green-500); font-weight: 600;
}

/* product index grid (compact list) */
.product-list-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--slate-200); border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); overflow: hidden;
}
.product-card {
  background: white;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background 140ms ease;
  position: relative;
  border-top: 3px solid transparent;
}
.product-card:hover { background: var(--slate-50); border-top-color: var(--gold-500); }
.product-card .product-no {
  font-family: var(--mono); font-size: 11px; color: var(--slate-500); letter-spacing: 0.1em;
}
.product-card h4 {
  font-family: var(--display); font-weight: 700;
  font-size: 19px; letter-spacing: -0.015em; line-height: 1.15;
  margin: 0; color: var(--navy-900);
}
.product-card .desc { color: var(--slate-600); font-size: 13.5px; line-height: 1.55; flex: 1; margin: 0; }
.product-card dl {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 16px; margin: 8px 0 0; padding: 14px 0 0;
  border-top: 1px solid var(--slate-200);
  font-size: 12px;
}
.product-card dt { color: var(--slate-500); margin: 0; font-weight: 600; letter-spacing: 0.02em; }
.product-card dd { margin: 0; font-family: var(--mono); color: var(--navy-900); font-weight: 600; }
.product-card a.read-more {
  font-size: 12.5px; font-weight: 600; color: var(--navy-700);
  letter-spacing: 0.02em; text-transform: uppercase; padding-top: 10px;
}

/* ===== Story / About ===== */
.story-section { background: white; }
.story-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: start; }
.story-grid h2 {
  font-family: var(--display); font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 600; letter-spacing: -0.025em; line-height: 1.12; margin: 16px 0 24px;
  color: var(--navy-900);
}
.story-body p { font-size: 16.5px; color: var(--slate-700); margin: 0 0 22px; line-height: 1.65; }
.story-body p strong { color: var(--navy-900); font-weight: 600; }
.story-body p .pull-num {
  font-family: var(--display); font-size: 22px; font-weight: 700;
  color: var(--gold-700); letter-spacing: -0.015em;
}

.timeline { list-style: none; padding: 0; margin: 0; }
.timeline li {
  position: relative; padding: 0 0 28px 28px;
  border-left: 1px solid var(--slate-200);
  margin-left: 6px;
}
.timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: -5px; top: 5px;
  width: 9px; height: 9px; background: var(--gold-500); border-radius: 50%;
  box-shadow: 0 0 0 4px white;
}
.timeline .yr {
  font-family: var(--mono); font-size: 11.5px; color: var(--gold-700);
  letter-spacing: 0.06em; font-weight: 700; text-transform: uppercase;
}
.timeline h4 {
  margin: 4px 0 6px; font-size: 16px; font-weight: 600;
  letter-spacing: -0.01em; color: var(--navy-900);
}
.timeline p { margin: 0; font-size: 14px; color: var(--slate-600); line-height: 1.55; }

/* ===== CTA strip ===== */
.cta-strip {
  background: var(--navy-900); color: white;
  border-radius: var(--radius-lg);
  padding: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
  position: relative; overflow: hidden;
  background-image:
    linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
}
.cta-strip::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold-500);
}
.cta-strip h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(26px, 3vw, 34px); letter-spacing: -0.025em;
  margin: 0; max-width: 600px; line-height: 1.15;
  color: white;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-900);
  color: var(--slate-300);
  padding: 80px 0 32px;
  border-top: 3px solid var(--gold-500);
}
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 64px;
}
.foot-grid h5 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: white; margin: 0 0 20px; font-weight: 700;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { margin-bottom: 12px; font-size: 14px; }
.foot-grid a { color: var(--slate-300); }
.foot-grid a:hover { color: white; }
.foot-grid .brand-block .brand-name { color: white; }
.foot-grid .brand-block .brand-name .sub { color: var(--slate-400); }
.foot-grid .brand-block p { color: var(--slate-400); font-size: 13px; line-height: 1.6; max-width: 320px; }
.foot-bot {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px;
  font-size: 12px; color: var(--slate-400);
  flex-wrap: wrap; gap: 16px;
}
.foot-bot p { margin: 0; max-width: 760px; line-height: 1.55; }
.foot-bot .legal-links { display: flex; gap: 24px; }
.foot-bot .legal-links a { color: var(--slate-400); }
.foot-bot .legal-links a:hover { color: white; }

/* ===== Apply page ===== */
.apply-shell {
  min-height: calc(100vh - 76px - 32px);
  background: var(--slate-50);
  padding: 48px 0 96px;
}
.apply-shell .wrap-narrow { max-width: 980px; }
.apply-frame {
  background: white;
  border: 1px solid var(--slate-200);
  border-top: 4px solid var(--gold-500);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.apply-frame-head {
  padding: 36px 56px 32px;
  border-bottom: 1px solid var(--slate-200);
  background: white;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 32px;
  flex-wrap: wrap;
}
.apply-frame-head h1 {
  font-family: var(--display); font-weight: 700;
  font-size: 32px; letter-spacing: -0.025em; line-height: 1.1;
  margin: 0; color: var(--navy-900);
}
.apply-frame-head p { margin: 8px 0 0; color: var(--slate-600); font-size: 14.5px; max-width: 480px; line-height: 1.55; }

.progress {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--slate-500); display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
  text-transform: uppercase; font-weight: 700;
  flex-shrink: 0;
}
.progress-bar {
  width: 200px; height: 4px; background: var(--slate-200); border-radius: 100px; overflow: hidden;
}
.progress-bar > span {
  display: block; height: 100%; background: var(--gold-500); transition: width 240ms ease;
}

.apply-body { padding: 56px 56px 48px; }
.step { display: none; animation: stepIn 280ms ease; }
.step.active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.step-num {
  font-family: var(--mono); font-size: 12px; color: var(--gold-700);
  letter-spacing: 0.1em; font-weight: 700; text-transform: uppercase;
  display: inline-block; padding: 6px 12px; background: var(--gold-100);
  border-radius: var(--radius);
}
.step h2 {
  font-family: var(--display); font-weight: 700;
  font-size: 38px; letter-spacing: -0.028em; line-height: 1.12;
  margin: 18px 0 12px; max-width: 700px;
  color: var(--navy-900);
}
.step .help {
  color: var(--slate-600); font-size: 16.5px; margin: 0 0 36px; max-width: 640px; line-height: 1.6;
}

.field { margin-bottom: 26px; }
.field-label {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy-900); margin-bottom: 10px;
}
.field-label .opt { font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--slate-500); margin-left: 8px; font-size: 12px; }
.field-input,
.field-select {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--slate-300);
  background: white;
  border-radius: var(--radius);
  font-family: inherit; font-size: 16.5px; color: var(--navy-900);
  transition: border-color 120ms ease, box-shadow 120ms ease;
  -webkit-appearance: none; appearance: none;
  font-weight: 500;
}
.field-input:focus,
.field-select:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 4px rgba(26, 58, 107, 0.12);
}
.field-input::placeholder { color: var(--slate-400); font-weight: 400; }

.field-row { display: grid; gap: 16px; }
.field-row.cols-2 { grid-template-columns: 1fr 1fr; }
.field-row.cols-3 { grid-template-columns: 2fr 1fr 1fr; }
.field-row.cols-21 { grid-template-columns: 2fr 1fr; }

.field-amount { position: relative; padding-bottom: 4px; }
.field-amount input {
  font-family: var(--display);
  font-size: 84px; font-weight: 700; letter-spacing: -0.04em;
  border: none; border-bottom: 3px solid var(--slate-200);
  border-radius: 0; padding: 16px 0 18px 64px;
  background: transparent;
  width: 100%; color: var(--navy-900);
  line-height: 1;
}
.field-amount input:focus { border-color: var(--gold-500); box-shadow: none; }
.field-amount::before {
  content: "$";
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--display); font-size: 76px; font-weight: 700;
  color: var(--slate-400); letter-spacing: -0.03em;
}
.amount-presets { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.amount-preset {
  background: white; border: 1px solid var(--slate-300);
  padding: 11px 18px; border-radius: var(--radius);
  font-size: 14px; color: var(--slate-700); cursor: pointer;
  font-family: inherit; font-weight: 600;
  transition: all 120ms ease;
}
.amount-preset:hover { background: var(--slate-50); border-color: var(--slate-400); color: var(--navy-900); }
.amount-preset.active { background: var(--navy-800); color: white; border-color: var(--navy-800); }

.options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.option {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 120ms ease;
  background: white;
  position: relative;
}
.option:hover { border-color: var(--navy-700); background: var(--slate-50); }
.option input { position: absolute; opacity: 0; pointer-events: none; }
.option-key {
  width: 32px; height: 32px;
  border: 1px solid var(--slate-300); border-radius: var(--radius);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--slate-600);
  flex-shrink: 0;
  background: var(--slate-50);
}
.option-text { font-size: 16px; color: var(--navy-900); font-weight: 500; }
.option.selected {
  border-color: var(--navy-800); background: var(--navy-50);
  border-width: 2px; padding: 19px 21px;
}
.option.selected .option-key { background: var(--navy-800); color: white; border-color: var(--navy-800); }

.toggle {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--slate-700); margin-bottom: 18px;
  cursor: pointer; user-select: none; font-weight: 500;
}
.toggle input { width: 16px; height: 16px; accent-color: var(--navy-800); }

.dropzone {
  display: block;
  width: 100%;
  border: 2px dashed var(--slate-300);
  border-radius: var(--radius-md);
  padding: 56px 32px;
  text-align: center;
  background: var(--slate-50);
  cursor: pointer;
  transition: border-color 120ms ease, background 120ms ease;
  box-sizing: border-box;
}
.dropzone:hover, .dropzone.drag {
  border-color: var(--navy-700);
  background: var(--navy-50);
}
.dropzone p { margin: 0; color: var(--slate-600); font-size: 15px; }
.dropzone .big {
  font-family: var(--display); font-size: 22px; color: var(--navy-900);
  font-weight: 700; letter-spacing: -0.015em; margin-bottom: 8px;
}
.dropzone input[type="file"] {
  display: none !important;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}
.file-list { margin-top: 14px; padding: 0; list-style: none; }
.file-list li {
  display: flex; justify-content: space-between; align-items: center;
  background: white; border: 1px solid var(--slate-200);
  padding: 10px 14px; border-radius: var(--radius);
  font-size: 13.5px; margin-bottom: 6px; color: var(--navy-900);
}
.file-list li button {
  background: none; border: none; color: var(--red-600); cursor: pointer; font-size: 13px;
  font-weight: 600; padding: 0;
}

.consent-text {
  font-size: 12px; color: var(--slate-600); line-height: 1.6;
  background: var(--slate-50); padding: 18px 20px;
  border: 1px solid var(--slate-200); border-radius: var(--radius);
  max-height: 200px; overflow-y: auto;
  margin-bottom: 22px;
}

.step-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--slate-200);
  gap: 12px;
}
.step-nav .btn-primary {
  background: var(--navy-800); color: white;
  padding: 18px 36px; font-size: 15.5px; font-weight: 700;
  letter-spacing: 0.005em;
}
.step-nav .btn-primary:hover { background: var(--navy-900); color: white; }
.step-nav .btn-back {
  background: none; border: none; color: var(--slate-500); font-size: 14.5px;
  font-weight: 600; cursor: pointer; padding: 10px 16px;
}
.step-nav .btn-back:hover { color: var(--navy-900); }

.field-error {
  color: var(--red-600); font-size: 12.5px; margin-top: 6px; display: none; font-weight: 500;
}
.field.invalid .field-input,
.field.invalid .field-select { border-color: var(--red-600); }
.field.invalid .field-error { display: block; }

.success-card { text-align: center; padding: 64px 32px; }
.success-card .check {
  width: 64px; height: 64px; margin: 0 auto 24px;
  background: var(--green-500); border-radius: 50%;
  display: grid; place-items: center; color: white; font-size: 28px;
}
.success-card h2 {
  font-family: var(--display); font-weight: 700; font-size: 32px;
  letter-spacing: -0.025em; margin: 0 0 12px; color: var(--navy-900);
}
.success-card p { color: var(--slate-600); font-size: 16px; max-width: 480px; margin: 0 auto 8px; line-height: 1.6; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .featured-product { grid-template-columns: 1fr; }
  .featured-product .specs::before { width: 100%; height: 3px; top: 0; left: 0; right: 0; bottom: auto; }
  .product-list-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 880px) {
  section { padding: 64px 0; }
  .wrap, .wrap-narrow { padding: 0 20px; }
  .hero { padding: 56px 0 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding-bottom: 64px; }
  .hero-trust { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(n+5) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat:nth-child(n+7) { border-bottom: none; }
  .product-list-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .field-row.cols-2, .field-row.cols-3, .field-row.cols-21 { grid-template-columns: 1fr; }
  .options { grid-template-columns: 1fr; }
  .apply-body { padding: 36px 24px 24px; }
  .apply-frame-head { padding: 24px; }
  .nav-links { display: none; }
  .utility-bar nav { display: none; }
  .nav-toggle {
    display: inline-flex; padding: 8px 14px; border: 1px solid var(--slate-300);
    background: transparent; border-radius: var(--radius); font-size: 13px;
    color: var(--navy-900); font-weight: 600;
  }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 76px; left: 0; right: 0;
    background: white; border-bottom: 1px solid var(--slate-200);
    padding: 8px 24px; box-shadow: var(--shadow);
  }
  .nav-links.open li { padding: 14px 0; border-bottom: 1px solid var(--slate-200); }
  .nav-links.open li:last-child { border-bottom: none; }
  .cta-strip { padding: 36px 28px; }
  .featured-product .body, .featured-product .specs { padding: 28px 24px; }
}
