:root {
  --site-header-h: 72px;
  --bg: #f4f7fb;
  --surface: #ffffff;
  --ink: #111111;
  --muted: #4b5563;
  --line: #d7dce4;
  --accent: #0061d9;
  --accent-ink: #ffffff;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/roboto-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/roboto-latin-wght-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

/* Disable rubber-band bounce only on touch WebKit (iOS/iPadOS). */
@supports (-webkit-touch-callout: none) {
  @media (hover: none) and (pointer: coarse) {
    html,
    body {
      overscroll-behavior-y: none;
      overscroll-behavior-x: none;
    }
  }
}

body {
  margin: 0;
  padding-top: var(--site-header-h);
  font-family: "Roboto", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.45;
  -webkit-overflow-scrolling: touch;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-tight {
  padding: 3rem 0;
}

.product-proof {
  padding: 2.5rem 0;
}

.section-muted {
  background: #e9eef5;
}

.section-head {
  margin-bottom: 1.25rem;
}

.section-head h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand img {
  width: 126px;
  height: auto;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  color: #1f2937;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0.6rem;
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
}

.menu-toggle {
  margin-left: auto;
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 8px;
  border-radius: 8px;
}

.menu-toggle svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.no-wrap {
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: clip;
  background: #0d1b2a;
  color: #fff;
}

.hero-home {
  min-height: min(80vh, 760px);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-landing .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.33;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 9rem 0 7rem;
  max-width: 760px;
}

.hero-content-tight {
  padding: 6.5rem 0 5rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  font-size: 0.88rem;
  color: #d3def0;
  letter-spacing: 0;
  font-weight: 700;
}

.hero h1 {
  margin: 0 0 0.8rem;
  line-height: 1.1;
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  margin: 0 0 1.4rem;
  max-width: 64ch;
}

.hero .lead {
  color: #d6e1ee;
}

.support-line {
  margin: 0 0 1.4rem;
  color: #ffffff;
  font-weight: 500;
  opacity: 0.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-footnote {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  color: #d3def0;
}

.about-hero .hero-content {
  padding-top: 6.3rem;
}

.btn {
  border-radius: 8px;
  padding: 0.72rem 1rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn-quiet {
  border-color: #9eb5d5;
  color: #d7e2f2;
}

.product-video {
  width: 100%;
  border-radius: 8px;
  background: #0a0a0a;
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.inline-video {
  position: relative;
}

.inline-video-trigger {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
}

.inline-video-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inline-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.inline-video iframe.product-video {
  display: block;
  aspect-ratio: 16 / 9;
}

.video-subhead {
  margin: 0;
  color: var(--muted);
}

.product-proof .section-head {
  margin-bottom: 14px;
}

.video-caption {
  margin: 12px 0 0;
  color: var(--muted);
}

.video-section p {
  margin-bottom: 12px;
}

.video-section video {
  margin-top: 8px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.video-section .caption {
  opacity: 0.85;
  font-size: 0.95em;
}

.feature-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.feature h3,
.feature p {
  margin-inline: 1rem;
}

.feature h3 {
  margin-top: 1rem;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.feature p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--muted);
}

.feature-grid-compact .feature:nth-child(n + 5) {
  display: none;
}

.efb-complete {
  background: #ffffff;
}

.efb-complete .section-head h2 {
  font-size: clamp(1.35rem, 2.3vw, 1.75rem);
}

.pilot-voices {
  background: #eef2f7;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.coverage-grid-media {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.coverage-grid-featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.coverage-grid-archive {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.coverage-item {
  margin: 0;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.coverage-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
}

.coverage-link-placeholder {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.coverage-item-featured {
  min-height: 360px;
}

.coverage-link:hover {
  border-color: #b9c9dd;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.coverage-logo,
.coverage-thumb {
  width: 100%;
  height: 84px;
  object-fit: contain;
  border-radius: 6px;
  background: #f8fafc;
  margin: 0.2rem 0 0.55rem;
}

.coverage-thumb {
  object-fit: cover;
}

.coverage-thumb-placeholder {
  display: grid;
  place-items: center;
  color: #475569;
  font-size: 0.84rem;
  font-weight: 600;
  border: 1px dashed #b7c5d8;
}

.coverage-type {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 700;
}

.coverage-item h3 {
  margin: 0 0 0.1rem;
  font-size: 1rem;
  line-height: 1.25;
}

.coverage-item-featured h3 {
  font-size: 1.18rem;
}

.coverage-item-featured .coverage-thumb {
  height: auto;
  min-height: 220px;
  flex: 1 1 auto;
}

.coverage-year {
  margin: 0.2rem 0 0;
  color: #5b6675;
  font-size: 0.9rem;
}

.coverage-year-featured {
  margin-top: auto;
  font-size: 1.45rem;
  font-weight: 800;
  color: #1d4e89;
  letter-spacing: 0.01em;
}

.coverage-item-primary {
  border-color: #adc6eb;
  background: #f8fbff;
}

.voices-quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.voice-card {
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.voice-card p {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.voice-card cite {
  font-style: normal;
  color: #5b6675;
  font-size: 1rem;
}

.plans-hero-media {
  position: relative;
  height: clamp(300px, 48vw, 420px);
  overflow: hidden;
  background: #0f172a;
}

.plans-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  filter: saturate(1.02);
}

.plans-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #f8fbff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.plans-hero-content h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(2rem, 4.6vw, 3rem);
  line-height: 1.1;
}

.plans-hero-content p {
  margin: 0;
  font-size: clamp(1.12rem, 2.2vw, 1.45rem);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: start;
}

.plans-section {
  padding-top: 2.2rem;
  padding-bottom: 4.1rem;
  background: #efefef;
}

.plans-wrap {
  width: min(1040px, calc(100% - 2rem));
  margin-inline: auto;
}

.plan-card {
  position: relative;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  background: #f7f7f7;
  padding: 1.25rem 0.9rem 1rem;
  text-align: center;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.09);
}

.plan-title {
  margin: 0;
  font-size: 1.95rem;
  font-weight: 400;
}

.plan-price {
  margin: 0.85rem 0 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid #e4e4e4;
  line-height: 1.08;
  color: #111;
}

.plan-currency {
  font-size: 1.45rem;
  font-weight: 400;
  vertical-align: top;
  margin-right: 0.12rem;
}

.plan-number {
  font-size: 2.9rem;
  font-weight: 700;
}

.plan-unit {
  font-size: 1.05rem;
  color: #8d8d8d;
  margin-left: 0.22rem;
}

.plan-card p {
  margin: 0 0 0.8rem;
  color: #1f2937;
  font-size: 1rem;
  line-height: 1.44;
  padding: 0 0.7rem;
}

.plan-features {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #1f2937;
  line-height: 1.45;
}

.plan-features li {
  border-top: 1px solid #e2e2e2;
  padding: 0.72rem 0.5rem;
  font-size: 0.96rem;
}

.plan-features li::before {
  content: "✓";
  color: #476a8f;
  margin-right: 0.55rem;
  font-weight: 700;
}

.plan-card-primary {
  background: #f8f8f8;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-10px);
  z-index: 1;
}

.plan-note {
  margin-top: 0.8rem;
  color: #475569;
  font-size: 0.95rem;
}

.plan-regular-price {
  margin-top: -0.35rem;
  margin-bottom: 0.7rem;
  color: #64748b;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.plan-regular-strike {
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  opacity: 0.9;
}

.plan-ribbon {
  position: absolute;
  top: 20px;
  right: -42px;
  background: #3f6792;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.34rem 3rem;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(30, 58, 92, 0.28);
  opacity: 1;
  transform: rotate(45deg);
}

.plans-legal {
  margin: 1.6rem 0 0;
  text-align: center;
  color: #3f3f3f;
  font-size: 0.94rem;
}

.efb-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.efb-item {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 0.6rem;
}

.efb-item img {
  width: 100%;
  max-width: 384px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  grid-row: 1 / span 2;
}

.efb-item h3 {
  grid-column: 2;
  margin: 0 0 0.2rem;
  font-size: 1rem;
  line-height: 1.2;
}

.efb-item p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.3;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  margin-bottom: 1rem;
}

.proof-strip img {
  height: 52px;
  width: auto;
}

.quote-list {
  display: grid;
  gap: 0.75rem;
}

.quote-list blockquote {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.95rem 1rem;
  color: #334155;
}

.testimonials-band {
  background: #ffffff;
}

.testimonials-carousel {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fbff;
  padding: 1.25rem 3rem 2.75rem;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.is-active {
  display: block;
}

.testimonial-avatar {
  float: left;
  width: 52px;
  height: 52px;
  margin: 0.2rem 0.85rem 0.2rem 0;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid #c6d3e4;
  background: #fff;
}

.testimonial-slide blockquote {
  margin: 0;
  font-size: clamp(1.02rem, 2.2vw, 1.3rem);
  line-height: 1.45;
  color: #0f172a;
}

.testimonial-slide::after {
  content: "";
  display: table;
  clear: both;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid #b7c4d9;
  background: #ffffff;
  color: #1e293b;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.testimonial-prev {
  left: 0.95rem;
}

.testimonial-next {
  right: 0.95rem;
}

.testimonial-nav:hover {
  background: #e9f1ff;
  border-color: #8ea9cf;
}

.testimonial-indicators {
  position: absolute;
  left: 50%;
  bottom: 0.95rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
}

.testimonial-indicators button {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  border: 0;
  background: #9caebf;
  padding: 0;
  cursor: pointer;
}

.testimonial-indicators button.is-active {
  background: #0f172a;
}

.cta-band {
  position: relative;
  color: #f3f7ff;
  padding: 6.5rem 0;
  min-height: 520px;
  background-color: #0f172a;
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.30)),
    url("/assets/img/bg-footer-1.avif");
  background-size: 125% auto;
  background-position: center 56%;
  background-repeat: no-repeat;
}

.cta-band-about {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.36)),
    url("/assets/img/bg-footer-2.avif");
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.8rem;
  justify-content: center;
}

.store-badges img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
}

.qr-blocks {
  display: flex;
  gap: 0.85rem;
  margin-top: 1rem;
  align-items: flex-start;
  justify-content: center;
}

.qr-block {
  margin: 0;
  text-align: center;
}

.qr-block img {
  width: 132px;
  height: 132px;
  border-radius: 8px;
  border: 1px solid #374151;
  background: #fff;
}

.qr-block figcaption {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: #d0dae7;
}

.prose {
  max-width: 76ch;
}

.prose h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.prose h2 {
  margin: 1.6rem 0 0.5rem;
  font-size: 1.35rem;
}

.prose p,
.prose li {
  color: #1f2937;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 0.85rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .efb-feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .efb-item {
    grid-template-columns: minmax(0, 44%) minmax(0, 1fr);
  }

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

  .plans-section {
    padding-top: 1.5rem;
    padding-bottom: 2.4rem;
  }

  .plan-card-primary {
    transform: none;
  }

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

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

  .voices-quotes {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    padding: 0.6rem 1rem 0.95rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-content {
    padding-top: 6rem;
  }

  .coverage-grid-media {
    grid-template-columns: minmax(0, 1fr);
  }

  .coverage-grid-featured,
  .coverage-grid-archive {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.8rem 0;
  }

  .testimonials-carousel {
    padding: 1rem 1rem 2.35rem;
  }

  .testimonial-nav {
    display: none;
  }

  .efb-item {
    display: block;
  }

  .efb-item img {
    width: 100%;
    max-width: none;
    margin: 0 0 0.65rem;
  }

  .efb-item h3 {
    margin: 0 0 0.35rem;
  }

  .efb-item p {
    margin: 0;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .cta-band {
    padding: 5.5rem 0;
    min-height: 560px;
    background-size: cover;
    background-position: center center;
  }

  .qr-blocks {
    display: none;
  }

  .plans-hero-media {
    height: 300px;
  }

  .plans-hero-content h1 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .plans-hero-content p {
    width: min(92vw, 540px);
    font-size: 1.1rem;
  }

  .plan-card {
    padding: 1rem 0.85rem;
  }

  .plan-title {
    font-size: 1.35rem;
  }

  .plan-number {
    font-size: 2.4rem;
  }

  .plan-currency {
    font-size: 1.2rem;
  }

  .plan-unit {
    font-size: 1.2rem;
  }

  .plan-card p {
    font-size: 0.95rem;
  }

  .plan-features li {
    font-size: 0.9rem;
  }

  .plan-ribbon {
    right: -52px;
    top: 16px;
    font-size: 0.72rem;
  }
}
