:root {
  color-scheme: dark;
  --bg: #04110e;
  --bg-2: #0b2018;
  --panel: rgba(9, 28, 22, 0.78);
  --panel-strong: rgba(4, 14, 11, 0.9);
  --gold: #ffc53d;
  --gold-2: #d99b23;
  --champagne: #ffedbf;
  --silver: #c8d1d1;
  --muted: #90a09e;
  --line: rgba(255, 197, 61, 0.24);
  --shadow: rgba(0, 0, 0, 0.32);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 72% 8%, rgba(255, 197, 61, 0.20), transparent 28rem),
    radial-gradient(circle at 18% 88%, rgba(0, 145, 103, 0.22), transparent 34rem),
    linear-gradient(145deg, #161a08 0%, var(--bg) 52%, #002c23 100%);
  color: var(--champagne);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(135deg, transparent 0 46%, rgba(255, 197, 61, 0.08) 47% 48%, transparent 49% 100%),
    linear-gradient(45deg, transparent 0 48%, rgba(166, 211, 183, 0.05) 49% 50%, transparent 51% 100%);
  background-size: 390px 390px, 520px 520px;
  opacity: 0.72;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 13, 10, 0.76);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

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

.brand img {
  border-radius: 8px;
  box-shadow: 0 10px 24px var(--shadow);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 26px);
  color: var(--silver);
  font-size: 0.95rem;
  font-weight: 800;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--gold);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.78fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(50px, 8vw, 112px) clamp(18px, 6vw, 96px);
  overflow: hidden;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--champagne);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--gold);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.26);
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(4rem, 9vw, 9.5rem);
  font-weight: 950;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 5.3rem);
  font-weight: 950;
}

h3 {
  margin: 30px 0 10px;
  color: var(--champagne);
  font-size: 1.25rem;
}

p,
li {
  color: var(--silver);
  font-size: 1.08rem;
  line-height: 1.7;
}

.lede {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--champagne);
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--champagne);
  font-weight: 950;
  text-decoration: none;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), #ffe9a4 70%, var(--gold-2));
  color: #070907;
  border-color: rgba(255, 237, 191, 0.8);
  box-shadow: 0 18px 44px rgba(255, 197, 61, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
}

.text-link {
  color: var(--gold);
  font-weight: 900;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

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

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 237, 191, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--champagne);
  font-size: 0.9rem;
  font-weight: 900;
}

.hero-mark {
  width: min(560px, 86vw);
  margin: 0 auto;
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.36));
}

.summary,
.feature-grid,
.seo-content,
.faq-section,
.support-strip,
.document {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.summary {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 36px;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-points {
  display: grid;
  gap: 16px;
}

.quick-points p,
.policy-card {
  border: 1px solid rgba(255, 197, 61, 0.16);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.quick-points p {
  margin: 0;
  padding: 20px;
}

.quick-points strong {
  color: var(--champagne);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 56px 0 12px;
}

.feature-card,
.faq-item {
  border: 1px solid rgba(255, 197, 61, 0.16);
  border-radius: 8px;
  background: rgba(9, 28, 22, 0.64);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.feature-card {
  padding: clamp(20px, 3vw, 28px);
}

.feature-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.04;
}

.feature-card p {
  margin-bottom: 0;
}

.seo-content,
.faq-section {
  padding: 52px 0;
}

.seo-content {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.seo-content p {
  max-width: 850px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  padding: 22px;
}

.faq-item h3 {
  margin-top: 0;
}

.faq-item p {
  margin-bottom: 0;
}

.support-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 72px;
  padding: 30px;
  border: 1px solid rgba(255, 197, 61, 0.2);
  border-radius: 8px;
  background: var(--panel-strong);
}

.support-strip p:last-child {
  margin-bottom: 0;
}

.document {
  padding: clamp(42px, 8vw, 82px) 0 82px;
}

.document-hero {
  margin-bottom: 28px;
}

.document-hero h1 {
  font-size: clamp(3.2rem, 8vw, 7.4rem);
}

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

.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  gap: clamp(24px, 5vw, 52px);
  align-items: center;
}

.guide-hero img {
  width: min(340px, 72vw);
  margin: 0 auto;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.34));
}

.policy-card {
  margin: 18px 0;
  padding: clamp(22px, 4vw, 34px);
}

.policy-card h2 {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
}

.policy-card a {
  color: var(--gold);
  font-weight: 850;
}

ul {
  margin-bottom: 0;
  padding-left: 1.25rem;
}

footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(1, 8, 6, 0.66);
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

footer a {
  color: var(--champagne);
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero,
  .summary,
  .feature-grid,
  .faq-list,
  .guide-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-mark {
    width: min(360px, 76vw);
  }
}

@media (max-width: 640px) {
  .site-header,
  footer,
  .support-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5.5rem);
  }

}
