:root {
  --brand: #4F46E5;
  --brand-dark: #4338CA;
  --brand-soft: #EEF2FF;
  --brand-border: rgba(79, 70, 229, 0.18);
  --success: #16A34A;
  --success-soft: rgba(22, 163, 74, 0.12);
  --warning: #D97706;
  --warning-soft: rgba(217, 119, 6, 0.12);
  --danger: #DC2626;
  --danger-soft: rgba(220, 38, 38, 0.12);
  --ink-950: #0F172A;
  --ink-900: #111827;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748B;
  --line: #E2E8F0;
  --surface: #FFFFFF;
  --surface-soft: #F8FAFC;
  --surface-tint: #F5F7FF;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.14);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--surface-soft);
  color: var(--ink-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

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

nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(248, 250, 252, 0.86);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.nav-logo-text,
.footer-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink-950);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--ink-600);
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 14px 30px rgba(79, 70, 229, 0.24);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: white;
  color: var(--ink-900);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--brand-border);
  color: var(--brand);
}

.btn-large {
  min-height: 54px;
  padding: 14px 24px;
}

.full-width {
  width: 100%;
}

.hero {
  padding: 72px 0 36px;
  background:
    radial-gradient(circle at top left, rgba(79, 70, 229, 0.16), transparent 38%),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 28%),
    linear-gradient(180deg, #F7F9FF 0%, #FFFFFF 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}

.eyebrow,
.section-label,
.trust-kicker,
.floating-label,
.device-topline,
.proof-chip,
.pricing-tier,
.pricing-badge {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(79, 70, 229, 0.12);
  box-shadow: var(--shadow-sm);
  color: var(--ink-700);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
}

h1,
.section-title,
.final-cta h2 {
  margin: 0;
  color: var(--ink-950);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(2.85rem, 5.8vw, 4.9rem);
  max-width: 12ch;
}

.hero-sub,
.section-sub,
.pricing-copy,
.final-cta p,
.footer-copy {
  font-size: 1.05rem;
  color: var(--ink-600);
}

.hero-sub {
  max-width: 62ch;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.hero-points li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-700);
  font-size: 0.98rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, var(--success) 0 42%, transparent 44%),
    var(--success-soft);
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.trust-item,
.proof-card,
.step-card,
.benefit-card,
.pricing-card,
.faq-item {
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.proof-chip,
.pricing-tier {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ink-500);
}

.shot-stack {
  position: relative;
  height: 100%;
}

.shot-glow {
  position: absolute;
  inset: 72px 36px 42px 36px;
  border-radius: 40px;
  background:
    radial-gradient(circle at top right, rgba(129, 140, 248, 0.42), transparent 32%),
    radial-gradient(circle at bottom left, rgba(79, 70, 229, 0.18), transparent 42%);
  filter: blur(8px);
}

.shot-kicker {
  position: absolute;
  top: 10px;
  left: 34px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(79, 70, 229, 0.12);
  box-shadow: var(--shadow-sm);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shot-frame {
  position: absolute;
  overflow: hidden;
  border-radius: 24px;
  background: white;
  border: 1px solid rgba(79, 70, 229, 0.12);
  box-shadow: var(--shadow-lg);
}

.shot-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.shot-main {
  top: 66px;
  left: 20px;
  width: 336px;
  height: 548px;
  z-index: 1;
}

.shot-floating {
  width: 230px;
  z-index: 2;
}

.shot-floating-top {
  top: 58px;
  right: 24px;
}

.shot-floating-bottom {
  right: 82px;
  bottom: 18px;
}

.trust-strip,
.section,
.final-cta,
footer {
  padding: 32px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-item,
.proof-card,
.benefit-card {
  border-radius: 24px;
  padding: 24px;
}

.trust-kicker,
.section-label,
.pricing-badge {
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 800;
}

.trust-item strong,
.proof-card h3,
.step-card h3,
.benefit-card h3,
.pricing-card h3 {
  display: block;
  margin-top: 10px;
  font-size: 1.08rem;
  color: var(--ink-950);
  letter-spacing: -0.02em;
}

.trust-item p,
.proof-card p,
.step-card p,
.benefit-card p,
.pricing-note,
.pricing-copy,
.faq-item p {
  margin: 10px 0 0;
  color: var(--ink-600);
}

.section {
  padding-top: 68px;
  padding-bottom: 68px;
}

.section-soft {
  background: linear-gradient(180deg, var(--surface-tint), white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-top: 10px;
}

.section-sub {
  max-width: 62ch;
  margin-top: 14px;
}

.proof-grid,
.benefit-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.proof-card {
  border-radius: 28px;
}

.proof-visual {
  border-radius: 22px;
  padding: 12px;
  background: var(--surface-soft);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.proof-chip {
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 999px;
  padding: 7px 10px;
}

.proof-screenshot {
  display: block;
  width: 100%;
  aspect-ratio: 1206 / 2622;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
}

.rating-stack,
.mini-list,
.feature-checklist {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.rating-row,
.mini-row,
.check-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--line);
  padding: 12px 14px;
}

.rating-name,
.mini-row span:last-child,
.check-row span:last-child {
  color: var(--ink-900);
  font-weight: 600;
}

.rating-pill.mild {
  background: var(--warning-soft);
  color: var(--warning);
}

.rating-pill.explicit {
  background: var(--danger-soft);
  color: var(--danger);
}

.mini-row {
  justify-content: flex-start;
}

.mini-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  flex-shrink: 0;
}

.mini-dot.indigo { background: var(--brand); }
.mini-dot.green { background: var(--success); }
.mini-dot.amber { background: var(--warning); }

.check-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--success);
  background: var(--success-soft);
  font-weight: 900;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.step-card {
  border-radius: 26px;
  padding: 26px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 800;
}

.pricing-note {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 28px;
}

.pricing-note strong {
  color: var(--ink-950);
}

.pricing-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--ink-400);
  max-width: 600px;
  margin: 20px auto 32px;
}

.pricing-card {
  position: relative;
  border-radius: 30px;
  padding: 28px;
}

.pricing-card.featured {
  border-color: rgba(79, 70, 229, 0.24);
  background: linear-gradient(180deg, rgba(79, 70, 229, 0.04), white);
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-top: 12px;
  color: var(--ink-950);
}

.pricing-currency {
  font-size: 1.2rem;
  font-weight: 700;
  padding-bottom: 10px;
}

.pricing-amount {
  font-size: 3.4rem;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.pricing-period {
  padding-bottom: 10px;
  color: var(--ink-500);
  font-size: 0.95rem;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 26px;
  display: grid;
  gap: 12px;
}

.pricing-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-700);
}

.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--success);
  font-weight: 900;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.faq-heading {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 22px;
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink-950);
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-item p {
  padding: 0 22px 20px;
  margin: 0;
}

.final-cta {
  padding-top: 76px;
  padding-bottom: 76px;
}

.final-cta-inner {
  border-radius: 34px;
  padding: 48px;
  background:
    radial-gradient(circle at top right, rgba(129, 140, 248, 0.42), transparent 34%),
    linear-gradient(135deg, #191F52 0%, var(--brand) 52%, #6366F1 100%);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.final-cta .section-label,
.final-cta h2,
.final-cta p,
.final-cta .btn-secondary {
  color: white;
}

.final-cta .section-label {
  display: inline-block;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-top: 12px;
}

.final-cta p {
  max-width: 58ch;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.84);
}

.centered-actions {
  justify-content: center;
}

.final-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.final-cta .btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.34);
}

footer {
  padding-top: 8px;
  padding-bottom: 40px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
}

.footer-copy {
  margin: 12px 0 0;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
  color: var(--ink-600);
}

@media (max-width: 1080px) {
  .hero-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 760px;
  }

  .proof-grid,
  .benefit-grid,
  .pricing-grid,
  .steps-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1120px, calc(100% - 28px));
  }

  .nav-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero {
    padding-top: 42px;
  }

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

  .hero-visual {
    min-height: auto;
    display: flex;
    justify-content: center;
  }

  .shot-stack {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 100%;
    max-width: 300px;
  }

  /* Show two overlapping screenshots on mobile, scaled down */
  .shot-floating,
  .shot-glow,
  .shot-kicker {
    display: none;
  }

  .shot-stack {
    position: relative;
    display: block;
    height: 360px;
    width: 100%;
    max-width: 340px;
    overflow: hidden;
  }

  .shot-frame {
    position: absolute;
    height: auto;
  }

  .shot-main {
    left: 0;
    top: 24px;
    width: 62%;
    height: auto;
  }

  .shot-floating-top {
    display: block;
    right: 0;
    top: 0;
    width: 54%;
    height: auto;
  }

  .shot-floating-bottom {
    display: none;
  }

  .shot-frame img {
    height: auto;
    object-fit: cover;
    object-position: top center;
  }

  .proof-grid,
  .benefit-grid,
  .pricing-grid,
  .steps-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .final-cta {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .final-cta-inner,
  .pricing-card,
  .step-card,
  .proof-card,
  .benefit-card,
  .trust-item {
    padding: 22px;
  }

}

@media (max-width: 540px) {
  h1 {
    font-size: 2.5rem;
  }

  .hero-actions,
  .centered-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-large {
    width: 100%;
  }

  .final-cta-inner {
    padding: 34px 22px;
  }

  .faq-item summary {
    padding: 18px;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }
}
