:root {
  --paper: #f2f3ee;
  --paper-solid: #f2f3ee;
  --white: #ffffff;
  --ink: #101114;
  --quiet: #5c626c;
  --fog: #c9cdd3;
  --cobalt: #2447ff;
  --tape: #f2ff3d;
  --signal: #ff4d32;
  --shell: min(1260px, calc(100vw - 48px));
  --line: 3px solid var(--ink);
  --hard-shadow: 9px 9px 0 var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.wordmark {
  font-family: "Arial Black", "Avenir Next Condensed", "Helvetica Neue", Arial, sans-serif;
}

h1 {
  max-width: 970px;
  margin-bottom: 28px;
  font-size: clamp(4.4rem, 7.4vw, 7.3rem);
  font-weight: 950;
  letter-spacing: -0.078em;
  line-height: 0.82;
  text-wrap: balance;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.3vw, 6rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

:lang(ja) h1,
:lang(ja) h2,
:lang(ja) h3,
:lang(ko) h1,
:lang(ko) h2,
:lang(ko) h3,
:lang(zh-Hant) h1,
:lang(zh-Hant) h2,
:lang(zh-Hant) h3 {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Apple SD Gothic Neo", "PingFang TC", sans-serif;
  letter-spacing: -0.045em;
  line-height: 1.04;
  word-break: auto-phrase;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 14px;
  padding: 12px 16px;
  border: var(--line);
  background: var(--tape);
  color: var(--ink);
  font-weight: 850;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: var(--line);
  background: var(--cobalt);
  color: var(--white);
}

.header-inner {
  display: grid;
  min-height: 78px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.wordmark {
  color: currentColor;
  font-size: 1.65rem;
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

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

nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

nav a,
.footer-links a {
  display: inline-flex;
  min-height: 44px;
  padding: 9px 12px;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-decoration: none;
  text-transform: uppercase;
}

nav a[aria-current="page"] {
  background: var(--tape);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.language-menu {
  position: relative;
}

.language-menu summary {
  display: flex;
  min-height: 44px;
  padding: 8px 12px;
  border: 2px solid var(--white);
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 800;
  list-style: none;
  text-transform: uppercase;
}

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

.language-menu[open] summary {
  background: var(--ink);
}

.language-list {
  position: absolute;
  top: calc(100% + 11px);
  right: 0;
  display: grid;
  min-width: 210px;
  border: var(--line);
  background: var(--paper-solid);
  box-shadow: var(--hard-shadow);
  color: var(--ink);
}

.language-list a {
  min-height: 44px;
  padding: 10px 14px;
  border-bottom: 2px solid var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.language-list a:last-child {
  border-bottom: 0;
}

.language-list a[aria-current="true"] {
  background: var(--tape);
  font-weight: 900;
}

.language-list a:hover,
.language-list a:focus-visible {
  background: var(--cobalt);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 78px);
  padding-block: clamp(68px, 8vw, 112px) clamp(90px, 12vw, 160px);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 0;
  row-gap: 28px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: calc(68% - 1px);
  width: 3px;
  background: var(--ink);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -2;
  top: 0;
  bottom: 0;
  left: 68%;
  right: calc((100vw - 100%) / -2);
  background: var(--fog);
  content: "";
}

.hero-copy {
  z-index: 2;
  grid-column: 1 / 8;
  grid-row: 1;
  align-self: end;
}

.hero-copy h1 {
  margin-bottom: 0;
}

.hero-details {
  z-index: 2;
  grid-column: 1 / 7;
  grid-row: 2;
  align-self: start;
}

.eyebrow {
  display: table;
  margin-bottom: 22px;
  padding: 6px 9px 5px;
  border: 2px solid var(--ink);
  background: var(--tape);
  color: var(--ink);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.lede {
  max-width: 700px;
  margin-bottom: 32px;
  color: var(--quiet);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  font-weight: 530;
  line-height: 1.48;
}

.hero .lede {
  max-width: 610px;
  padding: 18px 20px;
  border-left: 9px solid var(--cobalt);
  background: var(--paper);
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 19px;
  border: var(--line);
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.button:hover {
  box-shadow: 5px 5px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.button-primary {
  background: var(--tape);
}

.button-secondary {
  background: var(--white);
}

.proof-row {
  display: flex;
  max-width: 650px;
  margin: 38px 0 0;
  padding: 0;
  border-block: 2px solid var(--ink);
  flex-wrap: wrap;
  color: var(--ink);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.71rem;
  font-weight: 850;
  list-style: none;
  text-transform: uppercase;
}

.proof-row li {
  padding: 9px 14px 8px 0;
}

.proof-row li + li::before {
  margin-right: 14px;
  color: var(--cobalt);
  content: "/";
}

.compare-stage {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: clamp(540px, 52vw, 700px);
  padding: 34px 26px;
  border: var(--line);
  background: var(--ink);
  box-shadow: 16px 16px 0 var(--cobalt);
  grid-column: 8 / -1;
  grid-row: 1 / 3;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 14px;
}

.compare-stage::before {
  position: absolute;
  z-index: 4;
  top: 57%;
  right: -34px;
  left: -34px;
  height: 24px;
  border-block: 2px solid var(--ink);
  background: var(--tape);
  content: "";
  transform: rotate(-2deg);
}

.compare-stage::after {
  position: absolute;
  z-index: 2;
  top: 15%;
  bottom: 13%;
  left: 53.2%;
  width: 4px;
  background: var(--cobalt);
  content: "";
  transform: rotate(1deg);
}

.stage-folio {
  position: absolute;
  z-index: 6;
  top: -20px;
  right: 24px;
  padding: 8px 12px;
  border: var(--line);
  background: var(--white);
  color: var(--ink);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 900;
}

.compare-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 7px solid var(--paper);
  outline: 3px solid var(--ink);
  background: var(--ink);
  box-shadow: 7px 7px 0 var(--cobalt);
  transition: transform 180ms ease;
}

.compare-left {
  transform: rotate(-2.2deg) translateY(10px);
}

.compare-right {
  transform: rotate(2.1deg) translateY(-9px);
}

.compare-stage:hover .compare-left {
  transform: rotate(-3deg) translate(-4px, 5px);
}

.compare-stage:hover .compare-right {
  transform: rotate(2.8deg) translate(4px, -14px);
}

.compare-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.compare-card span {
  position: absolute;
  z-index: 3;
  bottom: 15px;
  left: 14px;
  padding: 7px 9px 6px;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.versus-pin {
  position: absolute;
  z-index: 7;
  top: 57%;
  left: 53.2%;
  display: grid;
  width: 62px;
  height: 62px;
  border: var(--line);
  place-items: center;
  background: var(--signal);
  color: var(--ink);
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  transform: translate(-50%, -50%) rotate(4deg);
}

.choice-note {
  position: absolute;
  z-index: 8;
  right: 22px;
  top: calc(57% - 15px);
  display: flex;
  max-width: 45%;
  min-height: 44px;
  padding: 9px 12px;
  border: 2px solid var(--ink);
  align-items: center;
  gap: 8px;
  background: var(--tape);
  color: var(--ink);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.15;
  transform: rotate(1deg);
}

.choice-note span {
  font-size: 1.1rem;
}

.section {
  position: relative;
  padding-block: clamp(100px, 12vw, 170px);
  border-top: var(--line);
}

.process-section::before,
.faq-section::before {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 14px;
  border-right: var(--line);
  border-bottom: var(--line);
  background: var(--ink);
  color: var(--tape);
  content: "02";
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.8rem;
  font-weight: 900;
}

.section-heading {
  display: grid;
  max-width: 920px;
  margin-bottom: 64px;
  grid-template-columns: minmax(140px, 0.35fr) 1fr;
  align-items: start;
  gap: 30px;
}

.section-heading .eyebrow {
  margin-top: 9px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.step-card,
.trust-card,
.document-card {
  border: var(--line);
  background: var(--white);
}

.step-card {
  position: relative;
  min-height: 300px;
  padding: clamp(24px, 3vw, 38px);
  box-shadow: 8px 8px 0 var(--ink);
}

.step-card:nth-child(1) {
  grid-column: 1 / 6;
  transform: rotate(-0.8deg);
}

.step-card:nth-child(2) {
  background: var(--cobalt);
  color: var(--white);
  grid-column: 6 / -1;
  transform: rotate(0.5deg) translateY(26px);
}

.step-card:nth-child(3) {
  margin-top: 34px;
  background: var(--ink);
  color: var(--white);
  grid-column: 1 / 8;
  transform: rotate(0.4deg);
}

.step-card:nth-child(4) {
  margin-top: 34px;
  background: var(--tape);
  grid-column: 8 / -1;
  transform: rotate(-0.7deg) translateY(-10px);
}

.step-number,
.rank-number {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-weight: 950;
}

.step-number {
  margin-bottom: clamp(52px, 7vw, 90px);
  color: var(--cobalt);
  font-size: clamp(2.7rem, 5vw, 5rem);
  letter-spacing: -0.1em;
  line-height: 0.8;
}

.step-card:nth-child(2) .step-number,
.step-card:nth-child(3) .step-number {
  color: var(--tape);
}

.step-card:nth-child(4) .step-number {
  color: var(--signal);
}

.step-card p,
.trust-card p,
.result-copy p,
.document-card p,
.policy-section p,
.policy-section li {
  color: var(--quiet);
}

.step-card:nth-child(2) p,
.step-card:nth-child(3) p {
  color: rgba(255, 255, 255, 0.78);
}

.result-section {
  overflow: hidden;
  border-bottom: var(--line);
  background: var(--cobalt);
  color: var(--white);
}

.result-section::before {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 14px;
  border-bottom: var(--line);
  border-left: var(--line);
  background: var(--tape);
  color: var(--ink);
  content: "03";
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.8rem;
  font-weight: 900;
}

.result-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.result-copy {
  position: relative;
  z-index: 3;
}

.result-copy .eyebrow {
  box-shadow: 5px 5px 0 var(--ink);
}

.result-copy p:last-child {
  max-width: 510px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
}

.ranked-strip {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 610px;
  padding: 70px 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 0;
}

.rank-line {
  position: absolute;
  z-index: 0;
  top: 49%;
  right: -15vw;
  left: -12vw;
  height: 26px;
  border-block: 3px solid var(--ink);
  background: var(--tape);
  transform: rotate(3deg);
}

.ranked-strip figure {
  position: relative;
  z-index: 1;
  margin: 0 -5px;
}

.ranked-strip figure:nth-of-type(1) {
  z-index: 4;
  transform: rotate(-5deg) translateY(-20px);
}

.ranked-strip figure:nth-of-type(2) {
  z-index: 3;
  transform: rotate(3deg) translateY(32px);
}

.ranked-strip figure:nth-of-type(3) {
  z-index: 2;
  transform: rotate(-1deg) translateY(78px);
}

.ranked-strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 9px solid var(--white);
  outline: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  object-fit: cover;
}

.rank-number {
  position: absolute;
  z-index: 2;
  top: -24px;
  left: 16px;
  margin: 0;
  padding: 8px 11px;
  border: var(--line);
  background: var(--tape);
  color: var(--ink);
  font-size: 0.82rem;
  letter-spacing: -0.04em;
}

.trust-section {
  border-top: 0;
  background: var(--ink);
  color: var(--white);
}

.trust-section::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 27vw;
  height: 18px;
  border-right: var(--line);
  border-bottom: var(--line);
  background: var(--signal);
  content: "";
}

.trust-intro {
  display: grid;
  margin-bottom: 68px;
  grid-template-columns: minmax(170px, 0.35fr) minmax(0, 1.15fr) minmax(240px, 0.5fr);
  align-items: start;
  gap: 34px;
}

.trust-intro .eyebrow {
  margin-top: 9px;
}

.trust-intro > p:last-child {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
}

.trust-grid {
  display: grid;
  border: var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  box-shadow: 10px 10px 0 var(--tape);
}

.trust-card {
  min-height: 290px;
  padding: 28px;
  border: 0;
  border-right: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.trust-card:nth-child(2) {
  background: var(--cobalt);
  color: var(--white);
}

.trust-card:nth-child(3) {
  border-right: 0;
  background: var(--tape);
}

.trust-card:nth-child(2) p {
  color: rgba(255, 255, 255, 0.78);
}

.trust-card:nth-child(3) p {
  color: var(--ink);
}

.trust-dot {
  display: block;
  width: 20px;
  height: 20px;
  margin-bottom: 70px;
  border: 3px solid var(--ink);
  background: var(--signal);
  transform: rotate(12deg);
}

.trust-card:nth-child(2) .trust-dot {
  border-color: var(--white);
  background: var(--tape);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 9vw, 130px);
}

.faq-section::before {
  content: "04";
}

.faq-section .section-heading {
  display: block;
  margin-bottom: 0;
}

.faq-list {
  border-top: var(--line);
}

.faq {
  border-bottom: var(--line);
}

.faq summary {
  display: grid;
  min-height: 82px;
  padding: 18px 0;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1.3;
  list-style: none;
}

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

.faq summary span {
  display: grid;
  width: 40px;
  height: 40px;
  border: var(--line);
  place-items: center;
  background: var(--white);
  color: var(--ink);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 1.35rem;
  transition: transform 150ms ease, background-color 150ms ease;
}

.faq[open] summary span {
  background: var(--tape);
  transform: rotate(45deg);
}

.faq p {
  max-width: 720px;
  padding: 0 58px 28px 0;
  color: var(--quiet);
}

.site-footer {
  padding-block: 58px;
  border-top: var(--line);
  background: var(--tape);
  color: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 44px;
}

.footer-mark {
  display: inline-block;
  margin-bottom: 12px;
}

.footer-mark span {
  color: var(--signal);
}

.footer-inner p {
  max-width: 560px;
  margin: 0;
  font-size: 0.94rem;
  font-weight: 650;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

.footer-links a:hover {
  background: var(--ink);
  color: var(--tape);
}

.document-main {
  padding-bottom: clamp(90px, 11vw, 150px);
}

.document-hero {
  position: relative;
  max-width: none;
  padding: clamp(76px, 9vw, 120px) clamp(24px, 6vw, 90px);
  border-right: var(--line);
  border-bottom: var(--line);
  border-left: 24px solid var(--cobalt);
  background: var(--white);
  box-shadow: 12px 12px 0 var(--ink);
}

.document-hero::after {
  position: absolute;
  top: 26px;
  right: -3px;
  width: 23%;
  height: 18px;
  border: var(--line);
  border-right: 0;
  background: var(--tape);
  content: "";
}

.document-hero h1 {
  max-width: 980px;
}

.document-hero .lede {
  max-width: 760px;
}

.document-hero .button {
  margin-top: 8px;
}

.email-line {
  margin: 20px 0 0;
  color: var(--quiet);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: clamp(0.78rem, 2vw, 0.93rem);
  overflow-wrap: anywhere;
}

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

.document-card {
  position: relative;
  padding: clamp(28px, 4vw, 52px);
  box-shadow: 8px 8px 0 var(--ink);
}

.document-card-wide {
  background: var(--cobalt);
  color: var(--white);
  grid-column: 1 / -1;
  transform: rotate(-0.4deg);
}

.document-card-wide p {
  max-width: 920px;
  color: rgba(255, 255, 255, 0.8);
}

.document-card h2,
.policy-section h2 {
  font-size: clamp(1.75rem, 3.5vw, 3.2rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.document-card ul,
.policy-section ul {
  margin: 22px 0 0;
  padding-left: 1.2em;
}

.document-card li,
.policy-section li {
  padding: 5px 0;
}

.document-card .note {
  margin-top: 28px;
  padding: 22px 20px 0;
  border-top: 3px solid var(--ink);
  font-size: 0.93rem;
}

.recovery-card {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  transform: rotate(0.6deg) translateY(18px);
}

.recovery-card::after {
  position: absolute;
  right: 16px;
  bottom: -26px;
  color: var(--tape);
  content: "↶";
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-16deg);
}

.recovery-card p {
  position: relative;
  z-index: 1;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.75);
}

.document-link {
  margin-top: 52px;
  font-weight: 900;
}

.document-link a {
  display: inline-flex;
  min-height: 48px;
  padding: 11px 14px;
  border: var(--line);
  align-items: center;
  background: var(--tape);
  box-shadow: 5px 5px 0 var(--ink);
  color: var(--ink);
  text-decoration: none;
}

.policy-hero {
  margin-top: 72px;
  padding-bottom: clamp(62px, 8vw, 100px);
  border: var(--line);
  border-left-width: 24px;
  background: var(--cobalt);
  color: var(--white);
}

.policy-hero .lede,
.policy-hero .updated {
  color: rgba(255, 255, 255, 0.82);
}

.updated {
  margin: 40px 0 0;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.policy {
  max-width: 980px;
  margin-top: 90px;
  counter-reset: policy-section;
}

.policy-section {
  display: grid;
  padding-block: clamp(40px, 6vw, 70px);
  border-top: var(--line);
  grid-template-columns: 88px 1fr;
  column-gap: 34px;
  counter-increment: policy-section;
}

.policy-section::before {
  padding-top: 7px;
  color: var(--cobalt);
  content: counter(policy-section, decimal-leading-zero);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 1.2rem;
  font-weight: 950;
}

.policy-section h2,
.policy-section p,
.policy-section ul {
  grid-column: 2;
}

.policy-section p,
.policy-section li {
  max-width: 800px;
}

.policy-section p:last-child,
.policy-section ul:last-child {
  margin-bottom: 0;
}

.contact-section {
  margin-top: 28px;
  padding-inline: 24px;
  border: var(--line);
  background: var(--tape);
  box-shadow: 8px 8px 0 var(--ink);
}

.contact-section::before {
  color: var(--signal);
}

.contact-section a {
  color: var(--ink);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.not-found {
  min-height: 70vh;
  padding-block: 110px;
}

.not-found h1 {
  max-width: 850px;
}

:focus-visible {
  outline: 4px solid var(--tape);
  outline-offset: 5px;
  box-shadow: 0 0 0 8px var(--ink);
}

@keyframes dossier-in {
  from {
    opacity: 0;
    transform: translateY(18px) rotate(-0.5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@media (max-width: 1040px) {
  .header-inner {
    gap: 18px;
  }

  nav {
    gap: 2px;
  }

  nav a {
    padding-inline: 8px;
  }

  .hero-copy {
    grid-column: 1 / 8;
  }

  .compare-stage {
    grid-column: 8 / -1;
  }

  .trust-intro {
    grid-template-columns: minmax(140px, 0.35fr) 1fr;
  }

  .trust-intro > p:last-child {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 30px, 1260px);
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    padding-block: 12px;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand language"
      "nav nav";
    row-gap: 8px;
  }

  .wordmark {
    grid-area: brand;
  }

  nav {
    justify-content: flex-start;
    grid-area: nav;
  }

  .language-menu {
    grid-area: language;
  }

  .hero {
    display: grid;
    min-height: auto;
    padding-block: 68px 110px;
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-copy,
  .hero-details,
  .compare-stage {
    grid-column: 1;
  }

  .hero-copy {
    grid-row: 1;
  }

  .compare-stage {
    width: calc(100% - 12px);
    min-height: min(760px, 105vw);
    margin-left: 0;
    grid-row: 2;
  }

  .hero-details {
    grid-row: 3;
  }

  .section-heading {
    display: block;
  }

  .section-heading .eyebrow {
    margin-top: 0;
  }

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

  .step-card:nth-child(n) {
    min-height: 260px;
    margin-top: 0;
    grid-column: 1;
    transform: none;
  }

  .result-grid,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .ranked-strip {
    max-width: 720px;
    min-height: 560px;
  }

  .trust-intro {
    display: block;
  }

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

  .trust-card {
    min-height: 240px;
    border-right: 0;
    border-bottom: var(--line);
  }

  .trust-card:last-child {
    border-bottom: 0;
  }

  .faq-section .section-heading {
    margin-bottom: 20px;
  }

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

  .document-card-wide {
    grid-column: 1;
  }

  .recovery-card {
    transform: none;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  :root {
    --shell: min(100% - 24px, 1260px);
    --hard-shadow: 6px 6px 0 var(--ink);
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(3.5rem, 17vw, 5.2rem);
    line-height: 0.86;
  }

  h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  :lang(ja) h1,
  :lang(ko) h1,
  :lang(zh-Hant) h1 {
    font-size: clamp(3rem, 13vw, 4rem);
  }

  .header-inner {
    padding-block: 10px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }

  nav a {
    padding-inline: 5px;
    font-size: 0.68rem;
    letter-spacing: 0;
  }

  .language-menu summary {
    padding-inline: 9px;
  }

  .language-list {
    max-width: calc(100vw - 24px);
  }

  .hero {
    padding-block: 56px 88px;
    gap: 58px;
  }

  .hero .lede {
    padding: 15px 16px;
    border-left-width: 7px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .proof-row {
    display: grid;
  }

  .proof-row li {
    padding: 7px 0;
    border-bottom: 1px solid var(--fog);
  }

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

  .proof-row li + li::before {
    margin-right: 8px;
    content: "+";
  }

  .compare-stage {
    width: calc(100% - 8px);
    min-height: 122vw;
    padding: 24px 13px;
    gap: 8px;
    box-shadow: 8px 8px 0 var(--cobalt);
  }

  .compare-stage::before {
    right: -18px;
    left: -18px;
    height: 20px;
  }

  .compare-card {
    border-width: 4px;
    box-shadow: 4px 4px 0 var(--cobalt);
  }

  .compare-card span {
    bottom: 8px;
    left: 7px;
    max-width: calc(100% - 14px);
    padding: 5px 6px;
    font-size: 0.62rem;
  }

  .versus-pin {
    width: 50px;
    height: 50px;
  }

  .choice-note {
    right: 8px;
    max-width: 47%;
    padding: 7px;
    font-size: 0.64rem;
  }

  .stage-folio {
    right: 12px;
  }

  .section {
    padding-block: 92px;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .step-card {
    padding: 26px;
  }

  .step-number {
    margin-bottom: 55px;
  }

  .result-grid {
    gap: 40px;
  }

  .ranked-strip {
    min-height: 410px;
    padding: 40px 5px;
  }

  .ranked-strip figure {
    margin-inline: -2px;
  }

  .ranked-strip figure:nth-of-type(1) {
    transform: rotate(-4deg) translateY(-8px);
  }

  .ranked-strip figure:nth-of-type(2) {
    transform: rotate(3deg) translateY(18px);
  }

  .ranked-strip figure:nth-of-type(3) {
    transform: rotate(-1deg) translateY(42px);
  }

  .ranked-strip img {
    border-width: 4px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .rank-number {
    top: -18px;
    left: 5px;
    padding: 5px 6px;
    font-size: 0.65rem;
  }

  .trust-grid {
    box-shadow: 6px 6px 0 var(--tape);
  }

  .trust-card {
    min-height: 220px;
    padding: 25px;
  }

  .trust-dot {
    margin-bottom: 48px;
  }

  .faq p {
    padding-right: 0;
  }

  .document-hero,
  .policy-hero {
    padding-inline: 22px;
    border-left-width: 12px;
  }

  .document-hero {
    box-shadow: 7px 7px 0 var(--ink);
  }

  .document-grid {
    margin-top: 56px;
  }

  .policy-hero {
    margin-top: 40px;
  }

  .policy {
    margin-top: 64px;
  }

  .policy-section {
    display: block;
  }

  .policy-section::before {
    display: block;
    margin-bottom: 20px;
  }

  .contact-section {
    padding-inline: 20px;
  }

  .footer-links {
    display: grid;
  }
}

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

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

  .compare-left,
  .compare-right,
  .compare-stage:hover .compare-left,
  .compare-stage:hover .compare-right {
    transform: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --quiet: #282b31;
    --fog: #767b84;
  }

  .result-copy p:last-child,
  .trust-intro > p:last-child,
  .step-card:nth-child(2) p,
  .step-card:nth-child(3) p,
  .trust-card:nth-child(2) p,
  .document-card-wide p,
  .policy-hero .lede,
  .policy-hero .updated,
  .recovery-card p {
    color: var(--white);
  }
}
