:root {
  color-scheme: dark;
  --bg: #090a08;
  --surface: rgba(24, 25, 21, 0.88);
  --surface-strong: #1a1b17;
  --surface-soft: rgba(38, 39, 32, 0.72);
  --line: rgba(182, 154, 83, 0.25);
  --line-soft: rgba(255, 255, 255, 0.09);
  --ink: #f6f4ed;
  --muted: #aaa99f;
  --gold: #dfa13a;
  --gold-soft: #f0c36e;
  --olive: #8e9b55;
  --green: #6f9b79;
  --red: #ce7568;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 15px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 0%, rgba(142, 155, 85, 0.15), transparent 34rem),
    radial-gradient(circle at 92% 12%, rgba(223, 161, 58, 0.12), transparent 31rem),
    linear-gradient(180deg, #0d0e0b 0%, var(--bg) 42%, #070806 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(9, 10, 8, 0.8);
  backdrop-filter: blur(20px);
}

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

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 25px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(223, 161, 58, 0.52);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(223, 161, 58, 0.2), rgba(142, 155, 85, 0.13));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-mark svg {
  width: 21px;
  height: 21px;
  color: var(--gold-soft);
}

.brand-accent {
  color: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.site-nav .nav-contact {
  border: 1px solid rgba(223, 161, 58, 0.45);
  color: var(--gold-soft);
}

.page-shell {
  padding: 72px 0 96px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 7vw, 76px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(120deg, rgba(26, 27, 23, 0.98), rgba(18, 19, 16, 0.86)),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -130px;
  top: -180px;
  border: 70px solid rgba(223, 161, 58, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 800px;
  margin: 14px 0 18px;
  font-size: clamp(42px, 7.7vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero-lead {
  max-width: 760px;
  margin: 0;
  color: #cfcec5;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
}

.hero-meta {
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #d7d5cc;
  font-size: 13px;
  font-weight: 700;
}

.trust-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--olive);
  box-shadow: 0 0 0 5px rgba(142, 155, 85, 0.1);
}

.content-grid {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  margin-top: 34px;
  align-items: start;
}

.contents {
  position: sticky;
  top: 105px;
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: rgba(20, 21, 18, 0.7);
}

.contents-label {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contents a {
  display: block;
  padding: 8px 0;
  color: #c4c3ba;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.contents a:hover {
  color: var(--gold-soft);
}

.article {
  min-width: 0;
}

.section-card {
  scroll-margin-top: 104px;
  margin-bottom: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.2);
}

.section-card.accent {
  border-color: rgba(223, 161, 58, 0.34);
  background:
    linear-gradient(135deg, rgba(223, 161, 58, 0.085), transparent 58%),
    var(--surface);
}

.section-card h2 {
  margin: 5px 0 16px;
  font-size: clamp(25px, 4vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.section-card h3 {
  margin: 28px 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.section-card p,
.section-card li {
  color: #c5c4bb;
}

.section-card p:first-of-type {
  margin-top: 0;
}

.section-card p:last-child {
  margin-bottom: 0;
}

.section-card ul,
.section-card ol {
  margin: 12px 0 0;
  padding-left: 22px;
}

.section-card li + li {
  margin-top: 8px;
}

.section-card a:not(.button-link) {
  color: var(--gold-soft);
  text-underline-offset: 4px;
}

.data-list,
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.data-item,
.support-item {
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.data-item strong,
.support-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 15px;
}

.data-item span,
.support-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.process-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.process-row {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr 1.1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.process-row > div {
  min-width: 0;
  color: #c5c4bb;
  font-size: 13px;
}

.process-row strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 14px;
}

.callout {
  margin-top: 20px;
  padding: 18px 20px;
  border-left: 3px solid var(--olive);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(142, 155, 85, 0.09);
  color: #d2d4c4;
}

.callout.gold {
  border-left-color: var(--gold);
  background: rgba(223, 161, 58, 0.08);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button-link {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid rgba(223, 161, 58, 0.5);
  border-radius: 15px;
  background: var(--gold);
  color: #16130c;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 11px 30px rgba(223, 161, 58, 0.15);
}

.button-link.secondary {
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
  box-shadow: none;
}

.email-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(223, 161, 58, 0.38);
  border-radius: var(--radius-lg);
  background: rgba(223, 161, 58, 0.07);
}

.email-hero small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.email-hero a {
  color: var(--ink);
  font-size: clamp(18px, 3vw, 27px);
  font-weight: 850;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.status-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(111, 155, 121, 0.12);
  color: #b8d8be;
  font-size: 12px;
  font-weight: 800;
}

.status-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.step-list {
  list-style: none;
  counter-reset: support-step;
  padding: 0 !important;
}

.step-list li {
  counter-increment: support-step;
  position: relative;
  min-height: 44px;
  padding: 9px 0 9px 52px;
}

.step-list li::before {
  content: counter(support-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 4px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(223, 161, 58, 0.28);
  border-radius: 12px;
  background: rgba(223, 161, 58, 0.08);
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 850;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: rgba(7, 8, 6, 0.82);
}

.site-footer-inner {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}

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

.footer-links a {
  color: #c8c7be;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

@media (max-width: 850px) {
  .site-nav a:not([aria-current="page"]):not(.nav-contact) {
    display: none;
  }

  .page-shell {
    padding-top: 34px;
  }

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

  .contents {
    position: static;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px;
    scrollbar-width: none;
  }

  .contents::-webkit-scrollbar {
    display: none;
  }

  .contents-label {
    display: none;
  }

  .contents a {
    flex: 0 0 auto;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 12px;
  }

  .process-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .page-shell,
  .site-footer-inner {
    width: min(100% - 24px, 1160px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    font-size: 21px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .site-nav .nav-contact {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .content-grid {
    margin-top: 18px;
    gap: 16px;
  }

  .section-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .data-list,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .email-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer-inner {
    min-height: 150px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
}

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