:root {
  --blue-950: #002452;
  --blue-900: #003b86;
  --blue-800: #004aad;
  --blue-700: #004aad;
  --blue-600: #1f67c8;
  --blue-100: #e7f0ff;
  --blue-050: #f5f9ff;
  --cyan-500: #004aad;
  --green-500: #004aad;
  --amber-500: #004aad;
  --ink: #102033;
  --muted: #5b6d82;
  --line: #d8e6fb;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 74, 173, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.top-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 48px;
  padding: 10px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: var(--blue-800);
  text-align: center;
}

.top-message p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 650;
}

.top-message strong {
  font-weight: 900;
}

.offer-countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.offer-countdown span {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}

.offer-countdown strong {
  font-variant-numeric: tabular-nums;
}

.offer-countdown.compact {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
  font-weight: 800;
}

.top-message a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  color: var(--blue-900);
  border-radius: 8px;
  background: var(--white);
  font-size: 0.84rem;
  font-weight: 900;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  min-height: 86px;
  padding: 10px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 230, 251, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(270px, 28vw, 390px);
}

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

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 3vw, 34px);
  color: var(--blue-900);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: min(760px, 76svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--blue-950);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 36, 82, 0.94) 0%, rgba(0, 74, 173, 0.78) 42%, rgba(0, 74, 173, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 36, 82, 0.32), rgba(0, 74, 173, 0.04));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding: clamp(46px, 7vw, 82px) 0;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-lede {
  margin: 20px 0 0;
  max-width: 680px;
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
  line-height: 1.18;
  font-weight: 750;
}

.hero-copy {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.96rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--blue-700);
  box-shadow: 0 12px 28px rgba(0, 74, 173, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-800);
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.16);
}

.button-light {
  color: var(--blue-900);
  border-color: rgba(255, 255, 255, 0.72);
  background: var(--white);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.metric-strip div {
  min-height: 104px;
  padding: 22px;
  background: var(--white);
}

.metric-strip strong,
.metric-strip span {
  display: block;
}

.metric-strip strong {
  color: var(--blue-900);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.metric-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

section {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 4vw, 56px);
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

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

.section-heading h2,
.cta-section h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.split-section {
  background: linear-gradient(180deg, var(--blue-050), var(--white));
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.text-panel {
  min-height: 320px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.text-panel-blue {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
}

.text-panel h3 {
  margin: 0 0 16px;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.text-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.text-panel p + p {
  margin-top: 16px;
}

.text-panel-blue p {
  color: rgba(255, 255, 255, 0.86);
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.feature-card {
  min-height: 276px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), var(--blue-050));
  box-shadow: 0 14px 36px rgba(0, 74, 173, 0.07);
}

.feature-card:nth-child(2) .feature-number,
.feature-card:nth-child(5) .feature-number {
  background: rgba(0, 74, 173, 0.12);
  color: var(--blue-800);
}

.feature-card:nth-child(3) .feature-number,
.feature-card:nth-child(6) .feature-number {
  background: rgba(0, 74, 173, 0.12);
  color: var(--blue-800);
}

.feature-number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 32px;
  margin-bottom: 22px;
  color: var(--blue-700);
  background: rgba(0, 74, 173, 0.1);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-card h3,
.reason-list h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.28rem;
  line-height: 1.2;
}

.feature-card p,
.reason-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.product-section {
  background: linear-gradient(180deg, var(--blue-050), var(--white));
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.product-shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(0, 74, 173, 0.07);
}

.product-shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: var(--blue-050);
}

.product-shot div {
  padding: 22px;
}

.product-shot h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.24rem;
  line-height: 1.2;
}

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

.why-section {
  background: var(--blue-050);
}

.reason-list {
  display: grid;
  gap: 12px;
  width: min(1000px, 100%);
  margin: 0 auto;
}

.reason-list article {
  display: grid;
  grid-template-columns: 64px minmax(180px, 260px) 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.reason-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.reason-list span {
  color: var(--cyan-500);
  font-weight: 900;
}

.reason-list p {
  margin-top: 0;
}

.audience-section {
  background: var(--white);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.audience-grid span {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: var(--blue-900);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--blue-050);
  font-weight: 800;
  text-align: center;
}

.pricing-section {
  background: linear-gradient(180deg, var(--blue-050), var(--white));
}

.pricing-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 28px;
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pricing-copy {
  align-self: center;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  color: var(--blue-900);
  border: 1px solid rgba(0, 74, 173, 0.28);
  border-radius: 999px;
  background: rgba(0, 74, 173, 0.1);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-copy h3 {
  margin: 18px 0 10px;
  color: var(--blue-950);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.pricing-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.pricing-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-copy li {
  position: relative;
  padding-left: 28px;
  color: var(--blue-900);
  font-weight: 750;
}

.pricing-copy li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--white);
  content: "✓";
  border-radius: 50%;
  background: var(--green-500);
  font-size: 0.78rem;
  font-weight: 900;
}

.price-box {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 340px;
  padding: 30px;
  color: var(--white);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 36, 82, 0.98), rgba(0, 74, 173, 0.96)),
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.18), transparent 32%);
}

.price-box span,
.price-box em {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-weight: 800;
}

.price-box strong {
  margin-top: 6px;
  font-size: clamp(4rem, 9vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.price-box p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.price-box small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.4;
}

.price-countdown {
  width: 100%;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.price-countdown span {
  min-width: 74px;
  justify-content: center;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 800;
}

.price-countdown strong {
  color: var(--white);
  font-size: 1.12rem;
}

.price-box del {
  color: rgba(255, 255, 255, 0.66);
}

.price-box .button {
  width: 100%;
  margin-top: 26px;
  background: var(--white);
  color: var(--blue-900);
  box-shadow: none;
}

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

.faq-list {
  display: grid;
  gap: 12px;
  width: min(920px, 100%);
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--blue-050);
}

.faq-list details[open] {
  background: var(--white);
  box-shadow: 0 14px 36px rgba(0, 74, 173, 0.08);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 20px 58px 20px 24px;
  color: var(--blue-950);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.25;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  right: 22px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--white);
  content: "+";
  border-radius: 50%;
  background: var(--blue-700);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 36, 82, 0.96), rgba(0, 74, 173, 0.92)),
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.18), transparent 34%);
}

.cta-section .eyebrow {
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
  max-width: 780px;
}

.cta-section p {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.legal-main {
  background: linear-gradient(180deg, var(--blue-050), var(--white) 320px);
}

.legal-hero {
  padding-bottom: 38px;
}

.legal-hero .section-heading {
  margin-bottom: 0;
}

.legal-hero h1 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.legal-hero p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-content {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto 80px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(0, 74, 173, 0.08);
}

.legal-content h2 {
  margin: 34px 0 10px;
  color: var(--blue-950);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.2;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-note {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--blue-050);
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 32px clamp(20px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--blue-950);
}

.site-footer strong,
.site-footer span,
.site-footer a {
  display: block;
}

.site-footer strong {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 4px;
  text-align: right;
}

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

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 72svh;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(0, 36, 82, 0.94) 0%, rgba(0, 74, 173, 0.72) 100%);
  }

  .metric-strip,
  .split-grid,
  .feature-grid,
  .audience-grid,
  .product-gallery,
  .pricing-card,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .metric-strip {
    margin-top: 0;
    width: 100%;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .feature-card {
    min-height: auto;
  }

  .price-box {
    min-height: auto;
  }

  .reason-list article {
    grid-template-columns: 52px 1fr;
  }

  .reason-list p {
    grid-column: 2;
  }

  .cta-actions {
    margin-top: 0;
  }

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

  .footer-links {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .top-message {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .top-message a {
    justify-content: center;
  }

  .offer-countdown.compact {
    justify-content: center;
    flex-wrap: wrap;
  }

  .brand {
    width: 100%;
  }

  .brand-logo {
    width: min(330px, 100%);
  }

  .site-nav {
    gap: 10px;
    row-gap: 4px;
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 0.86rem;
    line-height: 1.2;
  }

  .site-nav a {
    padding: 7px 0;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  .hero h1 {
    font-size: 3rem;
  }

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

  section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .legal-content {
    width: calc(100% - 32px);
    margin-bottom: 56px;
  }

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