:root {
  --bg: #0f0d18;
  --bg-2: #141020;
  --surface: #181428;
  --surface-2: #221c3a;
  --text: #f1edfc;
  --muted: #9c92c2;
  --border: #342b52;
  --accent: #c4b5fd;
  --masculine: #60a5fa;
  --androgynous: #a78bfa;
  --feminine: #f472b6;
  --maxw: 1080px;
  --display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

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

h1, h2 { font-family: var(--display); }

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

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15, 13, 24, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 19px; color: var(--text); }
.brand img { width: 30px; height: 30px; border-radius: 7px; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--muted); font-size: 15px; }
.nav-links a:hover { color: var(--text); text-decoration: none; }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #191330;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}
.btn:hover { text-decoration: none; opacity: 0.92; }
.btn-ghost { background: transparent; border: 1px solid var(--border); color: var(--text); }

/* Hero */
.hero { text-align: center; padding: 90px 0 60px; }
.hero-icon { width: 96px; height: 96px; border-radius: 22px; margin: 0 auto 26px; box-shadow: 0 16px 40px rgba(0,0,0,0.45); }
.hero h1 { font-size: 56px; line-height: 1.02; letter-spacing: -1px; margin: 0 0 14px; font-weight: 700; }
.hero .tag { font-size: 22px; color: var(--text); margin: 0 auto 10px; max-width: 620px; }
.hero .sub { font-size: 17px; color: var(--muted); max-width: 600px; margin: 0 auto 30px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .byline { margin-top: 22px; color: var(--muted); font-size: 13px; }

/* Feature rows */
.features { padding: 30px 0 20px; }
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 54px 0;
  border-top: 1px solid var(--border);
}
.row.reverse .row-text { order: 2; }
.row.reverse .row-media { order: 1; }
.row-text h2 { font-size: 30px; letter-spacing: -0.4px; margin: 0 0 14px; line-height: 1.15; font-weight: 700; }
.row-text p { font-size: 17px; color: var(--muted); margin: 0; }
.eyebrow { color: var(--accent); font-weight: 700; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 12px; }

.row-media { display: flex; justify-content: center; }
.phone {
  width: 260px;
  max-width: 78vw;
  border-radius: 30px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  background: #000;
}

/* Highlight band (privacy / how-it-works style callouts) */
.highlights {
  padding: 68px 0 76px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.highlights-heading { text-align: center; max-width: 680px; margin: 0 auto 34px; }
.highlights-heading h2 { font-size: 32px; line-height: 1.15; letter-spacing: -0.4px; margin: 0 0 10px; font-weight: 700; }
.highlights-heading p { color: var(--muted); font-size: 17px; margin: 0; }
.highlight-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.highlight-grid li {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
}
.highlight-grid h3 { font-family: var(--display); font-size: 17px; margin: 0 0 8px; letter-spacing: -0.2px; }
.highlight-grid p { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.5; }

/* Pricing band */
.pricing {
  margin: 0;
  border-top: 1px solid var(--border);
  padding: 70px 0;
  text-align: center;
}
.pricing h2 { font-size: 32px; letter-spacing: -0.4px; margin: 0 0 8px; font-weight: 700; }
.pricing .sub { color: var(--muted); font-size: 17px; margin: 0 auto 30px; max-width: 560px; }
.pricing-list { list-style: none; padding: 0; margin: 0 auto 30px; max-width: 460px; text-align: left; display: grid; gap: 14px; }
.pricing-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.pricing-list .check { color: var(--accent); font-weight: 800; }
.price-note { color: var(--muted); font-size: 14px; margin-top: 8px; }

/* Generic page (terms / privacy / contact) */
.page { padding: 56px 0 80px; }
.page .container { max-width: 760px; }
.page h1 { font-size: 36px; letter-spacing: -0.6px; margin: 0 0 6px; font-weight: 700; }
.page .updated { color: var(--muted); font-size: 14px; margin-bottom: 30px; }
.page h2 { font-size: 21px; margin: 34px 0 10px; font-family: var(--display); font-weight: 700; }
.page p, .page li { color: #d8d3ec; font-size: 16px; }
.page ul { padding-left: 22px; }
.page a { text-decoration: underline; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 6px; margin-top: 24px; max-width: 480px; }
.contact-form label { color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; margin-top: 14px; }
.contact-form input,
.contact-form textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  padding: 11px 14px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--accent); }
.contact-form button { margin-top: 20px; align-self: flex-start; }
.contact-form button:disabled { opacity: 0.6; cursor: default; }
.form-note { color: var(--muted); font-size: 14px; margin-top: 26px; }
.form-note-error { color: var(--feminine); }

/* Honeypot field — off-screen rather than display:none, which some bots check
   for before deciding whether to fill a field. */
.hp-field { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; left: -9999px; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 40px 0; color: var(--muted); font-size: 14px; }
.footer-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; align-items: center; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }

@media (max-width: 760px) {
  .hero h1 { font-size: 40px; }
  .hero .tag { font-size: 19px; }
  .row { grid-template-columns: 1fr; gap: 30px; text-align: center; padding: 44px 0; }
  .row.reverse .row-text { order: 2; }
  .row.reverse .row-media { order: 1; }
  .highlight-grid { grid-template-columns: 1fr; }
  .pricing-list { text-align: left; }
  .nav-links { gap: 16px; }
}

@media (max-width: 520px) {
  .nav-inner { gap: 16px; }
  .brand { flex: 0 0 auto; }
  .nav-links {
    gap: 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { flex: 0 0 auto; font-size: 14px; }
}
