:root {
  color-scheme: light;
  --navy-950: #0c191f;
  --navy-900: #12242b;
  --navy-800: #162f38;
  --orange-700: #b84807;
  --orange-600: #db5e0b;
  --orange-500: #fc6f20;
  --orange-100: #ffeadb;
  --orange-50: #fff8f1;
  --sand-100: #f5eedc;
  --canvas: #f9f8f6;
  --surface: #ffffff;
  --ink: #2b231f;
  --muted: #79685d;
  --border: #e2dcd4;
  --line: #e8e1d9;
  --success: #15803d;
  --danger: #c72b2b;
  --shadow: 0 24px 70px rgba(22, 35, 42, 0.13);
  --shadow-soft: 0 12px 32px rgba(82, 68, 60, 0.08);
  --radius-lg: 26px;
  --radius-md: 17px;
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
  color: var(--ink);
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid #ffb689;
  outline-offset: 4px;
}

.site-header,
.hero-inner,
.page-shell,
.site-footer {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block-end: 124px;
  background:
    radial-gradient(circle at 12% 28%, rgba(252, 111, 32, 0.18), transparent 28%),
    linear-gradient(145deg, var(--navy-800), var(--navy-950));
  color: #ffffff;
}

.hero::before {
  position: absolute;
  top: -190px;
  inset-inline-end: -120px;
  width: 440px;
  height: 440px;
  border: 74px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 8px;
  background: var(--orange-500);
  content: "";
}

.site-header {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.24));
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-link,
.privacy-label {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 11px;
  color: #f6f3f0;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.header-link:hover {
  border-color: rgba(252, 111, 32, 0.72);
  background: rgba(252, 111, 32, 0.1);
}

.header-link svg,
.privacy-label svg {
  width: 18px;
  height: 18px;
  color: var(--orange-500);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(40px, 7vw, 92px);
  align-items: end;
  padding-block-start: clamp(60px, 9vw, 106px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #ffb184;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background: var(--orange-500);
  content: "";
}

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

h1 {
  max-width: 760px;
  margin-block-end: 22px;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.06em;
}

.hero-copy {
  max-width: 720px;
  margin-block-end: 0;
  color: #dae2e5;
  font-size: clamp(1rem, 2vw, 1.14rem);
  line-height: 1.95;
}

.hero-note {
  padding: 24px 22px 22px;
  border-top: 3px solid var(--orange-500);
  border-radius: 0 0 16px 16px;
  background: rgba(7, 17, 21, 0.5);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.hero-note svg {
  width: 25px;
  height: 25px;
  margin-block-end: 14px;
  color: #ff9b61;
}

.hero-note strong {
  display: block;
  margin-block-end: 7px;
  font-size: 1rem;
}

.hero-note p,
.hero-note time {
  margin: 0;
  color: #d8e0e2;
  font-size: 0.9rem;
  line-height: 1.8;
}

.page-shell {
  position: relative;
  z-index: 2;
  margin-block-start: -72px;
  padding-block-end: 84px;
}

.status-card,
.summary-card {
  display: grid;
  gap: 20px;
  align-items: center;
  padding: 26px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.status-card {
  grid-template-columns: 64px minmax(0, 1fr) auto;
}

.status-icon {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 17px;
  background: var(--orange-100);
  color: var(--orange-700);
}

.status-icon svg {
  width: 28px;
  height: 28px;
}

.status-card p {
  margin: 0;
}

.status-kicker {
  color: var(--muted);
  font-size: 0.81rem;
  font-weight: 800;
}

.status-main {
  font-size: clamp(1.04rem, 2.2vw, 1.28rem);
  font-weight: 900;
  line-height: 1.6;
}

.status-tag {
  padding-inline-start: 24px;
  border-inline-start: 1px solid var(--border);
  color: var(--orange-700);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.summary-card {
  grid-template-columns: repeat(3, 1fr);
}

.summary-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
}

.summary-item + .summary-item {
  padding-inline-start: 20px;
  border-inline-start: 1px solid var(--border);
}

.summary-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  background: var(--orange-50);
  color: var(--orange-600);
}

.summary-icon svg {
  width: 22px;
  height: 22px;
}

.summary-item strong,
.summary-item span {
  display: block;
}

.summary-item strong {
  font-size: 0.93rem;
}

.summary-item span {
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.6;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(280px, 0.72fr);
  gap: 32px;
  align-items: start;
  margin-block-start: 38px;
}

.content-card,
.side-card,
.data-card,
.policy-article {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.content-card,
.policy-article {
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius-lg);
}

.section-heading {
  margin-block-end: 10px;
  font-size: clamp(1.5rem, 3vw, 2.08rem);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.04em;
}

.section-intro {
  max-width: 680px;
  margin-block-end: 36px;
  color: var(--muted);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: deletion-step;
}

.step {
  position: relative;
  min-height: 130px;
  padding-inline-start: 82px;
  counter-increment: deletion-step;
}

.step:not(:last-child) {
  padding-block-end: 32px;
}

.step:not(:last-child)::after {
  position: absolute;
  top: 54px;
  bottom: 3px;
  inset-inline-start: 25px;
  width: 2px;
  background: var(--line);
  content: "";
}

.step::before {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid #f0c4a6;
  border-radius: 15px;
  background: var(--orange-50);
  color: var(--orange-700);
  content: counter(deletion-step, decimal-leading-zero);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
}

.step:last-child::before {
  border-color: var(--orange-500);
  background: var(--orange-500);
  color: #ffffff;
}

.step h3 {
  margin-block-end: 5px;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.6;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.inline-link,
.policy-link {
  color: var(--orange-700);
  font-weight: 900;
  text-decoration-color: #eda878;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.warning-inline {
  display: block;
  margin-block-start: 8px;
  color: var(--danger);
  font-weight: 800;
}

.side-column {
  position: sticky;
  top: 24px;
}

.side-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.side-head {
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--orange-50);
}

.side-label {
  margin-block-end: 5px;
  color: var(--orange-700);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.side-head h2 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.55;
}

.check-list,
.toc-list {
  margin: 0;
  padding: 10px 24px;
  list-style: none;
}

.check-row,
.toc-list li {
  padding-block: 14px;
  border-bottom: 1px dashed var(--border);
}

.check-row:last-child,
.toc-list li:last-child {
  border-bottom: 0;
}

.check-row dt {
  margin-block-end: 3px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.check-row dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.side-help {
  margin: 0;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.81rem;
}

.toc-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.toc-list a::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-500);
  content: "";
}

.toc-list a:hover {
  color: var(--orange-700);
}

.primary-action {
  display: inline-flex;
  width: 100%;
  min-height: 57px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-block-start: 16px;
  padding: 14px 20px;
  border: 2px solid var(--orange-500);
  border-radius: 15px;
  background: var(--orange-500);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(252, 111, 32, 0.25);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: 160ms ease;
}

.primary-action:hover {
  border-color: var(--orange-600);
  background: var(--orange-600);
  box-shadow: 0 17px 34px rgba(219, 94, 11, 0.29);
  transform: translateY(-2px);
}

.primary-action:active {
  transform: translateY(0);
}

.primary-action svg {
  width: 21px;
  height: 21px;
}

.action-caption {
  margin: 10px 8px 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
  text-align: center;
}

.data-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.42fr);
  gap: 48px;
  margin-block-start: 32px;
  padding: clamp(28px, 5vw, 50px);
  border-radius: var(--radius-lg);
}

.data-card .section-heading {
  margin-block-end: 14px;
}

.data-card .section-intro {
  margin: 0;
}

.data-points {
  display: grid;
  gap: 19px;
}

.data-point {
  position: relative;
  padding-inline-start: 34px;
}

.data-point::before {
  position: absolute;
  top: 10px;
  inset-inline-start: 0;
  width: 12px;
  height: 12px;
  border: 3px solid var(--orange-500);
  border-radius: 50%;
  content: "";
}

.data-point h3 {
  margin-block-end: 4px;
  font-size: 1rem;
  font-weight: 900;
}

.data-point p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.policy-article section {
  scroll-margin-top: 26px;
}

.policy-article section + section {
  margin-block-start: 42px;
  padding-block-start: 38px;
  border-top: 1px solid var(--line);
}

.policy-number {
  display: inline-flex;
  min-width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-inline-end: 8px;
  border-radius: 10px;
  background: var(--orange-50);
  color: var(--orange-700);
  font-size: 0.84rem;
  font-weight: 900;
  vertical-align: 4px;
}

.policy-article h2 {
  margin-block-end: 13px;
  font-size: clamp(1.28rem, 2.4vw, 1.65rem);
  line-height: 1.5;
}

.policy-article h3 {
  margin-block: 22px 6px;
  font-size: 1rem;
}

.policy-article p,
.policy-article li {
  color: var(--muted);
  font-size: 0.94rem;
}

.policy-article ul {
  margin: 12px 0 0;
  padding-inline-start: 24px;
}

.policy-article li + li {
  margin-block-start: 8px;
}

.notice {
  margin-block-start: 22px;
  padding: 18px 20px;
  border-inline-start: 4px solid var(--orange-500);
  border-radius: 12px;
  background: var(--orange-50);
  color: #64402d;
  font-size: 0.9rem;
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-block-start: 20px;
  padding: 20px;
  border: 1px solid #f0c4a6;
  border-radius: var(--radius-md);
  background: var(--orange-50);
}

.contact-box p {
  margin: 0;
}

.contact-box a {
  flex: 0 0 auto;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 28px 38px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.81rem;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-link {
  color: var(--navy-900);
  font-weight: 900;
  text-decoration-color: #c9b2a3;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

@media (max-width: 850px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-note {
    max-width: 580px;
  }

  .content-grid,
  .data-card {
    grid-template-columns: 1fr;
  }

  .side-column {
    position: static;
  }

  .data-card {
    gap: 28px;
  }

  .summary-card {
    grid-template-columns: 1fr;
  }

  .summary-item + .summary-item {
    padding-block-start: 16px;
    padding-inline-start: 0;
    border-block-start: 1px solid var(--border);
    border-inline-start: 0;
  }
}

@media (max-width: 610px) {
  .site-header,
  .hero-inner,
  .page-shell,
  .site-footer {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-header {
    min-height: 78px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .brand-name {
    font-size: 1.13rem;
  }

  .header-links .header-link:first-child {
    display: none;
  }

  .privacy-label,
  .header-link {
    padding-inline: 10px;
    font-size: 0.78rem;
  }

  .hero-inner {
    padding-block-start: 48px;
  }

  .status-card {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
    padding: 20px;
    border-radius: 19px;
  }

  .status-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .status-tag {
    grid-column: 1 / -1;
    padding-block-start: 12px;
    padding-inline-start: 0;
    border-block-start: 1px solid var(--border);
    border-inline-start: 0;
    white-space: normal;
  }

  .summary-card {
    padding: 22px;
    border-radius: 19px;
  }

  .content-grid {
    gap: 22px;
    margin-block-start: 24px;
  }

  .content-card,
  .policy-article,
  .side-card,
  .data-card {
    border-radius: 19px;
  }

  .step {
    min-height: 126px;
    padding-inline-start: 66px;
  }

  .step::before {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .step:not(:last-child)::after {
    top: 48px;
    inset-inline-start: 21px;
  }

  .contact-box,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-box a {
    width: 100%;
  }

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

@media print {
  @page {
    margin: 16mm;
  }

  :root {
    --canvas: #ffffff;
    --shadow: none;
    --shadow-soft: none;
  }

  body {
    background: #ffffff;
    color: #000000;
    font-size: 11pt;
  }

  .hero {
    padding-block-end: 24px;
    background: #ffffff;
    color: #000000;
  }

  .hero::before,
  .hero::after,
  .header-links,
  .primary-action,
  .action-caption,
  .side-column {
    display: none;
  }

  .site-header {
    min-height: 64px;
    border-bottom-color: #cccccc;
  }

  .brand-logo {
    filter: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block-start: 28px;
  }

  .eyebrow,
  .hero-copy,
  .hero-note p,
  .hero-note time {
    color: #222222;
  }

  h1 {
    font-size: 30pt;
  }

  .hero-note {
    border: 1px solid #aaaaaa;
    border-top: 3px solid #333333;
    background: #ffffff;
  }

  .page-shell {
    width: 100%;
    margin-block-start: 20px;
    padding: 0;
  }

  .status-card,
  .summary-card,
  .content-card,
  .policy-article,
  .data-card {
    break-inside: avoid;
    border-color: #bcbcbc;
    box-shadow: none;
  }

  .content-grid,
  .data-card {
    grid-template-columns: 1fr;
  }

  .site-footer {
    width: 100%;
    padding-block-end: 0;
  }
}
