/* ── Reset & base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #e4e4e7;
  background: #08080e;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Container ─────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── Fade-in animation ─────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Nav ───────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,14,.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand { display: flex; align-items: center; font-weight: 700; font-size: 20px; color: #fff; }
.nav-logo { height: 72px; width: auto; }
.nav-links { display: flex; gap: 28px; font-size: 14px; font-weight: 500; color: #888; letter-spacing: .01em; }
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 28px; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 22px; height: 2px; background: #e4e4e7;
  position: absolute; left: 3px; transition: .25s;
}
.nav-toggle span { top: 13px; }
.nav-toggle span::before { content: ''; top: -7px; }
.nav-toggle span::after { content: ''; top: 7px; }
.btn-nav { padding: 8px 20px; font-size: 13px; }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 10px; font-size: 15px; font-weight: 600;
  transition: all .25s; cursor: pointer; border: none; letter-spacing: .01em;
}
.btn-primary {
  background: linear-gradient(135deg, #c8a44e, #dbb95c);
  color: #08080e;
  box-shadow: 0 2px 24px rgba(200,164,78,.2);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #d4b35a, #e8c86a);
  box-shadow: 0 4px 32px rgba(200,164,78,.35);
  transform: translateY(-1px);
}
.btn-secondary {
  background: rgba(255,255,255,.06);
  color: #ccc;
  border: 1px solid rgba(255,255,255,.1);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(200,164,78,.07) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(200,164,78,.04) 0%, transparent 50%),
    #08080e;
  overflow: hidden;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-text { max-width: 560px; }
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #c8a44e; margin-bottom: 20px;
}
.hero-text h1 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.lead { font-size: 16px; color: #999; line-height: 1.75; margin-bottom: 32px; }
.button-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Phone frame ──────────────────────────────────── */
.phone-frame {
  background: #111118;
  border-radius: 32px;
  padding: 10px;
  box-shadow:
    0 24px 80px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.06),
    inset 0 0 0 1px rgba(255,255,255,.04);
  overflow: hidden;
}
.phone-frame img {
  border-radius: 24px;
  width: 100%;
  height: auto;
  display: block;
}
.phone-frame-sm {
  max-width: 340px;
}
.phone-frame-gallery {
  max-width: 260px;
  margin: 0 auto;
}

/* ── TV frame ─────────────────────────────────────── */
.tv-frame {
  background: #0c0c14;
  border-radius: 12px;
  padding: 8px;
  box-shadow:
    0 20px 60px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.06);
  overflow: hidden;
}
.tv-frame img {
  border-radius: 6px;
  width: 100%;
  height: auto;
  display: block;
}

/* ── Sections ──────────────────────────────────────── */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: rgba(255,255,255,.015); }
.center { text-align: center; }
.section-header { margin-bottom: 64px; }
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
  letter-spacing: -.02em;
}
.section-subtitle {
  font-size: 16px; color: #777;
  max-width: 560px; margin: 0 auto;
  line-height: 1.65;
}

/* ── Feature rows ─────────────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row-reverse .feature-copy { order: 2; }
.feature-row-reverse .feature-screenshot { order: 1; }
.feature-screenshot {
  display: flex;
  justify-content: center;
}
.feature-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #c8a44e;
  margin-bottom: 16px;
}
.feature-badge svg { stroke: #c8a44e; }
.feature-copy h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -.01em;
}
.feature-copy p {
  font-size: 15px; color: #888;
  line-height: 1.75;
}

/* ── Showcase grid ────────────────────────────────── */
.showcase-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
  align-items: end;
}
.showcase-item { position: relative; }
.showcase-main img {
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 16px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.06);
}
.showcase-caption {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-top: 12px;
  letter-spacing: .02em;
}

/* ── TV section ───────────────────────────────────── */
.tv-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.tv-copy .section-title { text-align: left; }
.tv-copy .lead { color: #888; }
.tv-features {
  list-style: none;
  margin-top: 28px;
}
.tv-features li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 14px;
  color: #999;
  line-height: 1.6;
}
.tv-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 17px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #c8a44e;
}

/* ── Trust grid ───────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.trust-item {
  text-align: center;
  padding: 40px 28px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.05);
  background: rgba(255,255,255,.02);
  transition: border-color .3s, background .3s;
}
.trust-item:hover {
  border-color: rgba(200,164,78,.15);
  background: rgba(255,255,255,.035);
}
.trust-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(200,164,78,.08);
  border: 1px solid rgba(200,164,78,.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: #c8a44e;
}
.trust-item h3 {
  font-size: 16px; color: #fff;
  margin-bottom: 8px;
  font-weight: 700;
}
.trust-item p {
  font-size: 14px; color: #777;
  line-height: 1.6;
}

/* ── CTA block ────────────────────────────────────── */
.cta-block {
  text-align: center;
  padding: 72px 40px;
  background:
    linear-gradient(170deg, rgba(200,164,78,.06), rgba(8,8,14,.98)),
    rgba(255,255,255,.02);
  border: 1px solid rgba(200,164,78,.1);
  border-radius: 20px;
}
.cta-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.cta-sub {
  font-size: 16px; color: #888;
  margin-bottom: 28px;
}
.store-badges {
  display: flex; gap: 14px;
  justify-content: center; align-items: center;
  flex-wrap: wrap;
}
.store-badges a {
  display: inline-block;
  transition: opacity .2s, transform .2s;
}
.store-badges a:hover { opacity: .85; transform: scale(1.03); }
.store-badges img { display: block; height: 52px; width: auto; border-radius: 6px; }
.disclaimer {
  margin-top: 28px;
  font-size: 12px; color: #555;
  max-width: 580px; margin-left: auto; margin-right: auto;
  line-height: 1.6;
}

/* ── Pricing grid (two plans) ─────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 680px;
  margin: 0 auto;
  align-items: stretch;
}
.pricing-card {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
  overflow: hidden;
  position: relative;
  transition: border-color .3s;
  display: flex;
  flex-direction: column;
}
.pricing-features { flex: 1; }
.pricing-card:hover { border-color: rgba(255,255,255,.12); }
.pricing-card-featured {
  border-color: rgba(200,164,78,.2);
  background: linear-gradient(175deg, rgba(200,164,78,.05) 0%, rgba(8,8,14,.98) 50%);
}
.pricing-card-featured:hover { border-color: rgba(200,164,78,.35); }
.pricing-badge-best {
  position: absolute; top: 0; right: 20px;
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #08080e;
  background: linear-gradient(135deg, #c8a44e, #dbb95c);
  padding: 5px 12px; border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 8px rgba(200,164,78,.2);
}
.pricing-header {
  text-align: center;
  padding: 28px 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pricing-label {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #c8a44e; margin-bottom: 6px;
}
.pricing-price {
  font-size: 30px; font-weight: 800; color: #fff; letter-spacing: -.02em;
  line-height: 1.2;
}
.pricing-period {
  font-size: 15px; font-weight: 400; color: #666;
}
.pricing-features {
  list-style: none; padding: 20px; margin: 0;
}
.pricing-features li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 13px; color: #b0b0b8; line-height: 1.5;
}
.pricing-features li::before {
  content: '';
  position: absolute; left: 0; top: 12px;
  width: 6px; height: 6px; border-radius: 50%;
  background: #c8a44e;
}
.pricing-footer {
  padding: 14px 20px 20px;
  border-top: 1px solid rgba(255,255,255,.04);
}
.pricing-footer p {
  font-size: 12px; color: #555; line-height: 1.5; margin: 0;
  text-align: center;
}
.pricing-cta {
  display: block; text-align: center; margin-top: 14px; padding: 12px 24px;
  border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none;
  background: rgba(255,255,255,.06); color: #e4e4e7; border: 1px solid rgba(255,255,255,.1);
  transition: all .2s;
}
.pricing-cta:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); color: #fff; }
.pricing-cta-featured {
  background: rgba(200,164,78,.12); color: #c8a44e; border-color: rgba(200,164,78,.25);
}
.pricing-cta-featured:hover { background: rgba(200,164,78,.2); border-color: rgba(200,164,78,.4); color: #d4b65e; }
.pricing-card { cursor: pointer; }
.pricing-note {
  text-align: center; font-size: 12px; color: #444; margin-top: 24px; line-height: 1.6;
  max-width: 520px; margin-left: auto; margin-right: auto;
}

/* ── Steps grid (How it works) ────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  text-align: center;
  padding: 32px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.05);
  background: rgba(255,255,255,.02);
  transition: border-color .3s;
}
.step-card:hover { border-color: rgba(200,164,78,.15); }
.step-card .step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #c8a44e, #dbb95c);
  color: #08080e; font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 2px 16px rgba(200,164,78,.2);
}
.step-card h3 {
  font-size: 16px; color: #fff; margin-bottom: 8px; font-weight: 700;
}
.step-card p {
  font-size: 14px; color: #777; line-height: 1.6;
}

/* ── FAQ ──────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.faq-item summary {
  padding: 20px 0;
  font-size: 16px; font-weight: 600; color: #e4e4e7;
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  transition: color .2s;
}
.faq-item summary:hover { color: #c8a44e; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px; font-weight: 400; color: #666;
  flex-shrink: 0; margin-left: 16px;
  transition: transform .2s;
}
.faq-item[open] summary::after {
  content: '-';
}
.faq-item p {
  padding: 0 0 20px;
  font-size: 14px; color: #888; line-height: 1.7;
}
.faq-item a { color: #c8a44e; text-decoration: underline; }

/* ── Pre-launch store badges ─────────────────────── */
.store-badges-prelaunch {
  gap: 20px;
}
.badge-coming-soon {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: .5;
}
.badge-coming-soon img {
  height: 52px; width: auto; border-radius: 6px;
  filter: grayscale(.3);
}
.badge-coming-soon span {
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: #666;
}

/* ── Hero note ───────────────────────────────────── */
.hero-note {
  margin-top: 20px;
  font-size: 13px; color: #555;
}

/* ── Footer ────────────────────────────────────────── */
.footer {
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: #555; flex-wrap: wrap; gap: 12px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { transition: color .2s; }
.footer-links a:hover { color: #c8a44e; }

/* ══════════════════════════════════════════════════════
   Legal pages (privacy, terms, account-deletion)
   ══════════════════════════════════════════════════════ */
.page-hero {
  padding: 80px 0 40px;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,164,78,.06) 0%, transparent 60%), #08080e;
}
.article { max-width: 720px; }
.article h2 { font-size: 20px; margin: 36px 0 10px; color: #fff; }
.article p, .article li { font-size: 15px; color: #a1a1aa; line-height: 1.7; }
.article ul { margin-left: 20px; list-style: disc; }
.article ul li { padding: 3px 0; }
.article a { color: #c8a44e; text-decoration: underline; }
.article h3 { font-size: 17px; margin: 28px 0 8px; color: #e4e4e7; }
.article ol { margin-left: 20px; list-style: decimal; }
.article ol li { padding: 4px 0; }
.meta-row { display: flex; gap: 24px; flex-wrap: wrap; font-size: 13px; color: #6b6b76; margin-top: 16px; }
.notice {
  background: rgba(200,164,78,.08); border: 1px solid rgba(200,164,78,.2); border-radius: 8px;
  padding: 16px 20px; margin-bottom: 32px; font-size: 14px; color: #c8a44e;
}
.article-wide { max-width: 800px; }

/* ── Method blocks (account deletion) ─────────────── */
.method-block {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 20px;
}
.method-block h3 { margin-top: 0; }
.method-block ol, .method-block p { margin-bottom: 8px; }
.method-block ol:last-child, .method-block p:last-child { margin-bottom: 0; }
.email-highlight {
  display: inline-block;
  background: rgba(200,164,78,.1);
  border: 1px solid rgba(200,164,78,.2);
  border-radius: 6px;
  padding: 4px 12px;
  color: #c8a44e;
  font-weight: 600;
  text-decoration: none;
  margin: 4px 0;
}
.email-highlight:hover { background: rgba(200,164,78,.18); }

/* ── Privacy page legal cards ─────────────────────── */
.legal-hero {
  margin-bottom: 28px;
  padding: 32px 24px;
  background: linear-gradient(180deg, rgba(212,168,79,.12), rgba(8,8,14,1));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
}
.legal-hero h1 { margin-bottom: 12px; }
.legal-hero .muted { color: #888; }
.legal-content { max-width: 920px; margin: 0 auto; padding: 80px 20px 72px; }
.legal-content h2 {
  margin-top: 34px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 1.25rem;
  line-height: 1.25;
}
.legal-content h3 { font-size: 1.05rem; margin: 0 0 8px; }
.legal-content p, .legal-content li { line-height: 1.65; color: #a1a1aa; font-size: 15px; }
.legal-content a { color: #c8a44e; text-decoration: underline; }
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-content ul li { padding: 3px 0; }
.legal-card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 18px;
  margin: 18px 0;
}
.legal-card .muted { color: #777; font-size: .95em; }

/* ══════════════════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-text { max-width: 100%; text-align: center; margin: 0 auto; }
  .hero-text h1 br { display: none; }
  .button-row { justify-content: center; }
  .hero-device { display: flex; justify-content: center; }
  .hero-device .phone-frame { max-width: 320px; }
  .feature-row { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .feature-row-reverse .feature-copy { order: 1; }
  .feature-row-reverse .feature-screenshot { order: 2; }
  .feature-screenshot { justify-content: center; }
  .feature-copy h3 { font-size: 26px; }
  .phone-frame-sm { max-width: 280px; margin: 0 auto; }
  .showcase-grid { grid-template-columns: 1fr; gap: 28px; }
  .showcase-item .phone-frame-gallery { max-width: 220px; }
  .tv-block { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .tv-copy .section-title { text-align: center; }
  .tv-features { display: inline-block; text-align: left; }
  .trust-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(8,8,14,.97);
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 20px 24px; gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-inner .btn-nav { display: none; }
}
@media (max-width: 640px) {
  .hero { padding: 64px 0 56px; }
  .section { padding: 72px 0; }
  .cta-block { padding: 48px 24px; }
  .trust-item { padding: 28px 20px; }
  .feature-row { margin-bottom: 56px; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}
