:root {
  --bg: #f5f7fb;
  --bg-alt: #eaf0fa;
  --ink: #0f172a;
  --muted: #475569;
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --accent: #f97316;
  --accent-dark: #ea580c;
  --card: #ffffff;
  --border: #d7e0ee;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  --radius: 18px;
  --radius-lg: 26px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Gill Sans MT", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  margin: 0 0 0.8rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.2rem;
}

section {
  scroll-margin-top: 90px;
}

.container {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section-header {
  max-width: 720px;
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.section-cta .license-note {
  flex-basis: 100%;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #ffffff;
  color: #000000;
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 999;
}

.skip-link:focus {
  left: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 247, 251, 0.92);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(10px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  border-color: rgba(215, 224, 238, 0.7);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
  position: relative;
}

.logo img {
  width: 170px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  font-weight: 600;
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  background: linear-gradient(120deg, var(--accent), var(--accent-dark));
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.32);
}

.btn.secondary {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--border);
  box-shadow: none;
}

.btn.ghost {
  background: transparent;
  color: var(--brand-dark);
  border-color: rgba(37, 99, 235, 0.35);
}

.btn.light {
  background: #ffffff;
  color: var(--ink);
}

.btn.small {
  padding: 10px 18px;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 110px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero::before {
  top: -120px;
  left: -80px;
}

.hero::after {
  bottom: -140px;
  right: -120px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.16), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.hero .lead {
  font-size: 1.15rem;
  color: var(--muted);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: grid;
  gap: 12px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 600;
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.check svg {
  width: 12px;
  height: 12px;
  stroke: var(--brand-dark);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.cta-note-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.license-note {
  display: block;
  color: #dc2626;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.4;
}

.hero-note {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-subnote {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.niche-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.niche-pill {
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 600;
}

.bundle-note {
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-visual {
  background: transparent;
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: none;
}

.product-preview {
  display: grid;
  gap: 18px;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.preview-label {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.preview-items {
  display: grid;
  gap: 14px;
}

.preview-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.preview-item strong {
  display: block;
  font-size: 0.98rem;
}

.preview-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.preview-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--brand-dark);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.preview-shot {
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.preview-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid rgba(215, 224, 238, 0.7);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.steps-grid,
.features-grid,
.pricing-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 32px;
}

.bundle-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 32px;
}

.quick-start-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 32px;
}

.quick-start-card {
  position: relative;
  padding-top: 56px;
}

.quick-start-number {
  position: absolute;
  top: -16px;
  left: 26px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--brand), var(--brand-dark));
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.use-cases-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 32px;
}

.use-case-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.use-case-card h3 {
  margin: 12px 0 10px;
}


.ebook-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.ebook-content .section-lead {
  margin-bottom: 16px;
}

.ebook-visual {
  display: grid;
  place-items: center;
}

.ebook-visual img {
  max-width: 100%;
  height: auto;
}

.gallery-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 32px;
}

.gallery-card {
  padding: 0;
  overflow: hidden;
}

.gallery-link {
  display: block;
}

.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
}

.pricing-grid.single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 560px;
  margin: 32px auto 0;
}

.step-card {
  position: relative;
  padding-top: 56px;
}

.step-number {
  position: absolute;
  top: -16px;
  left: 26px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--brand), var(--brand-dark));
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-lines {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.feature-lines p {
  margin: 0;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 8px;
}

.under-hood {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.promo-card {
  padding: 22px;
}

.promo-media {
  display: grid;
  place-items: center;
}

.promo-video {
  width: min(360px, 100%);
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  background: #0f172a;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.2);
}

.hood-details {
  margin-top: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 12px 16px;
  background: #ffffff;
}

.hood-details summary {
  cursor: pointer;
  font-weight: 700;
}

.hood-details ul {
  margin: 14px 0 0 18px;
  color: var(--muted);
}

.social-proof {
  padding: 40px 0;
}

.proof-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  color: #94a3b8;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.logo-pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.price-card {
  display: grid;
  gap: 14px;
}

.price-card .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-dark);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-cycle {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}

.price-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.price-list li {
  position: relative;
  padding-left: 22px;
}

.price-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

.price-footnote {
  margin: 0;
}

.price-card.highlight {
  border: 2px solid rgba(249, 115, 22, 0.45);
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.faq-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.faq-grid details {
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 14px 18px;
  background: #ffffff;
}

.faq-grid summary {
  font-weight: 700;
  cursor: pointer;
}

.checkout {
  display: grid;
  gap: 30px;
}

.checkout-card {
  display: grid;
  gap: 16px;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.checkout-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--muted);
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 1rem;
}

.checkout-form textarea {
  min-height: 120px;
  resize: vertical;
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

.final-cta {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  color: #ffffff;
}

.cta-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12);
}

.cta-banner h2 {
  margin-bottom: 0.3rem;
}

.site-footer {
  padding: 40px 0 80px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-weight: 600;
}

.footer-links a {
  color: var(--brand-dark);
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(245, 247, 251, 0.96);
  border-top: 1px solid var(--border);
  z-index: 30;
  justify-content: center;
  align-items: center;
}

.mobile-cta.is-hidden {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  justify-content: center;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-card {
  width: min(980px, 100%);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.2);
  color: var(--ink);
  font-size: 0.95rem;
}

.cookie-copy {
  margin: 0;
  color: var(--muted);
  flex: 1 1 320px;
}

.cookie-copy strong {
  color: var(--ink);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cookie-link {
  color: var(--brand-dark);
  font-weight: 600;
}

@media (max-width: 960px) {
  .nav {
    position: absolute;
    top: 70px;
    right: 4%;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 820px) {
  .hero {
    padding-top: 90px;
  }

  .cta-banner {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .mobile-cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  body {
    padding-bottom: 80px;
  }

  .cookie-banner {
    bottom: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0ms;
  }

  .btn,
  .nav,
  .site-header {
    transition: none;
  }
}
