:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --primary: #e8735c;
  --primary-soft: #f3c9c0;
  --text: #2a2a2a;
  --muted: #7a7a7a;
  --divider: #efe7e1;
  --chip-bg: #fff2ef;
  --radius-card: 24px;
  --radius-input: 16px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --shadow: 0 6px 20px rgba(42, 42, 42, 0.06);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 90% -10%, #ffe8e1 0%, var(--bg) 42%);
  color: var(--text);
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 0;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}

.section-lead {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 760px;
  line-height: 1.6;
  font-size: 17px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: 14px 20px;
  border-bottom: none;
  backdrop-filter: blur(10px);
  background: transparent;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.topbar.topbar--scrolled {
  border-bottom: 1px solid rgba(239, 231, 225, 0.8);
  background: rgba(247, 244, 239, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 20px;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

.nav-links {
  display: inline-flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  display: grid;
  gap: var(--space-4);
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-2);
  font-family: "Nunito", sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
}

.hero-brand img {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0;
  color: var(--primary);
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Nunito", sans-serif;
  line-height: 1.1;
  margin: 0;
}

h1 {
  margin-top: var(--space-2);
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -0.01em;
}

.subcopy {
  margin-top: var(--space-2);
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 620px;
}

.hero-note {
  margin: 14px 0 0;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.store-badges {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 176px;
  height: 56px;
  padding: 0 14px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  background: #1f1f1f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 20px rgba(42, 42, 42, 0.18);
}

.store-badge svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.store-badge span {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}

.store-badge small {
  font-size: 10px;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.store-badge strong {
  margin-top: 3px;
  font-size: 18px;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
}

.btn {
  border: 0;
  border-radius: 999px;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(232, 115, 92, 0.28);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--divider);
}

.hero-mock {
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  min-height: 720px;
  overflow: visible;
  box-shadow: none;
}

.hero-mock img {
  width: 108%;
  height: 108%;
  object-fit: contain;
  object-position: center center;
  transform: translateY(10px);
  margin: 0;
}

.feature-grid,
.pricing-grid {
  margin-top: var(--space-3);
  display: grid;
  gap: var(--space-2);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audience-grid,
.faq-grid {
  margin-top: var(--space-3);
  display: grid;
  gap: var(--space-2);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--divider);
  box-shadow: var(--shadow);
  padding: var(--space-3);
}

.card h3 {
  font-size: 24px;
}

.card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.audience-card ul {
  margin: var(--space-2) 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.screens-grid {
  margin-top: var(--space-3);
  display: grid;
  gap: var(--space-2);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.screens-grid img {
  border-radius: var(--radius-card);
  border: 1px solid var(--divider);
  box-shadow: var(--shadow);
}

.values-panel {
  padding-top: 56px;
}

.values-shell {
  background:
    radial-gradient(circle at 90% 0%, rgba(232, 115, 92, 0.12), transparent 42%),
    linear-gradient(180deg, #fff, #fff8f6);
  border: 1px solid var(--divider);
  border-radius: 28px;
  padding: clamp(20px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.value-points {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.value-pill {
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--chip-bg);
  border: 1px solid var(--primary-soft);
  color: #b45f4d;
  font-weight: 700;
  font-size: 14px;
}

.quote-line {
  margin-top: var(--space-2);
  font-style: italic;
  color: var(--text);
}

.plan {
  position: relative;
}

.plan-kicker {
  margin: 0;
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #b05b4a;
  background: var(--chip-bg);
}

.price {
  margin-top: 8px;
  font-size: 38px;
  font-family: "Nunito", sans-serif;
  color: var(--text);
}

.plan ul {
  margin: var(--space-2) 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.plan-premium {
  border: 2px solid var(--primary-soft);
}

.cta {
  padding-bottom: 76px;
}

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

.footer {
  border-top: 1px solid var(--divider);
  padding: 20px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 980px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .topbar > .btn {
    width: 100%;
    max-width: 260px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-mock {
    min-height: 0;
    max-width: 420px;
    justify-self: center;
  }

  .feature-grid,
  .audience-grid,
  .faq-grid,
  .pricing-grid,
  .screens-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    width: calc(100% - 28px);
    padding-top: 56px;
  }

  .topbar {
    padding: 12px 14px;
    gap: 10px;
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .hero-brand {
    font-size: 26px;
  }

  .hero-brand img {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .subcopy,
  .section-lead {
    font-size: 16px;
  }

  .feature-grid,
  .audience-grid,
  .faq-grid,
  .pricing-grid,
  .screens-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta,
  .store-badges {
    flex-direction: column;
  }

  .btn,
  .store-badge {
    width: 100%;
  }

  .hero-mock {
    min-height: 0;
  }

  .hero-mock img {
    width: 100%;
    height: 100%;
    transform: none;
  }

  .card {
    border-radius: 20px;
    padding: 20px;
  }

  .card h3 {
    font-size: 22px;
  }

  .price {
    font-size: 34px;
  }
}
