:root {
  color-scheme: dark;
  --background: #08070d;
  --surface: #12101a;
  --text: #f8f6fb;
  --muted: #beb8c8;
  --accent: #ff3c87;
  --accent-soft: #ffde68;
  --border: #2c2737;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--background);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0, rgba(255, 60, 135, 0.09), transparent 34rem),
    var(--background);
  font-size: 1rem;
  line-height: 1.7;
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: var(--accent-soft);
}

a:focus-visible {
  outline: 3px solid var(--accent-soft);
  outline-offset: 4px;
  border-radius: 2px;
}

.shell {
  width: min(100% - 2.5rem, 920px);
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(8, 7, 13, 0.92);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  border-radius: 0.65rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 1.25rem;
  font-size: 0.925rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
}

nav a[aria-current="page"] {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--accent);
}

main {
  flex: 1;
}

.home-shell {
  width: min(100% - 2.5rem, 1080px);
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(18rem, 1.2fr) minmax(15rem, 0.8fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 5.5rem);
  min-height: min(760px, calc(100vh - 73px));
  padding-block: clamp(4.5rem, 10vw, 8rem);
}

.hero-logo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(1.5rem, 4vw, 3rem);
}

.hero-mark {
  position: relative;
}

.hero-mark::before {
  position: absolute;
  z-index: -1;
  inset: 12%;
  border-radius: 50%;
  background: rgba(255, 60, 135, 0.16);
  content: "";
  filter: blur(48px);
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: -0.025em;
}

h1 {
  margin: 0;
  font-size: clamp(2.45rem, 7vw, 4.6rem);
}

.lede {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.store-status {
  display: inline-block;
  margin: 2rem 0 0;
  padding: 0.72rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  color: var(--muted);
  background: var(--surface);
  font-weight: 650;
}

.home-section {
  padding-block: clamp(4.5rem, 9vw, 7rem);
  border-top: 1px solid var(--border);
}

.section-heading {
  max-width: 44rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.home-section h2 {
  max-width: 46rem;
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.home-section h3 {
  margin: 0;
  font-size: 1.3rem;
}

.home-section p {
  color: var(--muted);
}

.steps,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li,
.feature-grid article {
  min-width: 0;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(18, 16, 26, 0.72);
}

.steps p,
.feature-grid p {
  margin: 0.65rem 0 0;
}

.step-number {
  display: block;
  margin-bottom: 2.25rem;
  color: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.feature-grid {
  grid-template-columns: repeat(2, 1fr);
}

.split-section,
.community-section,
.trust-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(20rem, 1.1fr);
  gap: clamp(2rem, 8vw, 6rem);
  align-items: start;
}

.split-section .section-heading {
  margin-bottom: 0;
}

.split-section > p,
.community-section > p {
  margin: 2rem 0 0;
  font-size: 1.1rem;
}

.launch-section {
  text-align: center;
}

.launch-section h2,
.launch-section p {
  margin-inline: auto;
}

.launch-section p {
  margin-block: 1rem 0;
}

.launch-status {
  display: inline-block;
  margin-top: 1.75rem;
  padding: 0.72rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent-soft);
  background: var(--surface);
  font-weight: 700;
}

.trust-links {
  display: grid;
  border-top: 1px solid var(--border);
}

.trust-links a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
}

.legal {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.document-header {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.document-product {
  margin: 1rem 0 0;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.document-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.925rem;
}

.document-meta div {
  display: flex;
  gap: 0.35rem;
}

.document-meta dt::after {
  content: ":";
}

.document-meta dd {
  margin: 0;
}

.legal h1 {
  font-size: clamp(2.3rem, 6vw, 4rem);
}

.legal article > section {
  margin-top: 3rem;
}

.legal h2 {
  margin: 2.6rem 0 0.85rem;
  font-size: clamp(1.4rem, 3vw, 1.75rem);
}

.legal h3 {
  margin: 2rem 0 0.7rem;
  font-size: 1.2rem;
}

.legal p,
.legal ul,
.legal ol {
  margin-block: 0 1.15rem;
}

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

.lettered-list {
  padding-left: 0;
  list-style: none;
}

.bullet-list {
  padding-left: 1.4rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer-inner {
  padding-block: 1.5rem;
  font-size: 0.875rem;
}

@media (max-width: 680px) {
  .shell,
  .home-shell {
    width: min(100% - 2rem, 920px);
  }

  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-logo {
    width: min(72vw, 19rem);
    margin-inline: auto;
  }

  .steps,
  .feature-grid,
  .split-section,
  .community-section,
  .trust-section {
    grid-template-columns: 1fr;
  }
}

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