:root {
  --background: #08060f;
  --background-2: #100c1b;
  --ink: #ededed;
  --ink-on-accent: #1a0a14;
  --stone: #9c93a3;
  --hairline: rgba(237, 237, 237, 0.14);
  --hairline-soft: rgba(237, 237, 237, 0.08);
  --blush: #ff4d8d;
  --sky: #4f8eff;
  --dusk: #a66bff;
  --honey: #ffb84d;
  --sage: #4ade80;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --max-width: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Quiet paper grain — one texture, not decoration layered on decoration. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

h1, h2, h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

.kicker {
  display: block;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 18px;
}

a {
  color: inherit;
}

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- ambient glow (one authored moment, hero only) ---- */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.blob-1 {
  width: 52vw;
  height: 52vw;
  top: -18vw;
  left: -14vw;
  background: radial-gradient(circle, var(--dusk), transparent 70%);
  opacity: 0.16;
  animation: breathe 14s ease-in-out infinite;
}

.blob-2,
.blob-3 {
  display: none;
}

@keyframes breathe {
  0%, 100% { opacity: 0.12; }
  50% { opacity: 0.2; }
}

@media (prefers-reduced-motion: reduce) {
  .blob { animation: none; }
}

/* ---- nav ---- */
nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(11, 10, 13, 0.75);
  border-bottom: 1px solid var(--hairline-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}

.brand img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--stone);
  white-space: nowrap;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.15);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
}

.nav-links a {
  text-decoration: none;
  color: var(--stone);
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  background: var(--blush);
  color: var(--ink-on-accent) !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .status-pill { display: none; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blush);
  color: var(--ink-on-accent);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline);
}

.btn-secondary:hover {
  border-color: rgba(237, 237, 237, 0.32);
}

/* ---- hero ---- */
.hero {
  padding: 88px 0 76px;
}

.hero-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  margin-bottom: 32px;
}

h1 {
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  font-weight: 200;
  max-width: 16ch;
}

h1 em {
  font-style: normal;
  font-weight: 200;
  color: var(--blush);
}

.hero p.lead {
  font-size: clamp(17px, 2vw, 19px);
  color: var(--stone);
  max-width: 56ch;
  margin: 0 0 36px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--stone);
}

/* ---- sections ---- */
section {
  padding: 56px 0;
  border-top: 1px solid var(--hairline-soft);
}

.hero {
  border-top: none;
}

.section-head {
  max-width: 620px;
  margin: 0 0 40px;
}

h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  font-weight: 300;
}

.section-head p {
  color: var(--stone);
  font-size: 16.5px;
  margin: 0;
  max-width: 60ch;
}

/* ---- feature list (editorial rows, not a card grid) ---- */
.feature-lead {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline-soft);
  border: 1px solid var(--hairline-soft);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1px;
}

@media (max-width: 720px) {
  .feature-lead { grid-template-columns: 1fr; }
}

.feature-lead-item {
  background: var(--background);
  padding: 32px;
}

.feature-lead-item .icon {
  width: 26px;
  height: 26px;
  color: var(--blush);
  margin-bottom: 20px;
}

.feature-lead-item h3 {
  font-size: 21px;
  font-weight: 500;
  margin: 0 0 10px;
}

.feature-lead-item p {
  font-size: 15px;
  color: var(--stone);
  margin: 0;
  max-width: 42ch;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--hairline-soft);
}

@media (max-width: 720px) {
  .feature-list { grid-template-columns: 1fr; }
}

.feature-row {
  display: flex;
  gap: 16px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--hairline-soft);
}

.feature-list > .feature-row:nth-child(odd) {
  border-right: 1px solid var(--hairline-soft);
  padding-right: 24px;
}

.feature-list > .feature-row:nth-child(even) {
  padding-left: 24px;
}

@media (max-width: 720px) {
  .feature-list > .feature-row:nth-child(odd) {
    border-right: none;
    padding-right: 4px;
  }
  .feature-list > .feature-row:nth-child(even) {
    padding-left: 4px;
  }
}

.feature-row .icon {
  width: 20px;
  height: 20px;
  color: var(--stone);
  flex-shrink: 0;
  margin-top: 3px;
}

.feature-row h3 {
  font-size: 16px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0 0 4px;
}

.feature-row p {
  font-size: 14.5px;
  color: var(--stone);
  margin: 0;
}

/* ---- how it works: connected timeline, not numbered badges ---- */
.timeline {
  position: relative;
  max-width: 640px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--hairline);
}

.timeline-step {
  position: relative;
  padding-left: 32px;
  margin-bottom: 36px;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--background);
  border: 1.5px solid var(--blush);
}

.timeline-step h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 6px;
}

.timeline-step p {
  font-size: 15px;
  color: var(--stone);
  margin: 0;
  max-width: 56ch;
}

/* ---- privacy strip ---- */
.privacy-strip {
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.privacy-strip h3 {
  font-size: 19px;
  font-weight: 500;
  margin: 0 0 8px;
}

.privacy-strip p {
  color: var(--stone);
  margin: 0;
  max-width: 55ch;
  font-size: 15px;
}

/* ---- final cta ---- */
.final-cta {
  padding: 72px 0 88px;
}

.final-cta h2 {
  max-width: 16ch;
}

/* ---- footer ---- */
footer {
  border-top: 1px solid var(--hairline-soft);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
}

.footer-brand img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-links a {
  text-decoration: none;
  color: var(--stone);
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-copy {
  color: var(--stone);
  font-size: 12.5px;
  margin-top: 20px;
  text-align: center;
}

/* ---- legal / support pages ---- */
.legal {
  padding: 56px 0 88px;
}

.legal h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  margin-bottom: 8px;
  max-width: none;
}

.legal .updated {
  color: var(--stone);
  font-size: 14px;
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 21px;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 14px;
}

.legal h3 {
  font-size: 17px;
  font-weight: 500;
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal p, .legal li {
  color: var(--stone);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 70ch;
}

.legal ul {
  padding-left: 20px;
}

.legal strong {
  color: var(--ink);
}

.legal a {
  color: var(--blush);
  text-decoration: underline;
  text-decoration-color: rgba(255, 77, 141, 0.4);
}

.note-box {
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 18px 20px;
  margin: 28px 0;
  max-width: 70ch;
}

.note-box p {
  color: var(--ink);
  margin: 0;
  font-size: 14.5px;
  max-width: none;
}

/* ---- support page ---- */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline-soft);
  border: 1px solid var(--hairline-soft);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 40px;
}

@media (max-width: 700px) {
  .support-grid { grid-template-columns: 1fr; }
}

.faq-item {
  background: var(--background);
  padding: 26px;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.faq-item p {
  margin: 0;
  color: var(--stone);
  font-size: 15px;
  max-width: 42ch;
}
