:root {
  --bg: #121014;
  --bg-elevated: #191616;
  --panel: #1e1a19;
  --panel-alt: #251f1e;
  --border: #3d3533;
  --coral: #f07b72;
  --coral-dim: #c56b64;
  --coral-fog: rgba(240, 123, 114, 0.16);
  --coral-dark: #ffb3ac;
  --coral-soft: #3d2624;
  --coral-mist: #2a1c1b;
  --ink: #f4eeea;
  --ink-soft: #d5cbc5;
  --fog: #9a928c;
  --muted: #a39b96;
  --dim: #6e6864;
  --amber: #e7a33e;
  --green: #4fbe8a;
  --green-soft: #1a2e24;
  --blue: #7b96e8;
  --blue-soft: #1c2740;
  --lavender: #b08be8;
  --lavender-soft: #2a2238;
  --white: #ffffff;
  --dark: #2a2322;
  --shadow: rgba(0, 0, 0, 0.35);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --display: Georgia, "Times New Roman", serif;
  --mono: Menlo, ui-monospace, SFMono-Regular, monospace;
  --body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
}

body {
  min-height: 100vh;
}

a {
  color: var(--coral-dark);
  text-decoration: none;
}

a:hover {
  color: var(--coral);
}

img {
  max-width: 100%;
}

.wrap {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background: rgba(18, 16, 20, 0.78);
  border-bottom: 1px solid rgba(61, 53, 51, 0.85);
}

.site-header .wrap,
.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.3px;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--panel);
  box-shadow: 0 8px 22px var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  color: var(--muted);
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.kicker {
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.1px;
  margin: 0 0 10px;
}

h1,
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.8px;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(40px, 6vw, 68px);
}

h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.6px;
  margin: 0 0 10px;
}

h3 {
  margin: 0 0 6px;
  font-size: 17px;
  letter-spacing: -0.25px;
}

.lede,
.sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 46ch;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--coral);
  background: var(--coral);
  color: var(--white);
  font-weight: 600;
  letter-spacing: -0.15px;
  box-shadow: 0 8px 22px var(--shadow);
}

.btn:hover {
  color: var(--white);
  opacity: 0.92;
}

.btn.ghost {
  background: var(--panel);
  border-color: var(--border);
  color: var(--ink);
  box-shadow: none;
}

.hero-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.orbit {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid var(--coral-soft);
  background: var(--coral-mist);
  top: -48px;
  right: -28px;
  display: grid;
  place-items: center;
}

.orbit-inner {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--panel);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px var(--shadow);
}

.orbit-inner img {
  width: 68px;
  height: 68px;
}

.dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--coral);
  border: 2px solid var(--panel);
}

.dot-one { top: 48px; left: 40px; }
.dot-two { right: 32px; top: 104px; background: var(--lavender); }
.dot-three { bottom: 28px; left: 88px; background: var(--green); }

.hero-kicker {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-card h2 {
  font-size: 28px;
}

.hero-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  max-width: 28ch;
  margin: 8px 0 0;
}

.section {
  padding: 28px 0 12px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.25px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.card,
.surface {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 22px var(--shadow);
}

.card {
  min-height: 168px;
  padding: 18px;
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.icon.coral { background: var(--coral-soft); color: var(--coral); }
.icon.lavender { background: var(--lavender-soft); color: var(--lavender); }
.icon.blue { background: var(--blue-soft); color: var(--blue); }
.icon.green { background: var(--green-soft); color: var(--green); }

.card h3 {
  margin-top: 18px;
}

.card p,
.note p,
.perk p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 5px 0 0;
}

.note,
.perk-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  margin-top: 16px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.panel-copy {
  padding: 28px;
}

.panel-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.list {
  display: grid;
  gap: 14px;
}

.perk {
  display: flex;
  gap: 12px;
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  flex: none;
  font-size: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--coral-soft);
  color: var(--coral-dark);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 600;
}

.legal-hero {
  padding: 48px 0 12px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  padding-bottom: 80px;
}

.toc {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 10px;
  font-size: 13px;
}

.toc a {
  color: var(--dim);
}

.toc a:hover {
  color: var(--coral);
}

.legal-body {
  max-width: 72ch;
}

.legal-body h2 {
  font-size: 28px;
  margin-top: 36px;
}

.legal-body p,
.legal-body li {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 15px;
}

.legal-body ul {
  padding-left: 1.2em;
}

.legal-body li + li {
  margin-top: 8px;
}

.updated {
  color: var(--dim);
  font-size: 13px;
}

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 56px;
  padding: 22px 0 36px;
  color: var(--dim);
  font-size: 12px;
}

.site-footer nav {
  display: flex;
  gap: 14px;
}

.site-footer a {
  color: var(--fog);
}

.fine {
  color: var(--dim);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .hero-grid,
  .grid,
  .two-col,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  .nav {
    gap: 12px;
    font-size: 13px;
  }

  .toc {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .site-header .wrap,
  .site-footer .wrap {
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-header .wrap {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(1080px, calc(100% - 28px));
  }

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

  h1 {
    font-size: 38px;
  }
}
