:root {
  --bg: #070b14;
  --bg-soft: #0d1424;
  --text: #eaf0ff;
  --muted: #a6b0c7;
  --line: #27324a;
  --accent: #ffbc63;
  --accent-soft: #ffc978;
  --max: 1080px;
  --radius: 16px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: radial-gradient(1200px 600px at 80% -10%, rgba(255,188,99,.17), transparent 50%), var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}

a { color: var(--accent-soft); text-decoration-thickness: 0.08em; }
a:hover { color: #ffd8a6; }

.container {
  width: min(calc(100% - 2.5rem), var(--max));
  margin-inline: auto;
}
.narrow { width: min(100%, 760px); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: .5rem .75rem;
}
.skip-link:focus { left: 1rem; top: 1rem; z-index: 999; }

.site-header {
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(7,11,20,.88);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-row, .footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--text);
  text-decoration: none;
}
.brand-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: block;
  border-radius: .65rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
}
.brand-text {
  line-height: 1;
}

.hero { padding: 5rem 0 3rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}
h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin: 0;
}
.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 56ch;
}
.cta-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.btn {
  border-radius: 999px;
  padding: .7rem 1.05rem;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(180deg, #ffd594, var(--accent));
  color: #261706;
}
.btn-primary:hover { filter: brightness(1.05); color: #140d04; }
.btn-secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255,255,255,.02);
}
.btn-secondary:hover { background: rgba(255,255,255,.06); color: var(--text); }
.microcopy { color: var(--muted); font-size: .9rem; margin-top: .85rem; }

.hero-glow {
  width: min(320px, 90%);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,188,99,.5), rgba(255,188,99,.08) 52%, transparent 72%);
  box-shadow: 0 0 120px rgba(255,188,99,.25);
}

.section { padding: 3rem 0; }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); margin: 0 0 .5rem; }
.section-intro, .muted { color: var(--muted); }

.preview-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.phone-mockup {
  margin: 0;
  background: linear-gradient(180deg, #141c30, #0d1322);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: .85rem;
}
.screen-media {
  width: 100%;
  aspect-ratio: 1290 / 2796;
  display: block;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  object-fit: contain;
  object-position: center;
}
.phone-mockup figcaption {
  margin-top: .65rem;
  color: var(--muted);
  font-size: .95rem;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
  margin-top: 1rem;
}
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: var(--bg-soft);
}
.card h3 { margin-top: 0; margin-bottom: .4rem; }
.card p { margin: 0; color: var(--muted); }

.philosophy p { color: var(--muted); }

.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .8rem .9rem;
  background: var(--bg-soft);
}
.faq details + details { margin-top: .6rem; }
.faq summary { cursor: pointer; font-weight: 600; }

.policy h1 { margin-bottom: .2rem; }
.policy section { margin-top: 1.35rem; }
.policy p { color: var(--muted); margin-top: .4rem; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 2rem;
}
.site-footer nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 4rem; }
  .preview-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
}
