:root {
  --bg-deep: #050913;
  --bg-mid: #0d1630;
  --bg-soft: #182545;
  --text: #f7f1e6;
  --muted: #c4cede;
  --muted-strong: #dde5f0;
  --line: rgba(255, 245, 229, 0.16);
  --line-strong: rgba(255, 245, 229, 0.28);
  --panel: rgba(11, 18, 34, 0.8);
  --panel-strong: rgba(16, 25, 46, 0.92);
  --panel-soft: rgba(255, 247, 235, 0.07);
  --paper: #f2e5c8;
  --accent: #dab98e;
  --accent-strong: #f6d8a8;
  --rose: #cf9f8c;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.24);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-body: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 18%, rgba(246, 216, 168, 0.16), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(207, 159, 140, 0.18), transparent 20%),
    radial-gradient(circle at 50% 88%, rgba(57, 82, 140, 0.24), transparent 26%),
    linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 62%, #03060d 100%);
  color: var(--text);
  font: 16px/1.7 var(--font-body);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.52;
  animation: drift 18s ease-in-out infinite;
}

body::before {
  top: 7rem;
  right: 8vw;
  width: 18rem;
  height: 18rem;
  background: rgba(244, 214, 171, 0.14);
}

body::after {
  bottom: 8rem;
  left: 4vw;
  width: 20rem;
  height: 20rem;
  background: rgba(112, 138, 202, 0.12);
  animation-delay: -8s;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--paper);
  color: #17233d;
  outline: none;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 5vw;
  backdrop-filter: blur(18px) saturate(1.25);
  background: linear-gradient(180deg, rgba(7, 11, 22, 0.84), rgba(7, 11, 22, 0.28));
  border-bottom: 1px solid rgba(255, 245, 229, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff8ea 0%, #f7dcb2 28%, #c08b5b 63%, rgba(10, 15, 28, 0) 66%);
  box-shadow: 0 0 0 1px rgba(255, 245, 229, 0.12), 0 0 28px rgba(244, 214, 171, 0.22);
}

.brand-mark::after {
  content: "";
  position: absolute;
  top: 0.36rem;
  left: 1.1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(8, 12, 23, 0.92);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-copy span {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 247, 235, 0.06);
  color: var(--text);
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  background: rgba(255, 247, 235, 0.08);
  color: var(--text);
  outline: none;
  transform: translateY(-1px);
}

.header-cta {
  display: inline-flex;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  min-height: min(92vh, 58rem);
  padding: 5.75rem 5vw 4.5rem;
}

.hero-copy {
  max-width: 40rem;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--accent-strong);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: rgba(246, 216, 168, 0.72);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3.35rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
  margin: 0;
}

.lede {
  margin-top: 1.5rem;
  max-width: 37rem;
  color: var(--muted-strong);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.hero-metadata span,
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255, 245, 229, 0.12);
  border-radius: 999px;
  background: rgba(255, 247, 235, 0.06);
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3.2rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease, color 220ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, #f2d7a5 0%, #c7956d 100%);
  color: #1e1820;
  box-shadow: 0 18px 38px rgba(183, 122, 82, 0.28);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 247, 235, 0.06);
  color: var(--text);
}

.caption {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-stage {
  position: relative;
  min-height: 34rem;
}

.hero-moon {
  position: absolute;
  top: 1rem;
  right: 2rem;
  width: min(22rem, 72%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 34%, rgba(255, 251, 243, 0.98), rgba(244, 220, 177, 0.98) 36%, rgba(206, 154, 109, 0.7) 60%, rgba(8, 13, 24, 0.04) 72%),
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.7), transparent 34%);
  box-shadow: 0 0 0 1px rgba(255, 248, 236, 0.1), 0 0 72px rgba(244, 214, 171, 0.22);
  animation: drift 18s ease-in-out infinite;
}

.hero-moon::after {
  content: "";
  position: absolute;
  inset: 2.5rem 3rem 6rem 1.6rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 248, 236, 0.22);
}

.hero-quote,
.hero-note {
  position: absolute;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(13, 19, 35, 0.72), rgba(10, 15, 28, 0.9));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.hero-quote {
  left: 0;
  bottom: 2rem;
  width: min(31rem, 82%);
  padding: 1.7rem 1.6rem 1.5rem;
  border-radius: 2rem 2rem 2rem 0.9rem;
  transform: rotate(-3deg);
}

.hero-quote p {
  color: var(--muted-strong);
  font-size: 1.04rem;
}

.hero-quote strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.88rem;
  color: var(--accent-strong);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-note {
  width: min(13rem, 48%);
  padding: 1rem 1.05rem;
  border-radius: 1.15rem;
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.hero-note strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text);
  font-size: 0.92rem;
}

.note-one {
  top: 10rem;
  left: 1.25rem;
  animation: drift 15s ease-in-out infinite;
}

.note-two {
  right: 0;
  bottom: 12rem;
  animation: drift 20s ease-in-out infinite;
  animation-delay: -6s;
}

.section,
.page-hero,
.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-left: 5vw;
  padding-right: 5vw;
}

.section {
  padding-top: 4.75rem;
  padding-bottom: 4.75rem;
}

.section-intro {
  max-width: 46rem;
  margin-bottom: 2.2rem;
}

.section-intro p:last-child,
.copy-stack p,
.legal-prose p,
.legal-prose li,
.support-copy p {
  color: var(--muted-strong);
}

.hush-band {
  padding-top: 1.5rem;
}

.hush-band-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  padding: 1.3rem 0 0;
  border-top: 1px solid var(--line);
}

.hush-band-inner div {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 245, 229, 0.08);
}

.hush-band-inner strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--paper);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.2rem;
}

.step {
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--line);
}

.step-number {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.step p,
.feature-list li,
.promise-item p,
.surface p,
.surface li,
.meta-list li,
.support-index a,
.faq-grid p {
  color: var(--muted-strong);
}

.feature-narrative,
.section-split,
.two-up {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.9fr);
  gap: clamp(1.8rem, 4vw, 3.6rem);
  align-items: start;
}

.feature-list,
.meta-list,
.legal-list {
  list-style: none;
  padding: 0;
  margin: 1.35rem 0 0;
}

.feature-list li,
.meta-list li,
.legal-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-top: 0.85rem;
}

.feature-list li::before,
.meta-list li::before,
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-strong), var(--rose));
}

.surface {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(14, 22, 39, 0.74), rgba(8, 12, 24, 0.92));
  box-shadow: var(--shadow-soft);
}

.surface + .surface {
  margin-top: 1rem;
}

.surface h3 {
  margin-bottom: 0.55rem;
}

.surface-soft {
  background: linear-gradient(180deg, rgba(255, 247, 235, 0.07), rgba(255, 247, 235, 0.04));
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.promise-item {
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.promise-item strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  font-size: 1.28rem;
}

.faq-grid {
  display: grid;
  gap: 0.9rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 247, 235, 0.05);
  overflow: hidden;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.2rem;
  font-weight: 600;
  color: var(--text);
}

summary::-webkit-details-marker {
  display: none;
}

details[open] summary {
  border-bottom: 1px solid rgba(255, 245, 229, 0.08);
}

details p,
details ul {
  margin: 0;
  padding: 0 1.2rem 1.15rem;
}

details ul {
  padding-left: 2.4rem;
}

.final-cta {
  padding-bottom: 6rem;
}

.cta-panel {
  padding: clamp(1.6rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 245, 229, 0.16);
  background:
    radial-gradient(circle at top right, rgba(242, 215, 165, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(15, 24, 45, 0.82), rgba(7, 11, 22, 0.94));
  box-shadow: var(--shadow);
}

.cta-panel p {
  margin-top: 1rem;
  color: var(--muted-strong);
}

.page-hero {
  padding-top: 5.3rem;
  padding-bottom: 1.5rem;
}

.page-hero p {
  max-width: 46rem;
}

.doc-shell {
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(242, 215, 165, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(16, 25, 46, 0.86), rgba(8, 13, 24, 0.96));
  box-shadow: var(--shadow);
}

.doc-meta {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.support-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0 2.4rem;
}

.support-index a {
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 247, 235, 0.05);
  text-decoration: none;
}

.support-index a:hover,
.support-index a:focus-visible {
  border-color: var(--line-strong);
  outline: none;
}

.contact-grid,
.policy-matrix,
.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-grid {
  margin: 1.8rem 0 1.6rem;
}

.contact-grid .surface h3,
.policy-matrix h3,
.doc-grid h3 {
  margin-bottom: 0.4rem;
}

.legal-prose h2,
.legal-prose h3 {
  margin-top: 2.4rem;
}

.legal-prose h2:first-of-type {
  margin-top: 0;
}

.legal-prose ul {
  margin: 0.9rem 0 0;
  padding-left: 1.2rem;
}

.legal-prose li + li {
  margin-top: 0.45rem;
}

.quiet-callout {
  margin-top: 2rem;
  padding: 1.2rem 1.25rem;
  border-left: 2px solid rgba(246, 216, 168, 0.7);
  background: rgba(255, 247, 235, 0.05);
  border-radius: 0 1rem 1rem 0;
}

.soft-rule {
  height: 1px;
  margin: 2rem 0;
  background: linear-gradient(90deg, rgba(255, 245, 229, 0), rgba(255, 245, 229, 0.24), rgba(255, 245, 229, 0));
}

.site-footer {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 245, 229, 0.12);
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.sticky-cta {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 30;
  transform: translateY(130%);
  transition: transform 260ms ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  color: #1e1820;
  background: linear-gradient(135deg, #f2d7a5 0%, #c7956d 100%);
  box-shadow: 0 18px 36px rgba(183, 122, 82, 0.36);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 5vw;
    right: 5vw;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    background: rgba(7, 11, 22, 0.96);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .feature-narrative,
  .section-split,
  .two-up,
  .contact-grid,
  .policy-matrix,
  .doc-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 27rem;
  }

  .hero-moon {
    right: 0.5rem;
    width: min(18rem, 78%);
  }

  .hero-quote {
    width: 100%;
    transform: none;
  }

  .hero-note {
    width: min(13rem, 48%);
  }

  .hush-band-inner,
  .steps,
  .promise-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .section,
  .page-hero,
  .site-footer {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .hero {
    padding-top: 4.6rem;
    padding-bottom: 3.2rem;
  }

  .hero-note {
    display: none;
  }

  .hero-stage {
    min-height: 22rem;
  }

  .sticky-cta {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .sticky-cta a {
    width: 100%;
    justify-content: center;
  }
}

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

  body::before,
  body::after,
  .hero-moon,
  .note-one,
  .note-two,
  [data-reveal],
  .sticky-cta {
    animation: none;
    transition: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
