/* ────────────────────────────────────────────────────────────
   NowHere Website — shared styles
   Palette: dark satin background, violet/cyan/coral accents
   ─────────────────────────────────────────────────────────── */

:root {
  --bg:          #07080C;
  --bg2:         #0E1016;
  --surface:     #13151E;
  --surface2:    #1A1D28;
  --border:      rgba(232,236,244,.16);
  --violet:      #9B8CFF;
  --violet2:     #6E5BFF;
  --cyan:        #6FE8E0;
  --coral:       #FF7A9A;
  --amber:       #FFC278;
  --neon:        #8CFFC8;
  --text:        #F4F6FA;
  --text2:       #9FA3B0;
  --text3:       rgba(168,176,190,.48);
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --max-w:       780px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navbar ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,8,12,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav__logo {
  font-weight: 700;
  font-size: 18px;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  margin-right: auto;
}
.nav__link {
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.nav__link:hover { color: var(--text); }

/* ── Hero ── */
.hero {
  padding: 100px 24px 80px;
  text-align: center;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(155,140,255,.12) 0%, transparent 70%);
}
.hero__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--violet);
  border: 1px solid rgba(155,140,255,.35);
  border-radius: 99px;
  padding: 4px 14px;
  margin-bottom: 28px;
}
.hero__title {
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  background: linear-gradient(160deg, #fff 30%, var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 18px;
  color: var(--text2);
  max-width: 500px;
  margin: 0 auto 40px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  cursor: pointer;
  border: none;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn--primary {
  background: linear-gradient(135deg, var(--violet2), var(--violet));
  color: #fff;
}
.btn--ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text2);
}
.btn--ghost:hover { color: var(--text); border-color: rgba(232,236,244,.35); }

/* ── Store badges ── */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  transition: background .2s;
}
.store-badge:hover { background: var(--surface2); }
.store-badge svg { width: 20px; height: 20px; }

/* ── Section ── */
.section {
  padding: 80px 24px;
}
.section--alt {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 12px;
  text-align: center;
}
.section__title {
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 14px;
  text-align: center;
}
.section__body {
  color: var(--text2);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  font-size: 16px;
}

/* ── Feature grid ── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color .2s;
}
.feature-card:hover { border-color: rgba(155,140,255,.3); }
.feature-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.feature-card__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature-card__text {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}

/* ── Plan table ── */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
}
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.plan-card--highlight {
  border-color: rgba(155,140,255,.45);
  background: linear-gradient(160deg, rgba(155,140,255,.08), var(--surface));
}
.plan-card__name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 8px;
}
.plan-card__price {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.plan-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-card__list li {
  font-size: 14px;
  color: var(--text2);
  padding-left: 22px;
  position: relative;
}
.plan-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--neon);
  font-weight: 700;
}

/* ── FAQ ── */
.faq {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
details.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
details.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--violet);
  flex-shrink: 0;
}
details.faq-item[open] summary::after { content: '−'; }
.faq-item__body {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

/* ── CTA band ── */
.cta {
  text-align: center;
  padding: 80px 24px;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(155,140,255,.1) 0%, transparent 70%);
}
.cta__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.cta__sub {
  color: var(--text2);
  font-size: 16px;
  margin-bottom: 36px;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 36px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text3);
}
.footer a { color: var(--text2); text-decoration: none; }
.footer a:hover { color: var(--text); }
.footer__links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

/* ── Doc page (Privacy, Terms, DPA) ── */
.doc-header {
  padding: 72px 24px 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.doc-header__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 12px;
}
.doc-header__title {
  font-size: clamp(30px, 6vw, 54px);
  font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: 12px;
}
.doc-header__date {
  color: var(--text2);
  font-size: 14px;
}
.doc-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.doc-body h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 48px 0 14px;
  letter-spacing: -.01em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}
.doc-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 28px 0 8px;
  color: var(--text);
}
.doc-body p {
  color: var(--text2);
  margin-bottom: 14px;
  font-size: 15px;
}
.doc-body ul, .doc-body ol {
  margin: 0 0 16px 22px;
  color: var(--text2);
  font-size: 15px;
}
.doc-body li { margin-bottom: 6px; }
.doc-body a { color: var(--violet); text-decoration: none; }
.doc-body a:hover { text-decoration: underline; }
.doc-body strong { color: var(--text); }
.doc-body .highlight-box {
  background: rgba(155,140,255,.08);
  border: 1px solid rgba(155,140,255,.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
}
.doc-body .highlight-box p { margin-bottom: 0; }

/* ── Misc ── */
.chip {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 99px;
  background: rgba(155,140,255,.15);
  color: var(--violet);
  margin-left: 8px;
  vertical-align: middle;
}

@media (max-width: 520px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}
