:root {
  color-scheme: dark;
  --ink: #070a14;
  --ink-raised: #0d1222;
  --panel: rgba(20, 26, 47, 0.82);
  --line: rgba(187, 198, 231, 0.17);
  --text: #f8f5f0;
  --muted: #b5bed4;
  --orange: #ff9e43;
  --orange-hot: #ffc16f;
  --violet: #a879ff;
  --cyan: #5ad8ff;
  --focus: #fbd38d;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 82% -5%, rgba(132, 74, 255, 0.22), transparent 33rem),
    radial-gradient(circle at 0% 22%, rgba(255, 132, 52, 0.12), transparent 31rem),
    linear-gradient(180deg, #090c18, var(--ink) 72%);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #111522;
  background: var(--focus);
  border-radius: 10px;
  transform: translateY(-160%);
}

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

.site-header,
main,
footer {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand img {
  border-radius: 13px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.brand span { display: grid; line-height: 1.18; }
.brand strong { letter-spacing: -0.02em; }
.brand small { color: var(--muted); }

nav { display: flex; gap: 8px; }

nav a {
  padding: 8px 13px;
  color: var(--muted);
  border-radius: 999px;
  text-decoration: none;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.85fr);
  align-items: center;
  min-height: 570px;
  overflow: hidden;
  padding: clamp(34px, 7vw, 82px);
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 45%),
    rgba(14, 19, 35, 0.76);
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 8% -1px 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--violet), transparent);
  box-shadow: 0 0 30px var(--orange);
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-hot);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.lede {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  color: #17101c;
  background: linear-gradient(135deg, var(--orange-hot), #ff9350 54%, #d990ff);
  box-shadow: 0 12px 34px rgba(255, 143, 70, 0.18);
}

.button-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.horizon-mark {
  position: relative;
  width: min(30vw, 330px);
  aspect-ratio: 1;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 70, 225, 0.18), transparent 62%);
  box-shadow: inset 0 0 55px rgba(120, 74, 255, 0.08), 0 0 80px rgba(89, 61, 180, 0.12);
}

.orbit {
  position: absolute;
  inset: 16%;
  border: 3px solid transparent;
  border-top-color: var(--cyan);
  border-right-color: var(--orange);
  border-radius: 50%;
  filter: drop-shadow(0 0 8px currentColor);
  transform: rotate(38deg);
}

.orbit-two { inset: 27%; transform: rotate(218deg); opacity: 0.76; }

.spark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  background: white;
  box-shadow: 0 0 20px white, 0 0 60px var(--violet), 0 0 100px var(--orange);
  transform: translate(-50%, -50%) rotate(45deg);
}

.section { padding: clamp(72px, 11vw, 124px) 0 0; }
.section-heading { max-width: 640px; margin-bottom: 30px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card,
.policy-card,
.promise-grid article {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.card {
  min-height: 300px;
  padding: 26px;
  border-radius: var(--radius);
}

.card-number {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.card p,
.guide-row p,
.guide-row li,
.policy-card p,
.policy-card li,
.promise-grid span { color: var(--muted); }

.card a {
  color: var(--orange-hot);
  font-weight: 750;
  text-decoration: none;
}

.guide { padding-bottom: 90px; }

.guide-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 30px;
}

.guide-kicker {
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-row ol,
.policy-card ul { padding-left: 1.3rem; }
.guide-row li + li,
.policy-card li + li { margin-top: 8px; }

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin: 16px 0 80px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 169, 89, 0.35);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0, rgba(162, 101, 255, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 138, 54, 0.12), rgba(19, 24, 44, 0.92));
  box-shadow: var(--shadow);
}

.contact-panel > div { max-width: 680px; }
.contact-panel .button { min-width: 0; overflow-wrap: anywhere; text-align: center; }
.contact-panel p:not(.eyebrow) { margin-bottom: 0; color: var(--muted); }
.contact-panel.compact { margin-top: 28px; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 46px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer p { margin: 0; }
footer div { display: flex; gap: 20px; }
footer a { text-decoration: none; }

.policy-main { max-width: 940px; }

.policy-hero {
  padding: clamp(70px, 10vw, 128px) 0 54px;
}

.policy-hero h1 { max-width: 850px; }
.updated { margin: 28px 0 0; color: var(--muted); font-size: 0.9rem; }

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 42px;
}

.promise-grid article {
  display: grid;
  gap: 4px;
  padding: 21px;
  border-radius: 18px;
}

.promise-grid strong { color: var(--orange-hot); }
.promise-grid span { font-size: 0.92rem; }

.policy-card {
  margin-bottom: 16px;
  padding: clamp(26px, 5vw, 46px);
  border-radius: var(--radius);
}

.policy-card h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.policy-card h3 { margin-top: 26px; }
.policy-card > :last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .horizon-mark { position: absolute; right: -80px; bottom: -95px; width: 300px; opacity: 0.32; }
  .card-grid { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .card-number { margin-bottom: 28px; }
  .guide-row { grid-template-columns: 1fr; gap: 10px; }
  .contact-panel { align-items: flex-start; flex-direction: column; }
  .promise-grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .site-header,
  main,
  footer { width: min(100% - 24px, 1160px); }
  .site-header { align-items: flex-start; }
  .brand img { width: 44px; height: 44px; }
  nav a { padding: 7px 9px; }
  .hero { padding: 28px 22px 120px; border-radius: 26px; }
  h1 { font-size: clamp(2.7rem, 15vw, 4.2rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
