:root {
  color-scheme: dark;
  --bg: #080906;
  --panel: rgba(19, 21, 15, 0.86);
  --panel-strong: #11130e;
  --ink: #f4f5e9;
  --muted: #8f9483;
  --line: rgba(226, 255, 67, 0.16);
  --acid: #e2ff43;
  --acid-soft: #a8c529;
  --orange: #ff6b35;
  --red: #ff3d57;
  --cyan: #55e6cf;
  --border: rgba(244, 245, 233, 0.13);
  --display: "DIN Condensed", "Avenir Next Condensed", "PingFang SC",
    sans-serif;
  --body: "Avenir Next", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 8%, rgba(226, 255, 67, 0.07), transparent 25%),
    linear-gradient(180deg, #0c0e09 0%, var(--bg) 40%, #050604 100%);
  font-family: var(--body);
  font-variant-numeric: tabular-nums;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.glow {
  position: fixed;
  width: 44rem;
  height: 44rem;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  opacity: 0.07;
}

.glow-one {
  top: 30rem;
  left: -28rem;
  background: var(--acid);
}

.glow-two {
  right: -30rem;
  top: 100rem;
  background: var(--orange);
}

.section-shell,
.topbar {
  width: min(1480px, calc(100% - 64px));
  margin-inline: auto;
}

.topbar {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand-mark {
  width: 11px;
  height: 11px;
  background: var(--acid);
  box-shadow: 0 0 22px rgba(226, 255, 67, 0.75);
  transform: rotate(45deg);
}

.topbar-meta {
  display: flex;
  gap: 30px;
  align-items: center;
  color: var(--muted);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.signal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--acid);
}

.signal i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 0 rgba(226, 255, 67, 0.5);
  animation: signal-pulse 1.8s infinite;
}

.hero {
  position: relative;
  min-height: 690px;
  padding: 118px 0 72px;
}

.hero::before {
  position: absolute;
  top: 64px;
  right: 18%;
  width: 1px;
  height: 520px;
  content: "";
  background: linear-gradient(transparent, var(--line), transparent);
  transform: rotate(24deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1120px;
}

.eyebrow,
.section-index {
  margin: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  margin-right: 12px;
  padding: 7px 10px 5px;
  color: #11130e;
  background: var(--acid);
  transform: skewX(-9deg);
}

.hero h1 {
  margin: 28px 0 24px;
  font-family: var(--display);
  font-size: clamp(74px, 10vw, 158px);
  font-weight: 300;
  line-height: 0.86;
  letter-spacing: -0.065em;
}

.hero h1 strong {
  color: var(--acid);
  font-weight: 900;
  text-shadow: 0 0 42px rgba(226, 255, 67, 0.12);
}

.hero-arrow {
  display: inline-block;
  margin-inline: 0.04em;
  color: var(--orange);
  font-size: 0.58em;
  transform: translateY(-0.3em);
}

.hero-lead {
  max-width: 670px;
  margin: 0;
  color: #c3c7b6;
  font-size: 18px;
  line-height: 1.8;
}

.hero-lead span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.hero-stamp {
  position: absolute;
  z-index: 2;
  top: 150px;
  right: 2%;
  display: grid;
  width: 214px;
  height: 214px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  animation: stamp-float 7s ease-in-out infinite;
}

.hero-stamp::before,
.hero-stamp::after {
  position: absolute;
  content: "";
  border-radius: inherit;
}

.hero-stamp::before {
  inset: 12px;
  border: 1px dashed rgba(226, 255, 67, 0.35);
  animation: rotate 24s linear infinite;
}

.hero-stamp::after {
  inset: 26px;
  border: 1px solid var(--line);
}

.stamp-ring {
  display: grid;
  position: relative;
  z-index: 2;
  text-align: center;
}

.stamp-ring strong {
  color: var(--acid);
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
}

.stamp-ring span {
  margin-top: 7px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.stamp-ring .stamp-label {
  margin: 0 0 9px;
  color: var(--ink);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 104px;
  border-block: 1px solid var(--border);
}

.metrics article {
  position: relative;
  min-height: 142px;
  padding: 26px 28px;
  border-right: 1px solid var(--border);
}

.metrics article:first-child {
  border-left: 1px solid var(--border);
}

.metrics article::after {
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 6px;
  height: 6px;
  content: "";
  border-right: 1px solid var(--acid);
  border-bottom: 1px solid var(--acid);
}

.metrics span,
.metrics small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.metrics strong {
  display: block;
  margin: 9px 0 5px;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 55px);
  line-height: 1;
}

.chart-section,
.income-section,
.events-section {
  padding: 90px 0 30px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}

.section-heading h2,
.method-intro h2 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: clamp(43px, 6vw, 76px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.section-note {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  text-align: right;
}

.mode-switch {
  display: inline-flex;
  gap: 5px;
  padding: 4px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.mode-button {
  padding: 10px 15px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.mode-button.active {
  color: #0b0d08;
  background: var(--acid);
}

.chart-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    linear-gradient(rgba(226, 255, 67, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 255, 67, 0.025) 1px, transparent 1px),
    var(--panel);
  background-size: 56px 56px;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.34);
}

.chart-card::before {
  position: absolute;
  z-index: 0;
  top: -160px;
  right: 10%;
  width: 430px;
  height: 430px;
  content: "";
  border-radius: 50%;
  background: rgba(226, 255, 67, 0.04);
  filter: blur(60px);
}

.chart-grid-label {
  position: absolute;
  z-index: 3;
  top: 26px;
  left: 30px;
  display: flex;
  gap: 25px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.chart-grid-label span:first-child {
  color: var(--acid);
}

.chart-reading {
  position: absolute;
  z-index: 3;
  top: 25px;
  right: 28px;
  min-width: 210px;
  padding-left: 18px;
  border-left: 2px solid var(--acid);
  text-align: right;
}

.chart-reading span,
.chart-reading small {
  display: block;
  color: var(--muted);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.chart-reading strong {
  display: block;
  margin: 2px 0;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
}

.chart-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

#salary-chart {
  display: block;
  width: 100%;
  height: auto;
  min-height: 460px;
}

.grid-line {
  stroke: rgba(244, 245, 233, 0.09);
  stroke-width: 1;
}

.axis-text {
  fill: #737767;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.company-band {
  opacity: 0.8;
  transition: opacity 180ms ease;
}

.company-band:hover {
  opacity: 1;
}

.company-label {
  fill: #d9dccb;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  pointer-events: none;
}

.salary-area {
  opacity: 0.18;
}

.salary-line-shadow {
  fill: none;
  stroke: rgba(226, 255, 67, 0.16);
  stroke-width: 16;
  filter: blur(7px);
}

.salary-line {
  fill: none;
  stroke: var(--acid);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  filter: drop-shadow(0 0 8px rgba(226, 255, 67, 0.5));
}

.projected-line {
  fill: none;
  stroke: var(--acid);
  stroke-dasharray: 7 10;
  stroke-linecap: round;
  stroke-width: 3;
}

.event-hit {
  cursor: pointer;
  fill: transparent;
}

.event-dot-outer {
  fill: var(--panel-strong);
  stroke: var(--orange);
  stroke-width: 2;
  pointer-events: none;
}

.event-dot-inner {
  fill: var(--orange);
  pointer-events: none;
}

.event-dot-estimate {
  stroke: var(--cyan);
}

.event-dot-estimate + .event-dot-inner {
  fill: var(--cyan);
}

.cursor-line {
  stroke: rgba(244, 245, 233, 0.26);
  stroke-dasharray: 4 7;
  stroke-width: 1;
  pointer-events: none;
}

.cursor-dot {
  fill: var(--panel-strong);
  stroke: var(--acid);
  stroke-width: 4;
  filter: drop-shadow(0 0 8px rgba(226, 255, 67, 0.85));
  pointer-events: none;
}

.cursor-halo {
  fill: none;
  stroke: rgba(226, 255, 67, 0.28);
  stroke-width: 1;
  pointer-events: none;
}

.tooltip {
  position: absolute;
  z-index: 8;
  width: 230px;
  padding: 15px 17px;
  border: 1px solid rgba(226, 255, 67, 0.28);
  color: var(--ink);
  background: rgba(8, 9, 6, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 18px));
  transition: opacity 120ms ease;
}

.tooltip.visible {
  opacity: 1;
}

.tooltip span,
.tooltip small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.tooltip strong {
  display: block;
  margin: 3px 0 6px;
  color: var(--acid);
  font-family: var(--display);
  font-size: 24px;
}

.playback {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 205px 1fr 110px;
  align-items: center;
  min-height: 94px;
  padding: 17px 28px;
  border-top: 1px solid var(--border);
  background: rgba(5, 6, 4, 0.55);
}

.play-button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  width: fit-content;
  padding: 12px 16px;
  border: 1px solid rgba(226, 255, 67, 0.35);
  color: var(--acid);
  background: transparent;
  cursor: pointer;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.play-button:hover,
.play-button.playing {
  color: #0b0d08;
  background: var(--acid);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.playing .play-icon {
  width: 8px;
  height: 10px;
  border: 0;
  border-inline: 2px solid currentColor;
}

.range-shell {
  padding-inline: 15px 30px;
}

#year-range {
  width: 100%;
  height: 2px;
  margin: 0;
  appearance: none;
  background: linear-gradient(
    90deg,
    var(--acid) var(--range-progress, 0%),
    rgba(244, 245, 233, 0.14) var(--range-progress, 0%)
  );
  cursor: pointer;
}

#year-range::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  appearance: none;
  border: 3px solid #0a0c08;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 1px var(--acid), 0 0 16px rgba(226, 255, 67, 0.55);
}

#year-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 3px solid #0a0c08;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 1px var(--acid);
}

.range-years {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
}

.playback-year {
  text-align: right;
}

.playback-year span {
  display: block;
  color: var(--muted);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.playback-year strong {
  font-family: var(--display);
  font-size: 27px;
}

.income-panel {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 360px;
  border: 1px solid var(--border);
  background: rgba(15, 17, 12, 0.72);
}

.income-summary {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  border-right: 1px solid var(--border);
  background:
    linear-gradient(160deg, rgba(226, 255, 67, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.015);
}

.income-summary span,
.income-summary small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.income-summary strong {
  margin: 9px 0;
  color: var(--acid);
  font-family: var(--display);
  font-size: 49px;
  line-height: 0.95;
}

.annual-bars {
  display: grid;
  grid-template-columns: repeat(12, minmax(36px, 1fr));
  gap: clamp(8px, 1.4vw, 20px);
  align-items: end;
  padding: 44px 34px 28px;
}

.bar-item {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 13px;
  height: 100%;
  border: 0;
  color: inherit;
  background: none;
  cursor: pointer;
}

.bar-track {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid rgba(244, 245, 233, 0.22);
}

.bar-fill {
  position: relative;
  width: 100%;
  min-height: 5px;
  background: linear-gradient(180deg, var(--acid) 0%, rgba(168, 197, 41, 0.22) 100%);
  box-shadow: 0 0 22px rgba(226, 255, 67, 0.08);
  transform: scaleY(0);
  transform-origin: bottom;
  animation: bar-rise 900ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  animation-delay: var(--delay);
}

.bar-fill::before {
  position: absolute;
  inset: 0;
  content: "";
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 5px,
    rgba(8, 9, 6, 0.2) 6px
  );
}

.bar-item.estimated .bar-fill {
  background: repeating-linear-gradient(
    135deg,
    var(--cyan) 0,
    var(--cyan) 5px,
    rgba(85, 230, 207, 0.3) 5px,
    rgba(85, 230, 207, 0.3) 10px
  );
}

.bar-item.active .bar-fill,
.bar-item:hover .bar-fill {
  filter: brightness(1.25);
}

.bar-label {
  color: var(--muted);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
}

.bar-value {
  position: absolute;
  top: -22px;
  left: 50%;
  color: var(--ink);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 150ms ease;
  white-space: nowrap;
}

.bar-item:hover .bar-value,
.bar-item.active .bar-value {
  opacity: 1;
}

.events-rail {
  display: grid;
  grid-template-columns: repeat(9, minmax(176px, 1fr));
  gap: 1px;
  overflow-x: auto;
  border: 1px solid var(--border);
  background: var(--border);
  scrollbar-color: var(--acid) transparent;
}

.event-card {
  position: relative;
  min-height: 260px;
  padding: 26px 22px;
  overflow: hidden;
  border: 0;
  color: inherit;
  background: #0d0f0b;
  cursor: pointer;
  text-align: left;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.event-card::after {
  position: absolute;
  right: -28px;
  bottom: -50px;
  color: rgba(244, 245, 233, 0.035);
  content: attr(data-number);
  font-family: var(--display);
  font-size: 150px;
  font-weight: 900;
  line-height: 1;
}

.event-card:hover,
.event-card.active {
  z-index: 2;
  background:
    linear-gradient(150deg, rgba(226, 255, 67, 0.1), transparent 55%),
    #13160f;
  transform: translateY(-5px);
}

.event-card .event-year {
  color: var(--acid);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.event-card .event-kicker {
  display: block;
  margin-top: 42px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.event-card h3 {
  position: relative;
  z-index: 1;
  min-height: 54px;
  margin: 7px 0 12px;
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.05;
}

.event-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.event-card .event-growth {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  color: var(--acid);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
}

.method-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  padding: 130px 0 100px;
}

.method-intro p:last-child {
  max-width: 540px;
  margin: 28px 0 0;
  color: #aeb2a1;
  font-size: 16px;
  line-height: 1.9;
}

.assumptions {
  align-self: end;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.assumptions summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 4px;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.assumptions summary::-webkit-details-marker {
  display: none;
}

.summary-plus {
  color: var(--acid);
  font-size: 30px;
  font-weight: 300;
  transition: transform 200ms ease;
}

.assumptions[open] .summary-plus {
  transform: rotate(45deg);
}

.assumption-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding-bottom: 24px;
  background: var(--border);
}

.assumption-item {
  min-height: 110px;
  padding: 18px;
  background: #0c0e0a;
}

.assumption-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.assumption-item p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 150px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer div {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--ink);
  font-family: var(--display);
  letter-spacing: 0.12em;
}

.footer p {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

@keyframes signal-pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(226, 255, 67, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(226, 255, 67, 0);
  }
}

@keyframes stamp-float {
  50% {
    transform: translateY(12px) rotate(2deg);
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes bar-rise {
  to {
    transform: scaleY(1);
  }
}

@media (max-width: 1050px) {
  .hero {
    padding-top: 90px;
  }

  .hero-stamp {
    top: 370px;
    right: 4%;
    width: 165px;
    height: 165px;
  }

  .stamp-ring strong {
    font-size: 35px;
  }

  .metrics {
    grid-template-columns: 1fr 1fr;
  }

  .metrics article:nth-child(2) {
    border-right: 1px solid var(--border);
  }

  .metrics article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .income-panel {
    grid-template-columns: 1fr;
  }

  .income-summary {
    min-height: 160px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .annual-bars {
    min-height: 350px;
  }

  .method-section {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 720px) {
  .section-shell,
  .topbar {
    width: min(100% - 30px, 1480px);
  }

  .topbar {
    height: 68px;
  }

  .topbar-meta span:not(.signal) {
    display: none;
  }

  .brand {
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    padding: 74px 0 40px;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: clamp(60px, 22vw, 100px);
    line-height: 0.91;
  }

  .hero h1 strong {
    display: inline-block;
  }

  .hero-lead {
    padding-right: 0;
    font-size: 15px;
  }

  .hero-stamp {
    position: relative;
    top: auto;
    right: auto;
    width: 148px;
    height: 148px;
    margin: 48px 0 0 auto;
  }

  .metrics {
    margin-top: 48px;
  }

  .metrics article {
    min-height: 116px;
    padding: 19px 16px;
  }

  .metrics strong {
    font-size: 32px;
  }

  .chart-section,
  .income-section,
  .events-section {
    padding-top: 70px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading h2,
  .method-intro h2 {
    font-size: 50px;
  }

  .section-note {
    text-align: left;
  }

  .chart-grid-label {
    top: 18px;
    left: 17px;
  }

  .chart-grid-label span:last-child {
    display: none;
  }

  .chart-reading {
    top: 17px;
    right: 16px;
    min-width: 0;
  }

  .chart-reading strong {
    font-size: 25px;
  }

  #salary-chart {
    width: 1000px;
    max-width: none;
    min-height: 0;
  }

  .chart-wrap {
    overflow-x: auto;
  }

  .playback {
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding: 18px;
  }

  .range-shell {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 10px 5px 0;
  }

  .annual-bars {
    grid-template-columns: repeat(12, 45px);
    min-height: 340px;
    overflow-x: auto;
    padding-inline: 24px;
  }

  .income-summary strong {
    font-size: 43px;
  }

  .assumption-grid {
    grid-template-columns: 1fr;
  }

  .method-section {
    padding-block: 100px 80px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
