:root {
  --page: #F4F4F4;
  --dark-blue: #0A1F44;
  --blue: #1E90FF;
  --gold: #D4AF37;
  --white: #ffffff;
  --ink: #0A1F44;
  --muted: #5C6B7D;
  --line: #DDE4ED;
  --soft-blue: #EEF7FF;
  --soft-gold: #FBF6E6;
  --shadow: 0 22px 56px rgba(10, 31, 68, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 4.7rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.24);
  background: rgba(10, 31, 68, 0.98);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 8.2rem;
  min-width: 0;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 8px;
  background: var(--page);
}

.brand-picture,
.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.header-nav {
  display: none;
}

.header-cta,
.button,
.text-link,
.header-nav a,
.footer-links a {
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0 1rem;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: var(--dark-blue);
  font-size: 0.9rem;
  font-weight: 800;
}

.header-cta:hover {
  border-color: var(--gold);
  background: var(--gold);
}

.container {
  width: min(100%, 70rem);
  margin: 0 auto;
}

.hero {
  overflow: hidden;
  padding: 4rem 1rem 3.5rem;
  background: var(--white);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}

.hero-copy-wrap {
  max-width: 42rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3,
summary {
  color: var(--dark-blue);
}

h1 {
  display: grid;
  gap: 0.1rem;
  max-width: 9.8ch;
  font-size: 2.95rem;
  line-height: 1;
  font-weight: 800;
}

h2 {
  display: grid;
  gap: 0.12rem;
  max-width: 13ch;
  font-size: 2.25rem;
  line-height: 1.08;
  font-weight: 800;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
  font-weight: 800;
}

.hero-copy,
.section-lede,
.section-copy,
.plan-note,
.refund-note,
.refund-panel,
.demo-panel > p,
.step-card p,
.result-card p,
.plan-card p,
.final-inner p {
  color: var(--muted);
}

.hero-copy {
  max-width: 34rem;
  margin-top: 1.2rem;
  font-size: 1.08rem;
}

.hero-actions,
.section-action {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions {
  margin-top: 1.55rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
}

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

.button-primary {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--dark-blue);
  box-shadow: 0 14px 30px rgba(30, 144, 255, 0.22);
}

.button-primary:hover {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.18);
}

.button-secondary {
  border: 1px solid rgba(30, 144, 255, 0.35);
  background: var(--white);
  color: var(--dark-blue);
}

.button-secondary:hover {
  border-color: var(--gold);
  color: var(--dark-blue);
}

.button-full {
  width: 100%;
}

.demo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.demo-strip span {
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 999px;
  background: var(--soft-gold);
  color: var(--dark-blue);
  font-size: 0.86rem;
  font-weight: 700;
}

.refund-note {
  max-width: 28rem;
  margin-top: 0.85rem;
  font-size: 0.95rem;
}

.hero-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.hero-visual {
  width: 100%;
  height: auto;
  opacity: 1;
}

.section-pad {
  padding: 4.8rem 1rem;
  background: var(--white);
}

.acquisition-gap,
.results,
.why,
.final-cta {
  background: var(--page);
}

.split-layout,
.demo-layout,
.faq-layout {
  display: grid;
  gap: 2rem;
}

.section-heading {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.section-lede {
  max-width: 34rem;
  margin-top: 1rem;
  font-size: 1.04rem;
  font-weight: 600;
}

.section-copy {
  display: grid;
  gap: 0.85rem;
  max-width: 35rem;
  font-size: 1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 0.25rem;
  color: var(--blue);
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 2rem;
  height: 1px;
  margin-left: 0.6rem;
  background: var(--gold);
}

.text-link:hover {
  color: var(--dark-blue);
}

.steps,
.results-grid,
.plan-grid {
  display: grid;
  gap: 1rem;
}

.step-card,
.result-card,
.plan-card,
.demo-panel,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.step-card,
.result-card,
.plan-card {
  padding: 1.2rem;
}

.step-card {
  display: grid;
  gap: 1rem;
  min-height: 12.5rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid rgba(30, 144, 255, 0.35);
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--dark-blue);
  font-size: 0.9rem;
  font-weight: 800;
}

.section-action {
  margin-top: 1.5rem;
}

.result-card {
  display: grid;
  gap: 0.8rem;
  min-height: 10.5rem;
}

.result-highlight {
  border-color: rgba(30, 144, 255, 0.42);
  box-shadow: var(--shadow);
}

.muted-card {
  background: var(--page);
}

.result-label,
.plan-kicker,
.includes-title {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.demo {
  background: var(--white);
}

.demo-panel {
  padding: 1.25rem;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.price {
  color: var(--dark-blue);
  font-size: 3.3rem;
  line-height: 1;
  font-weight: 800;
}

.included {
  margin-top: 0.5rem;
  font-weight: 700;
}

.includes-title {
  margin-top: 1.5rem;
}

.check-list,
.benefit-list {
  display: grid;
  gap: 0.78rem;
}

.check-list {
  margin: 0.85rem 0 1.25rem;
}

.check-list li,
.benefit-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--muted);
}

.check-list li::before,
.benefit-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 800;
}

.refund-panel {
  margin-bottom: 1.25rem;
  padding: 0.9rem;
  border-left: 3px solid var(--gold);
  background: var(--soft-gold);
  font-size: 0.95rem;
}

.plan-card {
  display: grid;
  gap: 0.65rem;
  min-height: 12rem;
  align-content: start;
}

.plan-featured {
  border-color: rgba(30, 144, 255, 0.42);
  box-shadow: var(--shadow);
}

.plan-featured::before {
  content: "";
  width: 3rem;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
}

.plan-note {
  max-width: 42rem;
  margin-top: 1.3rem;
  font-weight: 600;
}

.why-copy {
  margin-top: 1.35rem;
}

.faq {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  overflow: hidden;
}

summary {
  cursor: pointer;
  min-height: 4rem;
  padding: 1.1rem 3rem 1.1rem 1.1rem;
  font-weight: 800;
  list-style: none;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 1.35rem;
}

details[open] summary::after {
  content: "-";
  color: var(--gold);
}

details p {
  padding: 0 1.1rem 0.75rem;
  color: var(--muted);
}

details p:last-child {
  padding-bottom: 1.2rem;
}

.final-cta {
  background: var(--dark-blue);
  color: var(--white);
}

.final-cta h2,
.final-cta .eyebrow,
.final-cta p {
  color: var(--white);
}

.final-cta .eyebrow {
  color: var(--blue);
}

.final-inner {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.final-inner p {
  max-width: 39rem;
}

.site-footer {
  padding: 2.5rem 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.26);
  background: var(--dark-blue);
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
  font-size: 0.92rem;
}

.footer-brand,
.footer-contact,
.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-brand span:first-child {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
}

.footer-contact {
  font-style: normal;
}

.footer-contact span,
.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover {
  color: var(--gold);
}

.copyright {
  color: rgba(255, 255, 255, 0.62);
}

@media (min-width: 44rem) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-inline: 2rem;
  }

  .brand {
    width: 9.25rem;
  }

  .header-nav {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.9rem;
    font-weight: 700;
  }

  .header-nav a:hover {
    color: var(--gold);
  }

  .hero,
  .section-pad {
    padding-inline: 2rem;
  }

  .hero {
    padding-top: 5.3rem;
    padding-bottom: 4.8rem;
  }

  .hero-grid,
  .split-layout,
  .demo-layout,
  .faq-layout {
    grid-template-columns: 0.94fr 1.06fr;
    align-items: start;
  }

  .section-pad {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  h1 {
    font-size: 4.45rem;
  }

  h2 {
    font-size: 3rem;
  }

  .steps,
  .results-grid,
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-panel {
    padding: 1.6rem;
  }

  .footer-inner {
    grid-template-columns: 1.3fr 0.7fr 0.8fr;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (min-width: 64rem) {
  .site-header,
  .hero,
  .section-pad,
  .site-footer {
    padding-inline: 3rem;
  }

  .hero-grid {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
  }

  h1 {
    font-size: 5.2rem;
  }

  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .results-grid,
  .plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .header-cta,
  .button,
  .text-link,
  .header-nav a,
  .footer-links a {
    transition: none;
  }

  .button:hover {
    transform: none;
  }
}
