:root {
  --navy: #071a33;
  --navy-2: #0d2c55;
  --blue: #1e63ff;
  --cyan: #51d6ff;
  --mint: #bdf7d2;
  --ink: #101827;
  --muted: #5b677a;
  --paper: #f6f8fb;
  --white: #ffffff;
  --line: #dbe3ee;
  --shadow: 0 24px 70px rgba(7, 26, 51, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.top-strip {
  padding: 10px 22px;
  background: var(--navy);
  color: var(--mint);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.top-strip p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(246, 248, 251, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  color: var(--navy);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: 0;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: #25364f;
  font-size: 15px;
  font-weight: 750;
}

nav a,
.site-footer a,
.legal-page a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
}

nav a:hover,
.site-footer a:hover,
.legal-page a:hover {
  text-decoration-color: currentColor;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  border: 1px solid var(--navy);
  border-radius: 8px;
  font-weight: 900;
}

.nav-cta,
.button.primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 10px 24px rgba(30, 99, 255, 0.24);
}

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

.button.wide {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  min-height: calc(100vh - 103px);
  padding: clamp(72px, 9vw, 122px) clamp(22px, 6vw, 78px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 26, 51, 0.96), rgba(7, 26, 51, 0.82) 48%, rgba(13, 44, 85, 0.7)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero-copy {
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.pricing-hero .eyebrow,
.contact-hero .eyebrow,
.proof-card .eyebrow {
  color: var(--cyan);
}

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

h1 {
  max-width: 920px;
  margin-bottom: 26px;
  font-size: clamp(46px, 7.3vw, 98px);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(34px, 4.9vw, 66px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 21px;
}

.lead {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.24;
}

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

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

.hero-points li {
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 850;
}

.hero-panel {
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-top {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.panel-top span {
  width: 12px;
  height: 12px;
  background: var(--cyan);
  border-radius: 50%;
}

.panel-top span:nth-child(2) {
  background: var(--mint);
}

.panel-top span:nth-child(3) {
  background: var(--blue);
}

.assistant-card,
.panel-grid div,
.feature-grid article,
.steps article,
.access-list article,
.price-card,
.proof-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.assistant-card {
  padding: 22px;
  margin-bottom: 14px;
}

.assistant-card small,
.panel-grid small,
.price-note,
.site-footer small {
  color: var(--muted);
}

.assistant-card strong,
.panel-grid strong {
  display: block;
  color: var(--navy);
}

.assistant-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.panel-grid div {
  padding: 16px;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.logo-strip span {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-right: 1px solid var(--line);
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

.logo-strip span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(22px, 6vw, 78px);
}

.two-column,
.product-story,
.proof-section,
.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.stack {
  display: grid;
  gap: 22px;
  color: #26344a;
  font-size: clamp(19px, 2vw, 25px);
}

.stack p {
  margin: 0;
}

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

.section-heading {
  max-width: 880px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
}

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

.feature-grid article,
.steps article,
.access-list article {
  min-height: 210px;
  padding: 26px;
}

.feature-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 950;
}

.feature-grid p,
.steps p,
.access-list p,
.proof-card p {
  margin: 0;
  color: var(--muted);
}

.product-story {
  background: #edf3fb;
}

.product-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 21px;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
}

.access-band {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 86px);
  background: var(--navy);
  color: var(--white);
}

.access-band h2,
.proof-card h2 {
  color: var(--white);
}

.access-list {
  display: grid;
  gap: 16px;
}

.access-list article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.access-list h3 {
  color: var(--white);
}

.access-list p {
  color: rgba(255, 255, 255, 0.78);
}

.proof-section {
  align-items: center;
}

.proof-card {
  padding: clamp(30px, 5vw, 54px);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow);
}

.proof-list,
.tick-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(18px, 2vw, 23px);
}

.proof-list li,
.tick-list li {
  position: relative;
  padding-left: 30px;
}

.proof-list li::before,
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 12px;
  background: var(--blue);
  border-radius: 50%;
}

.cta-section {
  text-align: center;
}

.cta-section h2,
.cta-section p {
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  max-width: 680px;
  color: var(--muted);
  font-size: 23px;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 24px 0;
  color: var(--navy);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 950;
}

details p {
  max-width: 820px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 19px;
}

.pricing-hero,
.contact-hero {
  min-height: 56vh;
  padding: 120px clamp(22px, 6vw, 78px) 90px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 26, 51, 0.94), rgba(13, 44, 85, 0.76)),
    url("https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.price-card {
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow);
}

.price-line {
  display: flex;
  align-items: end;
  gap: 10px;
  margin: 26px 0 16px;
}

.currency {
  padding-bottom: 16px;
  color: var(--navy);
  font-size: 38px;
  font-weight: 950;
}

.blank-price {
  width: min(260px, 48vw);
  height: 86px;
  border-bottom: 8px solid var(--navy);
}

.per {
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 22px;
  font-weight: 850;
}

.included {
  padding-top: 14px;
}

.legal-page {
  max-width: 1000px;
  padding: 80px clamp(22px, 6vw, 78px) 112px;
}

.legal-page h1 {
  color: var(--navy);
  font-size: clamp(42px, 7vw, 84px);
}

.legal-page h2 {
  margin-top: 46px;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 46px);
}

.legal-page p,
.legal-page li {
  color: #26344a;
  font-size: 19px;
}

.legal-page ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(22px, 6vw, 78px);
  background: var(--navy);
  color: var(--white);
}

.site-footer p {
  margin: 0 0 4px;
  font-weight: 950;
}

.site-footer small {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  nav {
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-cta {
    justify-self: start;
  }

  .hero,
  .two-column,
  .product-story,
  .proof-section,
  .pricing-layout,
  .access-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .panel-grid {
    grid-template-columns: 1fr;
  }

  .logo-strip {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 42px;
  }
}
