:root {
  --coral: #FF5836;
  --coral-deep: #E8431F;
  --ink: #161318;
  --dark: #1B1530;
  --screen: #F7F4EF;
  --body: #4A4550;
  --muted: #8A8492;
  --white: #FFFFFF;
  --green: #2FA36B;
  --hairline: rgba(22, 19, 24, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  background: var(--screen);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.display { font-family: 'Unbounded', sans-serif; letter-spacing: -0.03em; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Nav */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--coral), #6C4CF1);
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 15px;
}
.brand-name { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 17px; letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--body); text-decoration: none; font-size: 14.5px; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink); color: #fff !important; padding: 9px 18px; border-radius: 999px; font-weight: 600;
}

/* Hero */
.hero { padding: 72px 0 40px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-eyebrow {
  display: inline-block; background: rgba(255, 88, 54, 0.12); color: var(--coral-deep);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(34px, 5.4vw, 58px); line-height: 1.06; font-weight: 800; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--coral); }
.hero p.lead { font-size: 18px; color: var(--body); max-width: 480px; margin-bottom: 30px; }
.cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--coral); color: #fff; text-decoration: none; font-weight: 700; font-size: 16px;
  padding: 15px 28px; border-radius: 16px; box-shadow: 0 12px 30px rgba(255, 88, 54, 0.35);
  transition: transform 0.15s ease;
}
.btn-primary:hover { transform: translateY(-2px); }
.cta-note { font-size: 13.5px; color: var(--muted); }

/* Phone mock */
.phone {
  width: 300px; margin: 0 auto; background: var(--dark); border-radius: 42px; padding: 14px;
  box-shadow: 0 40px 80px rgba(22, 19, 24, 0.28);
}
.phone-screen { background: var(--screen); border-radius: 30px; padding: 22px 18px; }
.mock-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.mock-card { background: var(--dark); border-radius: 20px; padding: 18px; color: #fff; margin-bottom: 12px; }
.mock-card .mock-label { color: rgba(255,255,255,0.55); }
.mock-prompt { font-family: 'Unbounded', sans-serif; font-size: 14px; line-height: 1.45; font-weight: 600; }
.mock-btn { margin-top: 14px; background: var(--coral); border-radius: 12px; text-align: center; padding: 11px; font-weight: 700; font-size: 13px; }
.mock-score { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--hairline); border-radius: 16px; padding: 14px; }
.mock-ring {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(var(--coral) 0 76%, rgba(22,19,24,0.08) 76% 100%);
  display: grid; place-items: center;
}
.mock-ring span { background: #fff; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 16px; }
.mock-metric { font-size: 12.5px; color: var(--body); }
.mock-metric b { color: var(--green); }

/* Sections */
section { padding: 64px 0; }
.section-label {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--coral-deep); margin-bottom: 12px;
}
h2 { font-size: clamp(26px, 3.6vw, 38px); font-weight: 800; line-height: 1.15; margin-bottom: 14px; }
.section-sub { color: var(--body); font-size: 16.5px; max-width: 560px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.card {
  background: #fff; border: 1px solid var(--hairline); border-radius: 22px; padding: 26px;
}
.card .emoji { font-size: 28px; display: block; margin-bottom: 14px; }
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: 14.5px; color: var(--body); }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.step { background: #fff; border: 1px solid var(--hairline); border-radius: 22px; padding: 26px; position: relative; }
.step::before {
  counter-increment: step; content: counter(step);
  font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: 14px;
  width: 34px; height: 34px; border-radius: 50%; background: var(--coral); color: #fff;
  display: grid; place-items: center; margin-bottom: 16px;
}

.dark-band { background: var(--dark); color: #fff; border-radius: 32px; padding: 56px 48px; margin: 40px 0; }
.dark-band h2 { color: #fff; }
.dark-band .section-sub { color: rgba(255,255,255,0.7); }
.dark-band .card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.dark-band .card h3 { color: #fff; }
.dark-band .card p { color: rgba(255,255,255,0.65); }

/* Pricing */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 40px; max-width: 720px; }
.plan { background: #fff; border: 2px solid var(--hairline); border-radius: 22px; padding: 30px; }
.plan.featured { border-color: var(--coral); box-shadow: 0 16px 40px rgba(255, 88, 54, 0.16); }
.plan-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.plan-price { font-family: 'Unbounded', sans-serif; font-size: 34px; font-weight: 800; }
.plan-price small { font-size: 15px; font-weight: 500; color: var(--muted); }
.plan ul { list-style: none; margin-top: 18px; }
.plan li { font-size: 14.5px; color: var(--body); padding: 6px 0 6px 26px; position: relative; }
.plan li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.plan-badge { display: inline-block; background: var(--green); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; padding: 4px 10px; border-radius: 999px; margin-bottom: 10px; }
.fine { font-size: 13px; color: var(--muted); margin-top: 18px; max-width: 620px; }

/* Footer */
footer { border-top: 1px solid var(--hairline); padding: 36px 0 48px; margin-top: 40px; }
.foot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.foot-links { display: flex; gap: 22px; }
.foot a { color: var(--muted); text-decoration: none; font-size: 13.5px; }
.foot a:hover { color: var(--ink); }
.foot-copy { color: var(--muted); font-size: 13px; }

/* Legal pages */
.legal { max-width: 760px; margin: 0 auto; padding: 40px 24px 80px; }
.legal h1 { font-size: 32px; font-weight: 800; margin-bottom: 6px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 36px; }
.legal h2 { font-size: 20px; margin: 34px 0 10px; }
.legal p, .legal li { font-size: 15.5px; color: var(--body); margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--coral-deep); }

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 40px; }
  .hero p.lead { margin: 0 auto 30px; }
  .cta-row { justify-content: center; }
  .grid-3, .steps, .plans { grid-template-columns: 1fr; }
  .dark-band { padding: 40px 26px; }
  .nav-links a:not(.nav-cta) { display: none; }
}
