:root {
  --paper: #f4f0e8;
  --ink: #161714;
  --muted: #6d6c64;
  --line: rgba(22, 23, 20, 0.17);
  --acid: #d8ff56;
  --orange: #ff5b36;
  --cream: #fffdf8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(22, 23, 20, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 23, 20, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

button,
input {
  font: inherit;
}

button {
  background: transparent;
  border: 0;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  border-bottom: 1px solid var(--ink);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1440px;
  padding: 20px clamp(20px, 4vw, 64px);
}

.wordmark {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.wordmark span {
  color: var(--orange);
}

.site-header p {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.header-links {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2.5vw, 30px);
}

.header-links a {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-links a:hover,
.header-links a:focus-visible {
  color: var(--orange);
}

.calculator-shell {
  margin: 0 auto;
  max-width: 1440px;
  padding: clamp(52px, 8vw, 112px) clamp(20px, 4vw, 64px) 88px;
  position: relative;
}

.intro-copy {
  max-width: 780px;
}

.eyebrow {
  align-items: center;
  display: flex;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--orange);
  content: "";
  height: 9px;
  width: 9px;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 8.6vw, 120px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
  margin: 0;
  max-width: 980px;
}

h1 em {
  color: var(--orange);
  font-weight: 400;
}

.lede {
  color: #45463f;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
  margin: 28px 0 0;
  max-width: 550px;
}

.jump-link {
  align-items: center;
  border-bottom: 1px solid var(--ink);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 14px;
  letter-spacing: 0.08em;
  margin-top: 28px;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.receipt-mark {
  background: var(--acid);
  box-shadow: 8px 8px 0 var(--ink);
  display: flex;
  flex-direction: column;
  padding: 20px 22px;
  position: absolute;
  right: clamp(20px, 8vw, 132px);
  top: clamp(76px, 11vw, 148px);
  transform: rotate(4deg);
  width: 175px;
}

.receipt-mark span,
.receipt-mark small {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.receipt-mark strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 29px;
  letter-spacing: -0.06em;
  margin: 9px 0 20px;
}

.calculator-grid {
  border: 1px solid var(--ink);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(70px, 10vw, 132px);
}

.input-panel,
.result-panel {
  min-width: 0;
  padding: clamp(24px, 3vw, 46px);
}

.input-panel {
  background: var(--cream);
}

.result-panel {
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-direction: column;
}

.panel-heading {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 18px;
}

.panel-heading > span {
  align-items: center;
  background: var(--ink);
  color: var(--cream);
  display: inline-flex;
  flex: 0 0 auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.panel-heading p {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.panel-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 31px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0;
}

.result-heading {
  border-bottom-color: rgba(255, 253, 248, 0.2);
}

.result-heading > span {
  background: var(--acid);
  color: var(--ink);
}

.result-heading p {
  color: rgba(255, 253, 248, 0.58);
}

.field-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  margin-top: 18px;
}

.field-row-three {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.15fr) minmax(0, 1fr);
}

.field {
  min-width: 0;
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.035em;
  margin-bottom: 9px;
}

.field input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  box-shadow: none;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 18px;
  font-weight: 650;
  height: 48px;
  padding: 0 2px;
}

.field input:focus-visible {
  border-bottom-color: var(--orange);
  box-shadow: 0 2px 0 var(--orange);
  outline: none;
}

.input-with-prefix {
  align-items: center;
  display: flex;
  position: relative;
}

.input-with-prefix > span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 18px;
  font-weight: 700;
  left: 1px;
  position: absolute;
  top: 13px;
  z-index: 1;
}

.input-with-prefix input {
  padding-left: 19px;
}

.reset-button {
  align-items: center;
  border-radius: 0;
  color: var(--muted);
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 8px;
  height: auto;
  letter-spacing: 0.07em;
  margin-top: 24px;
  padding: 0;
  text-transform: uppercase;
}

.reset-button:hover {
  background: transparent;
  color: var(--ink);
}

.life-cost {
  border-bottom: 1px solid rgba(255, 253, 248, 0.2);
  padding: 0 0 26px;
}

.life-cost svg {
  color: var(--acid);
  margin-bottom: 14px;
}

.life-cost p {
  color: var(--acid);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(39px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.95;
  margin: 0 0 11px;
}

.life-cost span {
  color: rgba(255, 253, 248, 0.68);
  font-size: 14px;
  line-height: 1.5;
}

.decision-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.paycheck-metric {
  align-items: center;
  border-right: 1px solid rgba(255, 253, 248, 0.2);
  display: flex;
  gap: 17px;
  min-width: 0;
  padding: 24px 24px 20px 0;
}

.pay-ring {
  align-items: center;
  background: conic-gradient(var(--orange) var(--ring-fill), rgba(255, 253, 248, 0.15) 0deg);
  border-radius: 50%;
  display: flex;
  flex: 0 0 auto;
  height: 82px;
  justify-content: center;
  position: relative;
  width: 82px;
}

.pay-ring::after {
  background: var(--ink);
  border-radius: 50%;
  content: "";
  height: 64px;
  position: absolute;
  width: 64px;
}

.pay-ring span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 16px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.paycheck-copy {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.paycheck-copy span {
  color: rgba(255, 253, 248, 0.52);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.paycheck-copy strong {
  color: var(--cream);
  font-size: 13px;
  line-height: 1.4;
  max-width: 130px;
}

.verdict {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  min-width: 0;
  padding: 24px 0 20px 28px;
}

.verdict > span {
  background: var(--orange);
  color: var(--ink);
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 6px 8px;
}

.result-panel.green .verdict > span {
  background: var(--acid);
}

.result-panel.amber .verdict > span {
  background: #ffc44d;
}

.verdict strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4.3vw, 48px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 17px 0 8px;
}

.verdict p {
  color: rgba(255, 253, 248, 0.63);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.guide-section,
.rules-section,
.faq-section,
.site-footer {
  margin: 0 auto;
  max-width: 1440px;
}

.guide-section {
  border-top: 1px solid var(--ink);
  padding: 96px clamp(20px, 4vw, 64px);
}

.guide-intro {
  align-items: end;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.guide-intro h2,
.rules-section h2,
.faq-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5.4vw, 72px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
}

.guide-intro .eyebrow,
.rules-section .eyebrow,
.faq-heading .eyebrow {
  margin-bottom: 20px;
}

.guide-intro > p {
  color: #4f5049;
  font-size: 16px;
  line-height: 1.72;
  margin: 0;
}

.definition-list {
  border-top: 1px solid var(--ink);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 72px;
}

.definition-list article {
  padding: 26px 28px 0 0;
}

.definition-list article + article {
  border-left: 1px solid var(--ink);
  padding-left: 28px;
}

.definition-list span {
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.definition-list h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 17px 0 12px;
}

.definition-list p {
  color: #5a5b54;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.section-link {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 34px 0 0;
  text-transform: uppercase;
}

.section-link a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.section-link a:hover,
.section-link a:focus-visible {
  color: var(--orange);
}

.example-section,
.decision-guide,
.limits-section,
.editorial-section {
  margin: 0 auto;
  max-width: 1440px;
}

.example-section {
  background: var(--acid);
  border: 1px solid var(--ink);
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  grid-template-columns: minmax(240px, 0.75fr) minmax(280px, 0.85fr) minmax(260px, 0.8fr);
  padding: clamp(42px, 6vw, 80px) clamp(20px, 4vw, 64px);
}

.example-section .eyebrow::before {
  background: var(--ink);
}

.example-copy h2,
.decision-guide h2,
.limits-section h2,
.editorial-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
}

.example-copy > p:last-child,
.decision-guide-heading > p:last-child,
.limits-copy p,
.editorial-section > div:last-child > p {
  font-size: 14px;
  line-height: 1.72;
}

.example-copy > p:last-child {
  margin: 24px 0 0;
}

.example-receipt {
  background: var(--cream);
  box-shadow: 8px 8px 0 var(--ink);
  margin: 0;
  padding: 20px 22px;
}

.example-receipt div {
  align-items: baseline;
  border-bottom: 1px dashed rgba(22, 23, 20, 0.35);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 12px 0;
}

.example-receipt dt {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.example-receipt dd {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  font-weight: 800;
  margin: 0;
  text-align: right;
}

.example-receipt .example-total {
  border-bottom: 0;
  border-top: 2px solid var(--ink);
  margin-top: 8px;
  padding-bottom: 4px;
}

.example-receipt .example-total dd {
  color: var(--orange);
}

.example-reading {
  border-left: 1px solid var(--ink);
  padding-left: clamp(24px, 3vw, 42px);
}

.example-reading h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
}

.example-reading p {
  font-size: 14px;
  line-height: 1.72;
  margin: 0;
}

.rules-section {
  background: var(--orange);
  border: 1px solid var(--ink);
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  padding: clamp(42px, 6vw, 80px) clamp(20px, 4vw, 64px);
}

.rules-section .eyebrow::before {
  background: var(--ink);
}

.rules-section ol {
  border-top: 1px solid var(--ink);
  list-style: none;
  margin: 0;
  padding: 0;
}

.rules-section li {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  padding: 22px 0;
}

.rules-section li + li {
  border-top: 1px solid rgba(22, 23, 20, 0.45);
}

.rules-section strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.rules-section li span {
  font-size: 13px;
  line-height: 1.6;
}

.decision-guide {
  display: grid;
  gap: clamp(48px, 7vw, 100px);
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  padding: 100px clamp(20px, 4vw, 64px);
}

.decision-guide-heading > p:last-child {
  color: #4f5049;
  margin: 26px 0 0;
  max-width: 480px;
}

.decision-checks {
  border-top: 1px solid var(--ink);
}

.decision-checks article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 42px 1fr;
  padding: 24px 0;
}

.decision-checks article > span {
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 900;
  padding-top: 4px;
}

.decision-checks h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}

.decision-checks p {
  color: #55564f;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.limits-section {
  background: var(--ink);
  color: var(--cream);
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  padding: clamp(56px, 7vw, 96px) clamp(20px, 4vw, 64px);
}

.limits-section .eyebrow::before {
  background: var(--acid);
}

.limits-copy p {
  color: rgba(255, 253, 248, 0.72);
  margin: 0;
}

.limits-copy p + p {
  border-top: 1px solid rgba(255, 253, 248, 0.18);
  margin-top: 22px;
  padding-top: 22px;
}

.faq-section {
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  padding: 100px clamp(20px, 4vw, 64px);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--ink);
  padding: 24px 0;
}

.faq-list summary {
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  letter-spacing: -0.025em;
  list-style-position: outside;
  padding-left: 5px;
}

.faq-list details[open] summary {
  color: var(--orange);
}

.faq-list p {
  color: #55564f;
  font-size: 14px;
  line-height: 1.72;
  margin: 18px 0 0;
  max-width: 690px;
}

.faq-list a {
  border-bottom: 1px solid currentColor;
}

.editorial-section {
  border-top: 1px solid var(--ink);
  display: grid;
  gap: clamp(48px, 8vw, 120px);
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  padding: clamp(58px, 8vw, 100px) clamp(20px, 4vw, 64px);
}

.editorial-section > div:last-child > p {
  color: #4f5049;
  margin: 0;
}

.editorial-section .section-link {
  margin-top: 28px !important;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--ink);
  display: grid;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  gap: 20px;
  grid-template-columns: 1fr auto auto auto;
  padding: 25px clamp(20px, 4vw, 64px) 32px;
}

.site-footer p {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin: 0;
  text-transform: uppercase;
}

.site-footer span,
.site-footer small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--orange);
}

.legal-page {
  margin: 0 auto;
  max-width: 960px;
  min-height: calc(100vh - 69px);
  padding: clamp(58px, 9vw, 110px) clamp(20px, 6vw, 72px) 96px;
}

.legal-page h1 {
  font-size: clamp(48px, 9vw, 88px);
  margin-bottom: 34px;
}

.legal-page .legal-updated {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  margin-bottom: 42px;
  text-transform: uppercase;
}

.resource-intro {
  color: #45463f;
  font-size: 18px;
  line-height: 1.72;
  margin: -8px 0 46px;
  max-width: 760px;
}

.legal-content {
  border-top: 1px solid var(--ink);
  max-width: 760px;
}

.legal-content section {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.legal-content h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.035em;
  margin: 0 0 12px;
}

.legal-content p,
.legal-content li {
  color: #4f5049;
  font-size: 15px;
  line-height: 1.7;
}

.legal-content p {
  margin: 0;
}

.legal-content p + p {
  margin-top: 14px;
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-content a {
  border-bottom: 1px solid currentColor;
}

.legal-content strong {
  color: var(--ink);
}

.legal-content .formula {
  background: var(--acid);
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: 14px 16px;
}

.legal-content .formula + .formula {
  margin-top: 8px;
}

.error-page {
  min-height: calc(100vh - 69px);
}

@media (max-width: 900px) {
  .receipt-mark {
    display: none;
  }

  .intro-copy {
    max-width: 670px;
  }

  .calculator-grid {
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

  .guide-intro,
  .rules-section,
  .faq-section,
  .example-section,
  .decision-guide,
  .limits-section,
  .editorial-section {
    grid-template-columns: 1fr;
  }

  .example-reading {
    border-left: 0;
    border-top: 1px solid var(--ink);
    padding-left: 0;
    padding-top: 28px;
  }

  .decision-guide,
  .limits-section,
  .editorial-section {
    gap: 46px;
  }

  .guide-intro {
    align-items: start;
  }

  .definition-list {
    grid-template-columns: 1fr;
  }

  .definition-list article {
    padding: 25px 0;
  }

  .definition-list article + article {
    border-left: 0;
    border-top: 1px solid var(--ink);
    padding-left: 0;
  }

  .site-footer {
    align-items: start;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-block: 16px;
  }

  .site-header p {
    display: none;
  }

  .header-links {
    gap: 14px;
  }

  .header-links a:nth-child(1),
  .header-links a:nth-child(3) {
    display: none;
  }

  .calculator-shell {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 70px);
    line-height: 0.91;
  }

  .lede {
    font-size: 16px;
  }

  .input-panel,
  .result-panel {
    padding: 27px 22px;
  }

  .field-row {
    gap: 22px;
    grid-template-columns: 1fr;
  }

  .decision-row {
    align-items: stretch;
    grid-template-columns: clamp(96px, 27vw, 112px) minmax(0, 1fr);
  }

  .paycheck-metric {
    align-items: center;
    border-bottom: 0;
    border-right: 0;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    padding: 22px 14px 22px 0;
    text-align: center;
  }

  .paycheck-copy {
    align-items: center;
    gap: 0;
  }

  .paycheck-copy span {
    display: none;
  }

  .paycheck-copy strong {
    font-size: 10px;
    letter-spacing: 0.06em;
    line-height: 1.35;
    max-width: 94px;
    text-transform: uppercase;
  }

  .decision-row .verdict {
    border-left: 1px solid rgba(255, 253, 248, 0.2);
    justify-content: center;
    padding: 22px 0 22px 20px;
  }

  .decision-row .verdict strong {
    font-size: clamp(29px, 9vw, 38px);
    margin-top: 14px;
  }

  .decision-row .verdict p {
    font-size: 12px;
  }

  .pay-ring {
    height: 74px;
    width: 74px;
  }

  .pay-ring::after {
    height: 58px;
    width: 58px;
  }

  .guide-section {
    padding-bottom: 70px;
    padding-top: 70px;
  }

  .guide-intro h2,
  .rules-section h2,
  .faq-heading h2 {
    font-size: 42px;
  }

  .rules-section {
    gap: 42px;
  }

  .rules-section li {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .faq-section {
    gap: 44px;
    padding-bottom: 72px;
    padding-top: 72px;
  }

  .example-section,
  .decision-guide,
  .limits-section,
  .editorial-section {
    padding-bottom: 64px;
    padding-top: 64px;
  }

  .example-copy h2,
  .decision-guide h2,
  .limits-section h2,
  .editorial-section h2 {
    font-size: 42px;
  }
}

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