/* ============================================================
   PORTFOLIO CALCULATOR — Global Stylesheet
   Brand: Sand (#F5F0E8) background, GPUsed Green (#478071)
   ============================================================ */

/* --- TOKENS --- */
:root {
  --green:        #478071;
  --green-dark:   #315c52;
  --green-light:  #5a9e8a;
  --green-tint:   #eaf2ef;
  --green-tint2:  #d4e9e3;

  --sand:         #F5F0E8;
  --sand-dark:    #ede6d9;
  --sand-darker:  #ddd4c3;
  --sand-deep:    #c5b89f;

  --ink:          #1a1a18;
  --ink-muted:    #5a5850;
  --ink-faint:    #9a9488;

  --white:        #ffffff;
  --warn:         #c0392b;
  --warn-tint:    #fdf3f2;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;

  --shadow-sm:    0 1px 3px rgba(26,26,24,0.08);
  --shadow-md:    0 4px 16px rgba(26,26,24,0.10);
  --shadow-lg:    0 8px 32px rgba(26,26,24,0.12);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-w:        1160px;
  --nav-h:        64px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, canvas { max-width: 100%; display: block; }
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; }
input[type=number] { -moz-appearance: textfield; }

/* --- UTILITY --- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--sand);
  border-bottom: 1px solid var(--sand-darker);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.nav__inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.nav__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-muted);
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link:hover { background: var(--sand-dark); color: var(--ink); }
.nav__link--active { color: var(--green); font-weight: 600; }
.nav__link--soon { opacity: 0.7; }
.badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--sand-dark);
  color: var(--ink-faint);
  padding: 2px 6px;
  border-radius: 20px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 48px;
  position: relative;
}
.hero__inner { max-width: 680px; }
.hero__eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 22px;
}
.hero__headline em {
  font-style: italic;
  color: var(--green);
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.18s ease;
  text-decoration: none;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  padding: 14px 28px;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(71,128,113,0.30);
}
.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(71,128,113,0.38);
}
.btn--calc {
  width: 100%;
  background: var(--green);
  color: var(--white);
  padding: 16px 28px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(71,128,113,0.28);
  margin-top: 8px;
}
.btn--calc:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(71,128,113,0.38);
}
.btn--calc:active { transform: translateY(0); }

/* ============================================================
   TOOLS STRIP
   ============================================================ */
.tools-strip {
  background: var(--sand-dark);
  border-top: 1px solid var(--sand-darker);
  border-bottom: 1px solid var(--sand-darker);
  padding: 32px 24px;
}
.tools-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.tool-card {
  background: var(--sand);
  border: 1.5px solid var(--sand-darker);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.15s;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.tool-card--active {
  border-color: var(--green);
  background: var(--green-tint);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.tool-card--active:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.tool-card--soon { opacity: 0.55; cursor: default; }
.tool-card__icon { font-size: 1.4rem; }
.tool-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}
.tool-card--active .tool-card__name { color: var(--green-dark); }
.tool-card__desc { font-size: 0.78rem; color: var(--ink-muted); line-height: 1.4; }
.tool-card__status {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 4px;
}
.tool-card__status.live { color: var(--green); }

/* ============================================================
   CALCULATOR SECTION
   ============================================================ */
.calc-section {
  padding: 80px 24px;
}
.calc-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.calc-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.calc-header__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.calc-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 14px;
}
.calc-header__desc {
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* --- TWO COLUMN LAYOUT --- */
.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* --- INPUTS --- */
.calc-inputs {
  background: var(--white);
  border: 1.5px solid var(--sand-darker);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: var(--shadow-sm);
}
.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.input-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}
.label-optional {
  font-weight: 400;
  color: var(--ink-faint);
  font-size: 0.82rem;
}
.input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--sand-darker);
  border-radius: var(--radius-sm);
  background: var(--sand);
  transition: border-color 0.15s, box-shadow 0.15s;
  overflow: hidden;
}
.input-wrap:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(71,128,113,0.12);
  background: var(--white);
}
.input-prefix, .input-unit {
  padding: 0 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-muted);
  background: var(--sand-dark);
  align-self: stretch;
  display: flex;
  align-items: center;
  border-right: 1.5px solid var(--sand-darker);
  flex-shrink: 0;
}
.input-unit {
  border-right: none;
  border-left: 1.5px solid var(--sand-darker);
}
.input-field {
  flex: 1;
  border: none;
  background: transparent;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.input-field::placeholder { color: var(--ink-faint); }
.input-hint {
  font-size: 0.78rem;
  color: var(--ink-faint);
  line-height: 1.5;
}

/* --- ASSUMPTIONS TOGGLE --- */
.assumptions-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--sand-dark);
  border-bottom: 1px solid var(--sand-dark);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green-dark);
  user-select: none;
  transition: color 0.15s;
}
.assumptions-toggle:hover { color: var(--green); }
.assumptions-toggle__arrow {
  transition: transform 0.2s;
  font-size: 0.8rem;
}
.assumptions-toggle[aria-expanded="true"] .assumptions-toggle__arrow {
  transform: rotate(180deg);
}
.assumptions-panel {
  background: var(--green-tint);
  border: 1px solid var(--green-tint2);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.assumptions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.assumptions-list li {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}
.assumptions-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--green);
}
.assumptions-list strong { color: var(--ink); }
.assumptions-note {
  font-size: 0.75rem;
  color: var(--ink-faint);
  font-style: italic;
  border-top: 1px solid var(--green-tint2);
  padding-top: 10px;
}

/* --- RESULTS --- */
.calc-results {
  background: var(--white);
  border: 1.5px solid var(--sand-darker);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.results-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 40px 0;
}
.results-placeholder__icon { font-size: 2.8rem; opacity: 0.4; }
.results-placeholder__text { color: var(--ink-faint); font-size: 0.95rem; }

/* --- RESULT HERO --- */
.result-hero {
  text-align: center;
  padding: 28px 20px;
  background: var(--green);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  color: var(--white);
}
.result-hero__label {
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.result-hero__amount {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.result-hero__period {
  font-size: 0.88rem;
  opacity: 0.8;
  margin-top: 6px;
}

/* --- RESULT STATS GRID --- */
.result-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.result-stat {
  background: var(--sand);
  border: 1px solid var(--sand-darker);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.result-stat__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.result-stat__value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.2;
}

/* --- ISA WARNING --- */
.isa-warning {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--warn-tint);
  border: 1.5px solid #f5c6c2;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
}
.isa-warning__icon { font-size: 1.1rem; flex-shrink: 0; }
.isa-warning__text { font-size: 0.82rem; line-height: 1.55; color: var(--ink-muted); }
.isa-warning__text strong { color: var(--warn); }

/* --- CHART --- */
.chart-wrap {
  margin-bottom: 20px;
}
.chart-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.chart-legend {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: 10px;
}
.legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 4px;
}
.legend-dot--contributions { background: var(--green); }
.legend-dot--growth { background: var(--green-tint2); border: 2px solid var(--green-light); }

/* --- RESULT FOOTER --- */
.result-footer {
  border-top: 1px solid var(--sand-dark);
  padding-top: 16px;
  font-size: 0.74rem;
  color: var(--ink-faint);
  line-height: 1.6;
}
.result-footer strong { color: var(--ink-muted); }

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section {
  background: var(--green);
  padding: 80px 24px;
}
.why-section__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.why-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 20px;
}
.why-section__body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 16px;
}
.why-section__body:last-child { margin-bottom: 0; }

/* ============================================================
   COMING SOON
   ============================================================ */
.coming-section {
  padding: 80px 24px;
}
.coming-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.coming-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--ink);
  text-align: center;
  margin-bottom: 10px;
}
.coming-section__sub {
  text-align: center;
  color: var(--ink-muted);
  margin-bottom: 40px;
  font-size: 1rem;
}
.coming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.coming-card {
  background: var(--white);
  border: 1.5px solid var(--sand-darker);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.coming-card__icon { font-size: 1.6rem; }
.coming-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
}
.coming-card p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--sand-dark);
  border-top: 1px solid var(--sand-darker);
  padding: 40px 24px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}
.footer__legal {
  font-size: 0.78rem;
  color: var(--ink-faint);
  line-height: 1.65;
  max-width: 680px;
}
.footer__legal a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__copy {
  font-size: 0.75rem;
  color: var(--ink-faint);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .calc-layout {
    grid-template-columns: 1fr;
  }
  .nav__logo-text { display: none; }
  .nav__link--soon { display: none; }
  .result-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .hero { padding: 60px 20px 48px; }
  .calc-inputs, .calc-results { padding: 24px 20px; }
  .result-stats { grid-template-columns: 1fr; }
  .tools-strip__inner { grid-template-columns: 1fr 1fr; }
  .coming-grid { grid-template-columns: 1fr; }
  .nav__links { gap: 2px; }
  .nav__link { padding: 6px 10px; font-size: 0.82rem; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.results-content {
  animation: fadeUp 0.35s ease both;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   LIFESTYLE PICKER
   ============================================================ */
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.lifestyle-card {
  background: var(--sand);
  border: 1.5px solid var(--sand-darker);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: border-color 0.15s, background 0.15s, transform 0.12s, box-shadow 0.15s;
  font-family: var(--font-body);
  position: relative;
}
.lifestyle-card:hover {
  border-color: var(--green-light);
  background: var(--green-tint);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.lifestyle-card--selected {
  border-color: var(--green) !important;
  background: var(--green-tint) !important;
  box-shadow: 0 0 0 3px rgba(71,128,113,0.15), var(--shadow-sm) !important;
}
.lifestyle-card--selected::after {
  content: '✓';
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-tint2);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 18px;
  text-align: center;
}
.lifestyle-card__emoji { font-size: 1.2rem; line-height: 1; margin-bottom: 2px; }
.lifestyle-card__name  { font-size: 0.82rem; font-weight: 700; color: var(--ink); }
.lifestyle-card__amount {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--green-dark);
  line-height: 1.1;
}
.lifestyle-card__desc  { font-size: 0.72rem; color: var(--ink-muted); line-height: 1.35; margin-top: 2px; }

/* Custom income row */
.custom-income-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
}
.custom-income-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.input-wrap--inline {
  flex: 1;
  min-width: 0;
}

/* ============================================================
   RESULT LIFESTYLE BADGE
   ============================================================ */
.result-lifestyle-badge {
  margin-bottom: 16px;
}
.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* ============================================================
   INCOME BREAKDOWN
   ============================================================ */
.income-breakdown {
  background: var(--green-tint);
  border: 1.5px solid var(--green-tint2);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 20px;
}
.income-breakdown__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.income-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--green-tint2);
  font-size: 0.88rem;
}
.income-row:last-child { border-bottom: none; }
.income-row--total {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1.5px solid var(--green-tint2);
  border-bottom: none;
}
.income-row__label { color: var(--ink-muted); }
.income-row__value { font-weight: 700; color: var(--ink); font-family: var(--font-display); font-size: 1rem; }
.income-row--total .income-row__label { font-weight: 700; color: var(--green-dark); }
.income-row--total .income-row__value { color: var(--green-dark); font-size: 1.1rem; }

/* Result stat note (sub-label) */
.result-stat__note {
  font-size: 0.68rem;
  color: var(--ink-faint);
  margin-top: 1px;
}

/* ============================================================
   POT INVESTED / CASH TOGGLE
   ============================================================ */
.pot-toggle {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pot-toggle__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-muted);
}
.toggle-options {
  display: flex;
  gap: 8px;
}
.toggle-btn {
  flex: 1;
  padding: 9px 14px;
  border: 1.5px solid var(--sand-darker);
  border-radius: var(--radius-sm);
  background: var(--sand);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-muted);
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}
.toggle-btn:hover {
  border-color: var(--green-light);
  background: var(--green-tint);
  color: var(--green-dark);
}
.toggle-btn--selected {
  border-color: var(--green);
  background: var(--green-tint);
  color: var(--green-dark);
  font-weight: 600;
}

/* ============================================================
   DRAWDOWN CHART + CHART SUBLABEL
   ============================================================ */
.chart-sublabel {
  font-size: 0.76rem;
  color: var(--ink-faint);
  margin-top: -10px;
  margin-bottom: 14px;
}
.chart-wrap--drawdown {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--sand-dark);
}
.legend-dot--state-pension {
  background: #c0392b;
}
