:root {
  --bg: #09080f;
  --surface: #13111c;
  --surface-2: #1c1827;
  --fg: #f2ede8;
  --fg-muted: #8a8395;
  --accent: #f05f3a;
  --accent-dim: rgba(240, 95, 58, 0.15);
  --warm: #ffeddf;
  --border: rgba(242, 237, 232, 0.07);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 64px;
  gap: 64px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { display: flex; flex-direction: column; gap: 28px; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.65;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.hero-tags span {
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* Phone mock */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mock {
  width: 260px;
  background: var(--surface-2);
  border-radius: 32px;
  padding: 24px 20px;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}

.phone-screen { display: flex; flex-direction: column; gap: 10px; }

.chat-bubble {
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 200px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.4s ease forwards;
}

.chat-bubble.theirs {
  background: var(--surface);
  color: var(--fg-muted);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-bubble.mine {
  background: var(--accent);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
.delay-4 { animation-delay: 1.2s; }
.delay-5 { animation-delay: 1.5s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── WHAT IT IS ── */
.what-it-is {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 64px;
}

.what-it-is-inner { max-width: 900px; }

.what-it-is h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--fg);
}

.what-it-is p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 60px;
  line-height: 1.7;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.stat {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── PRODUCTS ── */
.products {
  padding: 100px 64px;
  background: var(--bg);
}

.products-inner { max-width: 1100px; }

.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: block;
  margin-bottom: 16px;
}

.products h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  color: var(--fg);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}

.product-card:hover { border-color: rgba(240, 95, 58, 0.3); }

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--accent);
  border-radius: 3px 0 0 3px;
}

.product-format {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.product-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.product-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}

.product-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent);
  margin-top: 8px;
}

/* ── VOICE ── */
.voice {
  padding: 100px 64px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.voice-inner { max-width: 800px; }

.voice blockquote {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.4;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin: 20px 0 28px;
  padding-left: 24px;
  border-left: 3px solid var(--accent);
}

.voice-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.voice-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.voice-tags span {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 500;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 64px 100px;
  background: var(--bg);
  text-align: center;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--fg);
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.closing-note {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 64px;
  background: var(--bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 32px;
    text-align: center;
  }
  .hero-inner { align-items: center; }
  .lede { max-width: 100%; }
  .hero-visual { display: none; }
  .stats-row { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .what-it-is, .products, .voice { padding: 60px 32px; }
  .closing { padding: 80px 32px 60px; }
  footer { padding: 28px 32px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 500px) {
  h1 { font-size: 2rem; }
  .stat { padding: 24px 20px; }
  .product-card { padding: 24px 20px; }
}