/* =========================================================
   FREEDOM NUMBER — retireyounger.com.au
   Black / white / grey · refined editorial
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: #0a0a0a;
  background: #fafaf9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

:root {
  --ink:        #0a0a0a;
  --ink-2:      #1a1a1a;
  --graphite:   #3a3a3a;
  --grey-700:   #5a5a5a;
  --grey-500:   #8a8a8a;
  --grey-300:   #c8c8c5;
  --grey-200:   #e2e2dd;
  --grey-100:   #efefea;
  --paper:      #fafaf9;
  --paper-warm: #f3f2ed;
  --white:      #ffffff;

  --display: 'Fraunces', Georgia, serif;
  --sans:    'Inter', -apple-system, sans-serif;

  --container: 1200px;
  --pad-x: clamp(20px, 5vw, 64px);

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;

  --t-fast: 180ms cubic-bezier(.2,.8,.2,1);
  --t-med:  340ms cubic-bezier(.2,.8,.2,1);
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 249, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--grey-200);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1.1;
}
.nav__logo {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: block;
  flex-shrink: 0;
}
.nav__brand-stack {
  display: flex;
  flex-direction: column;
}
.nav__brand-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.nav__brand-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-top: 4px;
  font-weight: 500;
}
.nav__cta {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav__cta:hover { background: var(--ink); color: var(--white); }

/* =========================================================
   SHARED UTILS
   ========================================================= */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 600;
  margin-bottom: 20px;
}
.eyebrow--light { color: var(--grey-300); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn:not(:disabled):active { transform: translateY(1px); }

.btn--primary {
  background: var(--ink);
  color: var(--white);
}
.btn--primary:not(:disabled):hover {
  background: var(--ink-2);
  box-shadow: 0 18px 40px -16px rgba(10, 10, 10, 0.55);
}
.btn--light {
  background: var(--white);
  color: var(--ink);
}
.btn--light:hover {
  background: var(--paper-warm);
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--white); }

/* =========================================================
   HERO + CALCULATOR
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 100px) var(--pad-x) clamp(60px, 8vw, 120px);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(10,10,10,0.04), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(10,10,10,0.05), transparent 55%);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--grey-200) 1px, transparent 1px);
  background-size: 100% 64px;
  opacity: 0.35;
  mask-image: linear-gradient(180deg, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 20%, black 80%, transparent);
}
.hero__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero__inner > * { min-width: 0; }
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
}

.hero__lead { padding-top: 8px; }
.hero__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--ink);
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--graphite);
}
.hero__sub {
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.6;
  color: var(--grey-700);
  max-width: 52ch;
  margin: 0 0 36px;
}
.hero__sub em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}

/* Calculator card */
.calc {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 44px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 30px 60px -30px rgba(10, 10, 10, 0.18),
    0 8px 24px -12px rgba(10, 10, 10, 0.08);
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.calc::before {
  content: '';
  position: absolute;
  top: -1px; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ink), transparent);
  opacity: 0.6;
}
.calc__head { margin-bottom: 28px; }
.calc__step {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--grey-500);
}
.calc__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(24px, 2.5vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 8px 0 10px;
}
.calc__hint {
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey-700);
  margin: 0;
}

.calc__field { margin-bottom: 20px; }
.calc__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 12px;
}
.calc__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.calc__input-wrap:focus-within {
  border-color: var(--ink);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
}
.calc__currency {
  font-family: var(--display);
  font-weight: 500;
  font-size: 28px;
  color: var(--grey-500);
  padding: 0 4px 0 20px;
}
.calc__input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  padding: 18px 0;
  color: var(--ink);
  width: 100%;
  letter-spacing: -0.01em;
}
.calc__input::placeholder { color: var(--grey-300); }
.calc__suffix {
  font-size: 13px;
  color: var(--grey-500);
  padding: 0 20px 0 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.calc__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--graphite);
  padding: 8px 0;
  margin-bottom: 8px;
  text-decoration: underline;
  text-decoration-color: var(--grey-300);
  text-underline-offset: 4px;
  transition: color var(--t-fast), text-decoration-color var(--t-fast);
}
.calc__toggle:hover { color: var(--ink); text-decoration-color: var(--ink); }
.calc__toggle svg { transition: transform var(--t-med); }
.calc__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.breakdown {
  background: var(--paper-warm);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 24px;
  animation: fadeSlide var(--t-med) both;
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.breakdown__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.breakdown__grid > * { min-width: 0; }
@media (max-width: 540px) {
  .breakdown__grid { grid-template-columns: 1fr; }
}
.breakdown__item label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--graphite);
  margin-bottom: 6px;
}
.breakdown__input {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  transition: border-color var(--t-fast);
}
.breakdown__input:focus-within { border-color: var(--ink); }
.breakdown__input span {
  padding: 0 4px 0 12px;
  color: var(--grey-500);
  font-weight: 500;
}
.breakdown__input input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 10px 12px 10px 4px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--sans);
  color: var(--ink);
  width: 100%;
}
.breakdown__hint {
  display: block;
  font-size: 11px;
  color: var(--grey-500);
  margin-top: 4px;
}

.calc__cta {
  width: 100%;
  margin-top: 8px;
}
.calc__assumption {
  font-size: 12px;
  color: var(--grey-500);
  margin: 18px 0 0;
  line-height: 1.5;
  text-align: center;
}

/* =========================================================
   GATE
   ========================================================= */
.gate {
  background: var(--ink);
  color: var(--white);
  padding: clamp(60px, 9vw, 120px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.gate::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
  pointer-events: none;
}
.gate__inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.gate__inner > * { min-width: 0; }
@media (max-width: 880px) {
  .gate__inner { grid-template-columns: 1fr; }
}
.gate .eyebrow { color: var(--grey-300); }
.gate__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
}
.gate__title em { font-style: italic; font-weight: 400; color: var(--grey-300); }
.gate__sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-300);
  max-width: 46ch;
  margin: 0 0 36px;
}
.gate__trust {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.gate__trust > div { display: flex; flex-direction: column; }
.gate__trust strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.gate__trust span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-top: 4px;
}

.gate__form {
  background: var(--white);
  color: var(--ink);
  padding: clamp(28px, 3.5vw, 40px);
  border-radius: var(--radius-lg);
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.field { margin-bottom: 18px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field-row > * { min-width: 0; }
.field-row .field { margin-bottom: 18px; }
@media (max-width: 380px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
}
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 8px;
}
.field input {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 16px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  box-sizing: border-box;
  max-width: 100%;
}
.field input:focus {
  border-color: var(--ink);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
}
.field input.is-invalid { border-color: #c0392b; }

.gate__error {
  font-size: 13px;
  color: #c0392b;
  margin: -4px 0 14px;
}
.gate__cta { width: 100%; margin-top: 6px; }
.gate__cta[disabled] .gate__cta-text::after { content: '…'; }

.gate__fineprint {
  font-size: 11px;
  color: var(--grey-500);
  margin: 14px 0 0;
  line-height: 1.5;
  text-align: center;
}
.gate__back {
  display: block;
  margin: 18px auto 0;
  background: none;
  border: none;
  font-size: 13px;
  color: var(--grey-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gate__back:hover { color: var(--ink); }

/* =========================================================
   RESULT
   ========================================================= */
.result {
  padding: 0;
}
.result__hero {
  padding: clamp(60px, 9vw, 120px) var(--pad-x) clamp(50px, 7vw, 80px);
  text-align: center;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.result__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(10,10,10,0.05), transparent 60%);
  pointer-events: none;
}
.result__name {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--graphite);
  margin: 0 0 36px;
  letter-spacing: -0.01em;
}
.result__number {
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 24px;
  position: relative;
  animation: numberRise 700ms cubic-bezier(.2,.8,.2,1) both;
}
@keyframes numberRise {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.result__currency {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--grey-500);
  margin-top: 12px;
}
.result__value {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(64px, 12vw, 144px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.result__caption {
  font-size: 16px;
  color: var(--grey-700);
  max-width: 56ch;
  margin: 0 auto 48px;
  line-height: 1.5;
}
.result__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  padding: 28px clamp(20px, 4vw, 48px);
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  max-width: 720px;
  margin: 0 auto;
}
.result__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.result__stat-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 600;
}
.result__stat-value {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* Motivation block */
.result__motivation {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(50px, 7vw, 100px) var(--pad-x);
  text-align: center;
}
.result__motivation h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.result__motivation p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--graphite);
  margin: 0 0 18px;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.result__motivation em {
  font-style: italic;
  font-family: var(--display);
  color: var(--ink);
}
.result__motivation-tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px !important;
  color: var(--grey-500) !important;
  margin-top: 32px !important;
}

/* EMP block */
.emp {
  background: var(--ink);
  color: var(--white);
  padding: clamp(60px, 9vw, 120px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.emp::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(255,255,255,0.04), transparent 50%),
    radial-gradient(ellipse at 10% 100%, rgba(255,255,255,0.03), transparent 60%);
}
.emp__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.emp__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
}
.emp__title em { font-style: italic; font-weight: 400; color: var(--grey-300); }
.emp__body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--grey-300);
  margin: 0 0 18px;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.emp__body strong { color: var(--white); font-weight: 600; }
.emp__body--tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px !important;
  color: var(--grey-500) !important;
  margin-top: 28px !important;
}
.emp .btn { margin-top: 20px; }

/* Follow */
.result__follow {
  text-align: center;
  padding: clamp(50px, 7vw, 90px) var(--pad-x);
  background: var(--paper);
}
.result__follow h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 30px);
  margin: 0 0 12px;
  letter-spacing: -0.015em;
}
.result__follow p {
  font-size: 15px;
  color: var(--grey-700);
  margin: 0 0 24px;
}

.result__restart {
  display: block;
  margin: 0 auto;
  padding: 36px 0;
  background: none;
  border: none;
  font-size: 13px;
  color: var(--grey-500);
  letter-spacing: 0.05em;
}
.result__restart:hover { color: var(--ink); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: var(--grey-300);
  padding: 48px var(--pad-x);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__inner > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__inner strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
}
.footer__inner span { font-size: 13px; color: var(--grey-500); }
.footer__inner a { color: var(--grey-300); text-decoration: underline; text-underline-offset: 3px; }
.footer__legal {
  font-size: 11px;
  line-height: 1.6;
  color: var(--grey-500);
  margin: 0;
  max-width: 76ch;
}

/* =========================================================
   STATE TRANSITIONS
   ========================================================= */
[hidden] { display: none !important; }
.fade-in { animation: fadeIn 320ms cubic-bezier(.2,.8,.2,1) both; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Loading state */
.is-loading { pointer-events: none; opacity: 0.7; }
.is-loading::after { content: ''; }

/* =========================================================
   MOBILE OVERRIDES
   ========================================================= */
@media (max-width: 640px) {
  :root {
    --pad-x: 18px;
  }

  /* Nav */
  .nav__inner { padding: 14px var(--pad-x); }
  .nav__brand-name { font-size: 17px; }
  .nav__brand-tag { font-size: 10px; letter-spacing: 0.14em; }
  .nav__logo { width: 32px; height: 32px; }
  .nav__cta { padding: 8px 14px; font-size: 12px; }

  /* Hero */
  .hero { padding: 36px var(--pad-x) 60px; }
  .hero__inner { gap: 32px; text-align: center; }
  .hero__lead { padding-top: 0; }
  .hero__title { font-size: clamp(34px, 9vw, 44px); margin-bottom: 20px; }
  .hero__sub { font-size: 15px; margin-left: auto; margin-right: auto; }

  /* Calc card */
  .calc { padding: 24px 20px; }
  .calc__title { font-size: 22px; }
  .calc__hint { font-size: 13px; }
  .calc__currency { font-size: 24px; padding: 0 4px 0 14px; }
  .calc__input { font-size: 28px; padding: 14px 0; min-width: 0; }
  .calc__suffix { font-size: 12px; padding: 0 14px 0 8px; }
  .calc__cta { padding: 16px 20px; font-size: 14px; }
  .breakdown { padding: 16px; }
  .breakdown__grid { gap: 12px; }

  /* Gate */
  .gate { padding: 60px var(--pad-x); }
  .gate__inner {
    gap: 32px;
    text-align: center;
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .gate__lead { width: 100%; max-width: 100%; }
  .gate__title { font-size: clamp(30px, 8vw, 38px); }
  .gate__sub { margin-left: auto; margin-right: auto; }
  .gate__trust { justify-content: center; gap: 24px; }
  .gate__trust strong { font-size: 24px; }
  .gate__form {
    padding: 24px 20px;
    text-align: left;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
  }
  .gate__cta { padding: 16px 18px; font-size: 14px; }

  /* Result */
  .result__hero { padding: 60px var(--pad-x) 50px; }
  .result__number { gap: 2px; }
  .result__currency { font-size: 28px; margin-top: 8px; }
  .result__value {
    font-size: clamp(48px, 14vw, 72px);
    letter-spacing: -0.03em;
  }
  .result__caption { font-size: 14px; margin-bottom: 32px; }
  .result__stats {
    flex-direction: column;
    gap: 18px;
    padding: 22px 24px;
  }
  .result__stat { flex-direction: row; justify-content: space-between; width: 100%; gap: 16px; }
  .result__stat-value { font-size: 18px; }

  /* Quote (formerly EMP) section */
  .emp { padding: 60px var(--pad-x); }
  .emp__title { font-size: clamp(28px, 7.5vw, 36px); }
  .emp__body { font-size: 15px; }

  /* Follow */
  .result__follow { padding: 50px var(--pad-x); }

  /* Footer */
  .footer { padding: 36px var(--pad-x); }
  .footer__inner { text-align: center; }
  .footer__inner > div { align-items: center; }
}

/* Extra-small / iPhone SE */
@media (max-width: 380px) {
  .calc__input { font-size: 24px; }
  .hero__title { font-size: 30px; }
  .gate__title { font-size: 26px; }
  .gate__trust { gap: 16px; }
  .gate__trust strong { font-size: 20px; }
}
