:root {
  --ink: #1c1917;
  --muted: #625c58;
  --line: #eae6e1;
  --cream: #faf8f5;
  --white: #ffffff;
  --honey: #f5a623;
  --honey-soft: #fef3c7;
  --honey-deep: #e08e0b;
  --ok-bg: #e6f4ea;
  --ok-border: #b3e0c9;
  --ok-text: #137333;
  --tab-idle: #f3f4f6;
  --tab-active: #1f2937;
  --shadow-phone: 0 4px 16px rgba(0, 0, 0, 0.1), 0 20px 60px rgba(0, 0, 0, 0.25);
  --radius-pill: 100px;
  --radius-card: 16px;
  --radius-lg: 24px;
  --pad-x: clamp(1.25rem, 3vw, 1.5rem);
  --font: "Manrope", system-ui, -apple-system, Segoe UI, sans-serif;
  /* Keep composition readable on ultrawide. */
  --max: 1080px;
}

.shell {
  width: min(100% - (2 * var(--pad-x)), var(--max));
  margin-inline: auto;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding-block: 0.625rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 21px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a.is-active,
.nav-links a[aria-current="page"] {
  background: var(--honey-soft);
  color: var(--ink);
  font-weight: 700;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}

.icon-btn img {
  width: 16px;
  height: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.875rem;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-honey {
  background: var(--honey);
  color: var(--ink);
  font-weight: 800;
}

.btn-ghost {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.btn img {
  width: 16px;
  height: 16px;
}

.section {
  padding: 4.5rem var(--pad-x);
}

.section-tight {
  padding-top: 3.5rem;
  padding-bottom: 5rem;
}

.section > .shell,
.cta-banner > .shell,
.site-footer > .shell {
  width: min(100%, var(--max));
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

/* Hero — compact two-column band, not full-bleed edges */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  width: min(100% - (2 * var(--pad-x)), var(--max));
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
}

.badge-ok {
  background: var(--ok-bg);
  border-color: var(--ok-border);
  color: var(--ok-text);
}

.badge-ok img {
  width: 6px;
  height: 6px;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-sub {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.0625rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.download-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, 420px);
  padding: 0.5rem;
  background: var(--ink);
  border-radius: var(--radius-pill);
  color: var(--white);
}

.download-pill-copy {
  padding-left: 1rem;
}

.download-pill-copy small {
  display: block;
  color: var(--honey);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.download-pill-copy strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 800;
}

.hero-right {
  justify-self: end;
  flex-shrink: 0;
}

/* Phone mockup: mid size between Figma 280 and the over-narrow 240 */
.phone-mock {
  width: 260px;
  margin: 0;
  background: #262626;
  border-radius: 38px;
  padding: 10px;
  box-shadow: var(--shadow-phone);
}

.phone-mock img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  aspect-ratio: 260 / 550;
  object-fit: cover;
  display: block;
}

/* Platform tabs / how */
.platform-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.platform-tabs button {
  padding: 0.625rem 1.125rem;
  border-radius: var(--radius-pill);
  background: var(--tab-idle);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.875rem;
}

.platform-tabs button.is-active {
  background: var(--tab-active);
  color: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: var(--max);
  margin: 0 auto 2rem;
}

.step-card {
  background: #f9fafb;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 2rem;
}

.step-num {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--honey-soft);
  color: var(--honey);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.step-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 800;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.how-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.how-cta a[data-secondary-cta] {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: underline;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}

.feature-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.feature-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--honey-soft);
}

.feature-icon img {
  width: 16px;
  height: 16px;
}

.feature-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 800;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.4;
}

/* Pricing */
.pricing-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 12px rgba(28, 25, 23, 0.03);
}

.pricing-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.plan {
  position: relative;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.plan-popular {
  background: var(--honey-soft);
  border: 2px solid var(--honey);
}

.plan-tag {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
}

.plan-popular .plan-tag {
  color: var(--honey-deep);
  font-weight: 800;
}

.plan h3 {
  margin: 0 0 0.25rem;
  font-size: 1.75rem;
  font-weight: 800;
}

.plan .price {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1rem;
}

.plan .price span {
  font-size: 0.8125rem;
  font-weight: 500;
}

.plan .note {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.promo-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-pill);
  background: var(--honey);
  color: var(--ink);
  font-size: 0.6875rem;
  font-weight: 800;
}

.trial-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  margin-bottom: 1.5rem;
  background: var(--honey-soft);
  border: 1px solid var(--honey);
  border-radius: var(--radius-card);
  font-weight: 800;
}

.trial-banner .icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: var(--honey);
}

.trial-banner img {
  width: 18px;
  height: 18px;
}

.pricing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.pricing-cta .hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.8125rem;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.store-row .btn.is-active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* CTA banner */
.cta-banner {
  padding: 3rem var(--pad-x) 5rem;
}

.cta-inner {
  position: relative;
  overflow: hidden;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.75rem;
  background: var(--honey-soft);
  border-radius: var(--radius-lg);
  text-align: center;
}

.cta-inner h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
}

.cta-inner > p {
  margin: 0 0 2rem;
  color: var(--muted);
}

.cta-inner .download-pill {
  margin: 0 auto;
}

/* Footer */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 4rem var(--pad-x) 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  max-width: var(--max);
  margin: 0 auto 2.5rem;
}

.footer-brand {
  max-width: 20rem;
}

.footer-brand p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 7rem;
}

.footer-col h3 {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.875rem;
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8125rem;
}

.pay-icons {
  display: flex;
  gap: 0.5rem;
}

.pay-icons img {
  width: 20px;
  height: 20px;
}

/* Inner pages */
.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem var(--pad-x) 5rem;
}

.page h1 {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 800;
}

.page p,
.page li {
  color: var(--muted);
}

.page a {
  color: var(--ink);
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: left;
    gap: 2rem;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

  .hero-left {
    width: 100%;
  }

  .hero-right {
    justify-self: center;
    order: -1;
  }

  .phone-mock {
    width: min(100%, 240px);
    margin: 0 auto;
  }

  .steps,
  .features-grid,
  .pricing-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-links,
  .nav-cta .btn-dark {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header .shell {
    position: relative;
  }

  .site-header.is-open .nav-links {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.5rem);
    flex-direction: column;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  }

  .download-pill {
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
  }

  .download-pill .btn {
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
  }
}
