:root {
  --bg: #050505;
  --bg-soft: #090909;
  --surface: rgba(17, 17, 17, 0.86);
  --surface-strong: rgba(22, 22, 22, 0.96);
  --surface-wash: rgba(255, 255, 255, 0.025);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 124, 62, 0.26);
  --text: #f4f1ed;
  --text-soft: rgba(244, 241, 237, 0.78);
  --muted: rgba(244, 241, 237, 0.56);
  --accent: #ff6a1a;
  --accent-bright: #ff8243;
  --accent-deep: #8b2e0f;
  --shadow-glow: 0 0 0 1px rgba(255, 124, 62, 0.08), 0 18px 60px rgba(0, 0, 0, 0.42);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 26, 0.12), transparent 24%),
    radial-gradient(circle at 20% 18%, rgba(131, 32, 6, 0.18), transparent 28%),
    linear-gradient(180deg, #040404 0%, #060606 42%, #040404 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.04));
  opacity: 0.34;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 106, 26, 0.08), transparent 18%),
    radial-gradient(circle at 80% 32%, rgba(255, 126, 62, 0.07), transparent 16%),
    radial-gradient(circle at 24% 68%, rgba(255, 106, 26, 0.05), transparent 18%);
  filter: blur(14px);
  z-index: -1;
}

a {
  color: inherit;
}

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

.shell {
  position: relative;
  isolation: isolate;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

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

.section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(var(--container), calc(100% - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), rgba(255, 106, 26, 0.18), rgba(255, 255, 255, 0.09), transparent);
}

.section:first-of-type::before {
  display: none;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0));
}

.section-toned {
  background:
    radial-gradient(circle at top center, rgba(255, 106, 26, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

h1, h2, h3, h4, p {
  margin: 0;
}

.section-title {
  max-width: 760px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
  text-wrap: balance;
}

.section-title .accent {
  color: var(--accent);
}

.section-lead {
  max-width: 620px;
  margin-top: 18px;
  font-size: 1.05rem;
  color: var(--muted);
}

.split-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 36px;
  margin-bottom: 52px;
}

.split-heading .section-lead {
  max-width: 360px;
  margin-top: 0;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.nav-inner {
  width: min(calc(var(--container) + 48px), calc(100% - 24px));
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}

.brand-wordmark {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text);
}

.brand-meta {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 241, 237, 0.45);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  color: rgba(244, 241, 237, 0.86);
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: auto;
  min-width: 110px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(255, 124, 62, 0.4);
  color: var(--accent);
  outline: none;
}

.nav-toggle-label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.nav-toggle-icon {
  position: relative;
  width: 16px;
  height: 12px;
}

.nav-toggle-line {
  position: absolute;
  left: 0;
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.nav-toggle-line:first-child {
  top: 2px;
}

.nav-toggle-line:last-child {
  top: 8px;
}

.nav-toggle.is-open .nav-toggle-line:first-child {
  top: 5px;
  transform: rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-line:last-child {
  top: 5px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 136px 0 80px;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 106, 26, 0.18), transparent 18%),
    radial-gradient(circle at 72% 28%, rgba(255, 106, 26, 0.14), transparent 12%),
    radial-gradient(circle at 84% 32%, rgba(255, 255, 255, 0.08), transparent 2.4%),
    radial-gradient(circle at 76% 56%, rgba(255, 255, 255, 0.05), transparent 1.8%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 48%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 12% 0 auto;
  height: 52%;
  background-image:
    radial-gradient(circle, rgba(255, 121, 58, 0.72) 0 1.5px, transparent 2px),
    linear-gradient(90deg, transparent 0 4%, rgba(255, 106, 26, 0.16) 4% 4.2%, transparent 4.2% 100%);
  background-size: 118px 118px, 160px 100%;
  background-position: center;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.95) 20%, rgba(0, 0, 0, 0.55) 78%, transparent);
  opacity: 0.32;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 620px;
}

.hero-copy {
  max-width: none;
  width: 100%;
  padding-right: 0;
}

.hero-title {
  font-size: clamp(4.2rem, 9.8vw, 8.6rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 800;
  max-width: none;
}

.hero-title .accent {
  color: var(--accent);
}

.hero-sub {
  max-width: 700px;
  margin-top: 26px;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 72px;
}

.stat {
  min-height: 144px;
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.stat-value {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: var(--text);
}

.stat-value span {
  color: var(--accent);
}

.stat-label {
  margin-top: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  color: #120701;
  box-shadow: 0 10px 28px rgba(255, 106, 26, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 14px 36px rgba(255, 106, 26, 0.28);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 124, 62, 0.46);
  color: var(--accent-bright);
}

.who-grid,
.terms-grid,
.connect-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  align-items: start;
  margin-top: 44px;
}

.who-text p,
.terms-text p,
.connect-copy p {
  color: var(--text-soft);
  font-size: 1rem;
  margin-top: 18px;
}

.who-text p:first-child,
.terms-text p:first-child,
.connect-copy p:first-child {
  margin-top: 0;
}

.who-text strong,
.terms-text strong,
.connect-copy strong {
  color: var(--text);
}

.quote-panel,
.term-panel,
.contact-panel {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}

.quote-panel::before,
.term-panel::before,
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 124, 62, 0.85), transparent 76%);
}

.quote-panel::after,
.contact-panel::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 106, 26, 0.12), transparent 70%);
  pointer-events: none;
}

.quote-text {
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.quote-text .accent {
  color: var(--accent);
}

.quote-sub {
  margin-top: 18px;
  color: var(--muted);
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.step-card {
  position: relative;
  padding: 26px 24px 24px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(255, 106, 26, 0.04), transparent 40%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 300px;
}

.step-no {
  font-size: 3.6rem;
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-weight: 800;
  color: rgba(255, 106, 26, 0.44);
}

.step-title {
  margin-top: 18px;
  font-size: 1.2rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.step-body {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.step-tag {
  display: inline-flex;
  margin-top: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 124, 62, 0.18);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 241, 237, 0.82);
  background: rgba(255, 106, 26, 0.06);
}

.why-grid,
.risks-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insight-card,
.risk-card {
  padding: 28px 26px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.014));
  transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.insight-card:hover,
.insight-card:focus-within,
.risk-card:hover,
.risk-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(255, 124, 62, 0.22);
}

.insight-kicker,
.risk-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 124, 62, 0.24);
  color: var(--accent);
  background: rgba(255, 106, 26, 0.06);
  font-size: 1rem;
}

.insight-card h3,
.risk-card h4 {
  margin-top: 18px;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.insight-card p,
.risk-card p {
  margin-top: 12px;
  font-size: 0.96rem;
  color: var(--muted);
}

.risk-card strong {
  color: var(--text);
}

.compare-wrap {
  margin-top: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.014));
  box-shadow: var(--shadow-glow);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.compare-table th,
.compare-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  vertical-align: middle;
}

.compare-table th {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 241, 237, 0.56);
  background: rgba(255, 255, 255, 0.015);
}

.compare-table th:last-child,
.compare-table td:last-child {
  color: var(--text);
}

.compare-table th:last-child {
  color: var(--accent);
}

.compare-table td {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.compare-table td:first-child {
  color: var(--text);
  font-weight: 600;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table tr:hover td {
  background: rgba(255, 255, 255, 0.018);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pill-yes {
  background: rgba(255, 106, 26, 0.12);
  color: #ff9b67;
  border: 1px solid rgba(255, 124, 62, 0.18);
}

.pill-no {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(244, 241, 237, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pill-mid {
  background: rgba(255, 151, 86, 0.1);
  color: #ffb488;
  border: 1px solid rgba(255, 151, 86, 0.16);
}

.term-panel {
  padding: 0;
}

.term-header {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 106, 26, 0.12), rgba(255, 106, 26, 0.04));
}

.term-header span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.term-list {
  display: grid;
}

.term-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.term-row:last-child {
  border-bottom: 0;
}

.term-key {
  color: var(--muted);
  font-size: 0.92rem;
}

.term-value {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: right;
}

.contact-meta {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.meta-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.meta-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  color: var(--accent);
  font-size: 1rem;
}

.meta-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 241, 237, 0.52);
}

.meta-copy span {
  color: var(--text-soft);
}

.contact-panel {
  padding: 28px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.field label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 241, 237, 0.54);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  font: inherit;
  padding: 15px 18px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(244, 241, 237, 0.3);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(255, 124, 62, 0.44);
  box-shadow: 0 0 0 4px rgba(255, 106, 26, 0.11);
  background: rgba(255, 255, 255, 0.035);
}

.field textarea {
  min-height: 146px;
  resize: vertical;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.form-note {
  color: rgba(244, 241, 237, 0.46);
  font-size: 0.84rem;
}

.form-status {
  min-height: 1.4em;
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-status.is-success {
  color: #20BF55;
}

.form-status.is-error {
  color: #ff8d6c;
}

footer {
  position: relative;
  padding: 32px 0 48px;
}

.footer-inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-mark {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.footer-copy {
  font-size: 0.84rem;
  color: rgba(244, 241, 237, 0.58);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 { transition-delay: 80ms; }
.d2 { transition-delay: 160ms; }
.d3 { transition-delay: 240ms; }
.d4 { transition-delay: 320ms; }

@media (max-width: 1180px) {
  .what-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .section {
    padding: 88px 0;
  }

  .nav-inner {
    padding: 18px 20px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(8, 8, 8, 0.96);
    box-shadow: var(--shadow-glow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero {
    padding: 116px 0 72px;
    min-height: auto;
  }

  .hero-grid,
  .who-grid,
  .terms-grid,
  .connect-grid,
  .what-grid,
  .why-grid,
  .risks-grid,
  .form-row,
  .split-heading {
    grid-template-columns: 1fr;
    display: grid;
  }

  .split-heading {
    align-items: start;
  }

  .split-heading .section-lead {
    max-width: 100%;
  }

  .hero-title {
    max-width: 12ch;
  }

  .hero-copy {
    width: 100%;
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .container,
  .footer-inner {
    width: min(var(--container), calc(100% - 28px));
  }

  .nav-inner {
    padding: 16px 14px;
    gap: 14px;
  }

  .brand-meta {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .nav-toggle {
    min-width: 96px;
    min-height: 44px;
    padding: 0 14px;
    gap: 10px;
  }

  .nav-toggle-label {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
  }

  .hero {
    padding: 104px 0 56px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .eyebrow::before {
    width: 24px;
  }

  .hero-title {
    font-size: clamp(2.9rem, 12.6vw, 4.1rem);
    line-height: 0.96;
    letter-spacing: -0.07em;
    max-width: 9.5ch;
  }

  .hero-title br {
    display: none;
  }

  .hero-sub {
    margin-top: 18px;
    max-width: 100%;
    font-size: 0.98rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .stat,
  .step-card,
  .insight-card,
  .risk-card,
  .quote-panel,
  .contact-panel {
    padding: 24px 20px;
  }

  .term-header,
  .term-row {
    padding-left: 20px;
    padding-right: 20px;
  }

  .term-row {
    grid-template-columns: 1fr;
  }

  .term-value {
    text-align: left;
  }

  .compare-wrap {
    overflow-x: auto;
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .btn,
  .insight-card,
  .risk-card {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
