/* ============ Tiger Capital Funding — Refresh ============ */
:root {
  /* Palette */
  --ink: #0e0d0b;
  --ink-2: #1a1814;
  --ink-soft: #2a2620;
  --paper: #f6f1e7;        /* warm ivory */
  --paper-2: #efe7d6;
  --paper-3: #e8dec7;
  --rule: rgba(14, 13, 11, 0.14);
  --rule-soft: rgba(14, 13, 11, 0.08);
  --orange: #e85a1a;       /* tiger */
  --orange-deep: #c8430b;
  --orange-soft: #f3b585;
  --cream: #fff9ee;
  --gold: #c89b4d;
  --muted: #6b6358;

  /* Type */
  --serif: "Instrument Serif", "Times New Roman", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Sizing */
  --maxw: 1320px;
  --pad: clamp(20px, 4vw, 56px);
}

/* Theme: dark hero override option */
[data-theme="ink"] {
  --bg: var(--ink);
  --fg: var(--paper);
}
[data-theme="paper"] {
  --bg: var(--paper);
  --fg: var(--ink);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ============ Layout primitives ============ */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 0.95;
  font-size: clamp(48px, 8.4vw, 132px);
}
.h-display em {
  font-style: italic;
  color: var(--orange);
}
.h-section {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 0.98;
  font-size: clamp(40px, 5.2vw, 78px);
  margin: 0;
}
.h-section em {
  font-style: italic;
  color: var(--orange);
}

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
  color: var(--ink-soft);
  max-width: 640px;
}

.body-md {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}

.mono { font-family: var(--mono); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--orange);
  color: var(--cream);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-deep); border-color: var(--orange-deep); }
.btn-ink {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-ink:hover { background: #000; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn .arrow {
  width: 18px; height: 18px; flex: 0 0 18px;
}

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--rule-soft);
  backdrop-filter: blur(14px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 36px; height: 36px;
  background: var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--orange); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.nav-phone .dot {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  margin-right: 8px;
  animation: pulse 2.4s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.nav-mobile { display: none; }

@media (max-width: 880px) {
  .nav-links, .nav-phone { display: none; }
  .nav-mobile { display: block; font-family: var(--mono); font-size: 12px; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--paper);
  padding: clamp(40px, 7vw, 96px) 0 clamp(60px, 8vw, 110px);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding-bottom: 28px;
  margin-bottom: clamp(28px, 4vw, 48px);
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta .mark { color: var(--ink); }

.hero h1 {
  margin: 0;
}

.hero-sub {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 560px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.hero-fineprint {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-fineprint span { display: inline-flex; align-items: center; gap: 6px; }
.hero-fineprint span::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange);
}

/* Calculator card */
.qual-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: 22px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.qual-card::after {
  /* subtle grain via gradient */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 60% at 100% 0%, rgba(232,90,26,0.18), transparent 60%),
    radial-gradient(80% 60% at 0% 100%, rgba(255,255,255,0.04), transparent 60%);
  pointer-events: none;
}
.qual-head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.6);
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.qual-amount {
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 92px);
  line-height: 1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.qual-amount .currency {
  font-size: 0.5em;
  vertical-align: top;
  color: var(--orange);
  margin-right: 6px;
}
.qual-amount sup {
  font-size: 0.32em;
  font-family: var(--mono);
  font-style: normal;
  margin-left: 8px;
  color: rgba(246,241,231,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: top;
}
.qual-track {
  margin-top: 22px;
  position: relative;
  z-index: 1;
}
.qual-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(246,241,231,0.18);
  border-radius: 999px;
  outline: none;
}
.qual-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange);
  border: 4px solid var(--cream);
  cursor: grab;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.qual-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange);
  border: 4px solid var(--cream);
  cursor: grab;
}
.qual-scale {
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(246,241,231,0.45);
  margin-top: 10px;
}
.qual-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(246,241,231,0.12);
  position: relative; z-index: 1;
}
.qual-stat .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246,241,231,0.5);
  margin-bottom: 6px;
}
.qual-stat .v {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.qual-stat .v em {
  font-style: italic;
  color: var(--orange);
}
.qual-cta {
  margin-top: 22px;
  width: 100%;
  justify-content: center;
  background: var(--orange);
  color: var(--cream);
  border-color: var(--orange);
  position: relative; z-index: 1;
}
.qual-cta:hover { background: var(--orange-deep); }
.qual-foot {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246,241,231,0.5);
  position: relative; z-index: 1;
}

/* Live ticker strip */
.ticker {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--ink-2);
  border-bottom: 1px solid var(--ink-2);
}
.ticker-track {
  display: flex;
  gap: 48px;
  padding: 14px 0;
  white-space: nowrap;
  animation: ticker 38s linear infinite;
  width: max-content;
}
.ticker-item { display: inline-flex; align-items: center; gap: 12px; }
.ticker-item .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
}
.ticker-item .city { color: var(--orange-soft); }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ Trust strip ============ */
.trust {
  background: var(--paper);
  padding: clamp(36px, 5vw, 56px) 0;
  border-bottom: 1px solid var(--rule);
}
.trust-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
@media (max-width: 800px) {
  .trust-inner { grid-template-columns: 1fr; }
}
.trust-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.6;
}
.trust-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 2.5vw, 36px);
  align-items: center;
}
@media (max-width: 700px) { .trust-logos { grid-template-columns: repeat(3, 1fr); } }
.trust-logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  text-align: center;
  border-left: 1px solid var(--rule);
  padding: 6px 0 6px 14px;
  opacity: 0.85;
}
.trust-logo:first-child { border-left: none; padding-left: 0; }
.trust-logo small {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ============ Stats Band ============ */
.stats {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(60px, 9vw, 130px) 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 100% at 100% 0%, rgba(232,90,26,0.22), transparent 70%);
  pointer-events: none;
}
.stats-inner { position: relative; z-index: 1; }
.stats-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 40px; flex-wrap: wrap;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(246,241,231,0.18);
  margin-bottom: 50px;
}
.stats-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 78px);
  line-height: 1;
  letter-spacing: -0.02em;
  max-width: 900px;
}
.stats-head h2 em { font-style: italic; color: var(--orange); }
.stats-head p {
  margin: 0;
  max-width: 360px;
  color: rgba(246,241,231,0.7);
  font-size: 15px;
  line-height: 1.55;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 880px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 0 clamp(14px, 2vw, 28px);
  border-left: 1px solid rgba(246,241,231,0.18);
}
.stat:first-child { padding-left: 0; border-left: none; }
.stat .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246,241,231,0.6);
  margin-bottom: 18px;
}
.stat .v {
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.022em;
}
.stat .v em { font-style: italic; color: var(--orange); }
.stat .v sup {
  font-size: 0.4em;
  font-family: var(--mono);
  font-style: normal;
  letter-spacing: 0.02em;
  vertical-align: top;
  color: rgba(246,241,231,0.55);
}
.stat .desc {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(246,241,231,0.65);
  line-height: 1.5;
  max-width: 22ch;
}

/* ============ Section frame ============ */
.section {
  padding: clamp(70px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--rule);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 70px);
}
@media (max-width: 800px) { .section-head { grid-template-columns: 1fr; } }
.section-head .copy { max-width: 720px; }
.section-head .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}
@media (max-width: 800px) { .section-head .meta { text-align: left; } }

/* ============ Products ============ */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (max-width: 900px) { .products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .products { grid-template-columns: 1fr; } }

.product {
  background: var(--paper);
  padding: 36px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.product:hover { background: var(--ink); color: var(--paper); }
.product:hover .product-num { color: var(--orange); }
.product:hover .product-arrow { background: var(--orange); color: var(--cream); transform: translate(2px,-2px); }
.product:hover .product-meta, .product:hover .product-desc { color: rgba(246,241,231,0.7); }

.product-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  transition: color .2s ease;
}
.product-title {
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1;
  letter-spacing: -0.018em;
  margin: 0;
  margin-top: 4px;
}
.product-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}
.product-meta {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.product:hover .product-meta { border-color: rgba(246,241,231,0.18); }
.product-arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--ink);
  display: grid; place-items: center;
  transition: all .2s ease;
}

/* ============ How it works ============ */
.how {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  position: relative;
}
@media (max-width: 900px) { .how { grid-template-columns: 1fr; } }
.step {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
  display: flex; flex-direction: column;
  gap: 14px;
  position: relative;
}
.step-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--orange);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.step-num .time {
  color: var(--muted);
}
.step-title {
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1;
  letter-spacing: -0.014em;
  margin: 0;
}
.step-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 38ch;
}
.step-detail {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--paper-2);
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  line-height: 1.6;
}
.step-detail .ok {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink);
}
.step-detail .ok::before {
  content: "✓"; color: var(--orange); font-weight: 700;
}

/* ============ Testimonials ============ */
.testimonials {
  background: var(--paper-2);
  padding: clamp(70px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
}
.tlist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
}
@media (max-width: 900px) { .tlist { grid-template-columns: 1fr; } }

.tcard {
  background: var(--paper);
  padding: 32px 28px;
  border-radius: 16px;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.tcard.featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.tcard.featured .tperson .name { color: var(--paper); }
.tcard.featured .tperson .biz { color: rgba(246,241,231,0.6); }
.tcard.featured .tmeta { color: rgba(246,241,231,0.5); }

.tquote {
  font-family: var(--serif);
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
}
.tquote::before { content: "\201C"; color: var(--orange); font-size: 1.1em; line-height: 0; vertical-align: -0.1em; margin-right: 2px;}

.tperson {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.tcard.featured .tperson { border-top-color: rgba(246,241,231,0.18); }
.tavatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange-soft);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  display: grid; place-items: center;
  flex: 0 0 48px;
}
.tperson .name { font-weight: 500; font-size: 15px; }
.tperson .biz { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; margin-top: 2px;}
.tmeta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 14px;
}
.tmeta .stars { color: var(--orange); letter-spacing: 0.1em; }

/* ============ Apply CTA Section ============ */
.apply {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(70px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.apply::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 0% 100%, rgba(232,90,26,0.22), transparent 70%);
  pointer-events: none;
}
.apply-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
  position: relative; z-index: 1;
}
@media (max-width: 900px) { .apply-grid { grid-template-columns: 1fr; } }

.apply h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0;
}
.apply h2 em { font-style: italic; color: var(--orange); }
.apply-bullets {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 15px;
  color: rgba(246,241,231,0.78);
  max-width: 480px;
}
.apply-bullets li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  list-style: none;
  padding: 0;
}
.apply-bullets {
  padding: 0;
}
.apply-bullets li::before {
  content: "→";
  color: var(--orange);
  font-family: var(--mono);
  flex: 0 0 16px;
  margin-top: 2px;
}

.apply-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 22px;
  padding: 36px 32px;
}
.apply-card-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.apply-card-head .step {
  border: none; padding: 0;
  color: var(--orange);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select {
  font: inherit;
  font-size: 16px;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  outline: none;
  border-radius: 0;
}
.field input:focus, .field select:focus {
  border-bottom-color: var(--orange);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.amount-display {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.amount-display .currency { font-size: 0.5em; color: var(--orange); margin-right: 4px; vertical-align: top; }
.range-track input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--paper-3);
  border-radius: 999px;
  outline: none;
  margin-top: 10px;
}
.range-track input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange);
  border: 4px solid var(--paper);
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.range-track input[type=range]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange);
  border: 4px solid var(--paper);
}
.range-scale {
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 8px;
}
.apply-submit {
  margin-top: 14px;
  width: 100%;
  justify-content: center;
}
.apply-disclaim {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

/* Apply form success state (shown after submit) */
.apply-success {
  text-align: center;
  padding: 18px 6px 8px;
}
.apply-success-mark {
  width: 54px;
  height: 54px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
}
.apply-success h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.apply-success p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 36ch;
  margin: 0 auto 10px;
}
.apply-success-foot {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 18px !important;
}
.apply-success-foot a { color: var(--orange); }

/* ============ Footer ============ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(60px, 8vw, 100px) 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 50px);
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(246,241,231,0.12);
}
@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
.footer-brand {
  display: flex; flex-direction: column; gap: 16px;
}
.footer-brand .brand { color: var(--paper); }
.footer-brand .brand-mark { background: var(--orange); color: var(--ink); }
.footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.35;
  color: rgba(246,241,231,0.78);
  max-width: 30ch;
  margin: 6px 0 0;
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246,241,231,0.55);
  margin: 0 0 18px;
  font-weight: 400;
}
.footer-col a, .footer-col li {
  display: block;
  font-size: 14px;
  color: rgba(246,241,231,0.85);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--orange); }
.footer-contact .phone {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin-bottom: 4px;
}
.footer-contact .phone:hover { color: var(--orange); }
.footer-contact .email {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--orange);
}
.footer-contact .addr {
  font-size: 13px;
  color: rgba(246,241,231,0.65);
  line-height: 1.6;
  margin-top: 14px;
  max-width: 24ch;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(246,241,231,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-disclaim {
  margin-top: 30px;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: rgba(246,241,231,0.4);
  max-width: 920px;
}

/* ============ Hero variants ============ */
/* Variant A (calculator) is the default */

/* Variant B: editorial statement */
.hero[data-variant="editorial"] .qual-card { display: none; }
.hero[data-variant="editorial"] .hero-grid { grid-template-columns: 1fr; }
.hero[data-variant="editorial"] .h-display {
  font-size: clamp(64px, 11vw, 180px);
}
.hero[data-variant="editorial"] .editorial-aside {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
}
@media (max-width: 800px) {
  .hero[data-variant="editorial"] .editorial-aside { grid-template-columns: repeat(2, 1fr); }
}
.editorial-aside { display: none; }
.hero[data-variant="editorial"] .editorial-aside { display: grid; }
.ea {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ea .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.ea .v {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.014em;
}
.ea .v em { font-style: italic; color: var(--orange); }
.ea .d { font-size: 12px; color: var(--muted); }

/* Variant C: split form */
.hero[data-variant="split"] .qual-card { display: none; }
.split-form { display: none; }
.hero[data-variant="split"] .split-form {
  display: block;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 22px;
  padding: 32px 28px;
}

/* hide hero-sub fineprint subtly on split */
.hero[data-variant="split"] .h-display {
  font-size: clamp(44px, 6.6vw, 96px);
}

/* Anim: subtle fade up on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.is-in {
  opacity: 1;
  transform: none;
}

/* SR only */
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
