:root {
  --bg: #0b0b10;
  --bg-elev: #121219;
  --card: #16161f;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f5f7;
  --text-2: #a2a2ae;
  --text-3: #6c6c78;
  --accent: #ff2d55;
  --accent-2: #ff6b4a;
  --gold: #ffc24b;
  --grad: linear-gradient(135deg, #ff2d55 0%, #ff6b4a 100%);
  --radius: 18px;
  --maxw: 1080px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: saturate(160%) blur(14px);
  background: rgba(11, 11, 16, 0.72);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.brand .flame {
  width: 26px;
  height: 26px;
}
.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 15px;
  color: var(--text-2);
}
.nav-links a:hover {
  color: var(--text);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 45, 85, 0.28);
}
.btn-primary:hover {
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
}
.hero::before {
  content: "";
  position: absolute;
  top: -280px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(
    closest-side,
    rgba(255, 45, 85, 0.35),
    rgba(255, 107, 74, 0.12) 55%,
    transparent 72%
  );
  filter: blur(20px);
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
h1 {
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  font-weight: 800;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  font-size: 19px;
  color: var(--text-2);
  max-width: 30ch;
  margin: 0 0 30px;
}
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.store-note {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 16px;
}

/* ---------- Phone mock ---------- */
.phone {
  justify-self: center;
  width: 288px;
  border-radius: 42px;
  background: linear-gradient(180deg, #1a1a24, #0e0e14);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
}
.phone-screen {
  border-radius: 30px;
  background: #0a0a0f;
  padding: 22px 16px;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.notch {
  width: 118px;
  height: 26px;
  background: #000;
  border-radius: 0 0 16px 16px;
  margin: -22px auto 8px;
}
.bubble {
  max-width: 82%;
  padding: 11px 15px;
  border-radius: 18px;
  font-size: 14.5px;
  line-height: 1.4;
}
.bubble.them {
  align-self: flex-start;
  background: #1e1e28;
  color: var(--text);
  border-bottom-left-radius: 5px;
}
.bubble.me {
  align-self: flex-end;
  background: var(--grad);
  color: #fff;
  border-bottom-right-radius: 5px;
}
.suggest {
  margin-top: auto;
  background: rgba(255, 45, 85, 0.1);
  border: 1px solid rgba(255, 45, 85, 0.35);
  border-radius: 16px;
  padding: 14px;
}
.suggest .label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.suggest p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text);
}

/* ---------- Features ---------- */
section {
  padding: 78px 0;
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
h2 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  font-weight: 800;
}
.section-head p {
  color: var(--text-2);
  font-size: 18px;
  margin: 0;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 85, 0.4);
}
.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 45, 85, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.card p {
  margin: 0;
  color: var(--text-2);
  font-size: 15px;
}

/* ---------- CTA band ---------- */
.band {
  text-align: center;
  background: radial-gradient(
      120% 140% at 50% 0%,
      rgba(255, 45, 85, 0.18),
      transparent 60%
    ),
    var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.band h2 {
  margin-bottom: 22px;
}

/* ---------- Footer ---------- */
footer {
  padding: 46px 0;
  border-top: 1px solid var(--border);
  color: var(--text-3);
  font-size: 14px;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-links {
  display: flex;
  gap: 24px;
}
.foot-links a:hover {
  color: var(--text);
}

/* ---------- Legal pages ---------- */
.legal {
  padding: 64px 0 90px;
  max-width: 760px;
}
.legal h1 {
  font-size: clamp(30px, 5vw, 44px);
  margin-bottom: 8px;
}
.legal .updated {
  color: var(--text-3);
  font-size: 14px;
  margin-bottom: 40px;
}
.legal h2 {
  font-size: 22px;
  margin: 40px 0 12px;
  font-weight: 700;
}
.legal h3 {
  font-size: 17px;
  margin: 26px 0 8px;
}
.legal p,
.legal li {
  color: var(--text-2);
  font-size: 16px;
}
.legal ul {
  padding-left: 22px;
}
.legal li {
  margin-bottom: 8px;
}
.legal a {
  color: var(--accent);
}
.legal a:hover {
  text-decoration: underline;
}
.back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
  font-size: 15px;
  margin-bottom: 34px;
}
.back:hover {
  color: var(--text);
}

@media (max-width: 820px) {
  .hero {
    padding: 64px 0 40px;
  }
  .hero .wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .lead {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-row {
    justify-content: center;
  }
  .phone {
    order: -1;
    margin-bottom: 10px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
}
