:root {
  --navy: #1a202c;
  --navy-deep: #0b1220;
  --slate: #4a5568;
  --slate-soft: #64748b;
  --mist: #e2e8f0;
  --mist-light: #f8fafc;
  --line: #cbd5e1;
  --white: #ffffff;
  --good: #3f9d6b;
  --warn: #d89c3f;
  --info: #5b7fb8;
  --max: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy-deep);
  background: var(--mist-light);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  background: var(--white);
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 18, 32, 0.96);
  color: var(--white);
  border-bottom: 1px solid rgba(226, 232, 240, 0.2);
}

.nav-wrap,
.section-inner {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 2px solid var(--mist);
  transform: skewY(-6deg);
  font-weight: 900;
}

.brand span:last-child {
  line-height: 1.05;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(226, 232, 240, 0.35);
  background: transparent;
  color: var(--white);
  font: inherit;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.93rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(226, 232, 240, 0.14);
  outline: none;
}

.hero {
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
}

.hero-grid {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  min-height: clamp(420px, 58vh, 560px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
  padding: clamp(48px, 7vw, 80px) var(--gutter) clamp(40px, 5vw, 56px);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #b8c7da;
}

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

h1 {
  font-size: clamp(1.95rem, 1.1rem + 2.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.55rem, 1.05rem + 1.6vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.lead {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  max-width: 690px;
  color: #d8e0eb;
}

.hero-media {
  align-self: end;
}

.hero-media img {
  width: 100%;
  border: 1px solid rgba(226, 232, 240, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.button.secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.button.light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.button.ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}

.band {
  padding: 68px 0;
  background: var(--white);
}

.band.alt {
  background: var(--mist-light);
}

.band.dark {
  background: var(--navy);
  color: var(--white);
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head p,
.muted {
  color: var(--slate);
}

.dark .section-head p,
.dark .muted {
  color: #d8e0eb;
}

.outcome-strip {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding-inline: var(--gutter);
}

.outcome {
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

.outcome:first-child {
  padding-left: 0;
}

.outcome:last-child {
  padding-right: 0;
  border-right: 0;
}

.outcome strong {
  display: block;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.1;
  margin-bottom: 7px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.panel,
.price-panel,
.feature,
.faq-item,
.timeline-row {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.panel,
.price-panel,
.feature {
  padding: 22px;
}

.panel.dark-panel {
  background: #111827;
  border-color: rgba(226, 232, 240, 0.16);
  color: var(--white);
}

.price-panel.dark-panel {
  background: var(--white);
  color: var(--navy-deep);
}

.price-panel.dark-panel .muted,
.price-panel.dark-panel .price span {
  color: var(--slate);
}

.price-panel.dark-panel .button.light {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.price {
  display: flex;
  align-items: end;
  gap: 10px;
  margin: 12px 0 18px;
}

.price strong {
  font-size: 2.2rem;
  line-height: 1;
}

.price span {
  color: var(--slate);
  text-decoration: line-through;
}

.dark-panel .price span {
  color: #b8c7da;
}

.list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 2px;
  background: var(--navy);
}

.dark .list li,
.dark-panel .list li {
  border-color: rgba(226, 232, 240, 0.2);
}

.dark .list li::before,
.dark-panel .list li::before {
  background: var(--mist);
}

.product-shot {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.compare {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.compare th,
.compare td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare th {
  background: var(--navy);
  color: var(--white);
}

.compare tr:last-child td {
  border-bottom: 0;
}

.timeline-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  overflow: hidden;
}

.timeline-row strong {
  padding: 16px;
  background: var(--navy);
  color: var(--white);
}

.timeline-row span {
  padding: 16px;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form label {
  font-weight: 750;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.75rem;
  font: inherit;
  background: var(--white);
}

.form-message {
  min-height: 24px;
  color: var(--slate);
}

.faq-item {
  padding: 20px;
}

.site-footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 36px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.small {
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 16px 16px;
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(226, 232, 240, 0.2);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: clamp(40px, 9vw, 56px);
  }

  .outcome-strip,
  .grid.two,
  .grid.three,
  .grid.four,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .outcome {
    padding-inline: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .outcome:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .compare {
    display: block;
    overflow-x: auto;
  }

  .timeline-row {
    grid-template-columns: 1fr;
  }
}
