:root {
  --bg: #121212;
  --ink: #f3f1ec;
  --ink-muted: #b9b6ae;
  --ink-faint: #7d7a72;
  --panel: #181818;
  --border: #2a2a2a;
  --accent: #e8b04b;
  --accent-hover: #f0c169;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
}

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

.wrap { max-width: 1400px; margin: 0 auto; }

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6vw;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
  gap: 16px;
}
.logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.site-nav { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.site-nav a { color: var(--ink-muted); font-size: 15px; font-weight: 500; }
.btn-pill {
  background: var(--accent);
  color: var(--bg) !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 56px 6vw 100px;
}
.hero-badge-row { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.app-icon { width: 96px; height: 96px; border-radius: 20px; object-fit: cover; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.hero h1 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.hero p.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 480px;
  margin: 0 0 36px;
}
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--bg) !important;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
}
.btn-secondary {
  color: var(--ink) !important;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 8px;
  border-bottom: 2px solid var(--border);
}
.platform-row { display: flex; gap: 28px; margin-top: 44px; }
.platform-row .divider { width: 1px; background: var(--border); }
.platform-name { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 26px; }
.platform-status { font-size: 13px; color: var(--ink-faint); }

/* Phone mockup */
.phone-stage { position: relative; display: flex; justify-content: center; }
.phone-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: var(--accent);
  opacity: 0.18;
  filter: blur(70px);
  border-radius: 50%;
  top: 20%;
}
.phone-frame {
  position: relative;
  width: 300px;
  background: linear-gradient(155deg, #3a3a3a, #0c0c0c 55%);
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 50px 90px -30px rgba(0, 0, 0, 0.7), inset 0 0 0 1.5px rgba(255, 255, 255, 0.08);
}
.phone-screen {
  background: #000;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9 / 19.3;
}
.phone-screenshot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Features */
.features { padding: 60px 6vw 100px; }
.features-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}
.features-head h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.02em;
  margin: 0;
}
.features-head p {
  max-width: 340px;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.feature-card {
  background: var(--panel);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
}
.feature-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(232, 176, 75, 0.1);
  border: 1px solid rgba(232, 176, 75, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
  font-weight: 800;
  font-family: 'Sora', sans-serif;
}
.feature-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 19px; }
.feature-body { color: var(--ink-muted); font-size: 15px; line-height: 1.55; }

/* FAQ */
.faq-section { padding: 40px 6vw 110px; max-width: 820px; margin: 0 auto; }
.faq-section h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.02em;
  margin: 0 0 36px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.faq-item { background: var(--panel); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  background: none;
  border: 0;
  width: 100%;
  color: var(--ink);
  font-family: inherit;
  text-align: left;
}
.faq-q:hover { opacity: 0.75; }
.faq-q .symbol { color: var(--accent); font-size: 20px; font-weight: 400; }
.faq-a {
  padding: 0 26px 24px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 640px;
}
.faq-item[data-open="false"] .faq-a { display: none; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 18px; color: var(--ink); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { color: var(--ink-muted); font-size: 14px; }
.footer-copy { color: var(--ink-faint); font-size: 14px; }

/* Simple content pages (contact / privacy / terms) */
.simple-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 6vw 120px;
}
.simple-card { max-width: 560px; text-align: center; }
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 20px;
}
.simple-card h1, .legal-main h1 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.simple-card h1 { font-size: clamp(32px, 4.5vw, 48px); margin: 0 0 20px; }
.simple-card .lead { font-size: 17px; line-height: 1.6; color: var(--ink-muted); margin: 0 0 40px; }
.simple-card .fineprint { font-size: 14px; color: var(--ink-faint); margin-top: 28px; }

.legal-main { max-width: 720px; margin: 0 auto; padding: 40px 6vw 120px; }
.legal-main .eyebrow { margin-bottom: 16px; }
.legal-main h1 { font-size: clamp(32px, 4vw, 44px); margin: 0 0 12px; }
.legal-updated { color: var(--ink-faint); font-size: 14px; margin-bottom: 48px; }
.legal-body { display: flex; flex-direction: column; gap: 36px; font-size: 16px; line-height: 1.7; color: var(--ink-muted); }
.legal-body h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 12px;
}

.page-flex { min-height: 100vh; display: flex; flex-direction: column; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .phone-stage { order: -1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

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