@font-face {
  font-family: "NHaasGroteskTXPro";
  src: url("assets/fonts/NHaasGroteskTXPro-55Rg.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NHaasGroteskTXPro";
  src: url("assets/fonts/NHaasGroteskTXPro-65Md.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NHaasGroteskTXPro";
  src: url("assets/fonts/NHaasGroteskTXPro-75Bd.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy-950: #00092d;
  --navy-900: #00143c;
  --navy-800: #071d52;
  --blue-600: #0056e5;
  --blue-500: #2878fc;
  --blue-100: #e6effe;
  --blue-50: #f2f6fe;
  --ink: #0d1638;
  --text: #334363;
  --muted: #66728a;
  --line: #dee1e6;
  --paper: #ffffff;
  --soft: #f8f9fa;
  --yellow: #f9e215;
  --mint: #51d88a;
  --coral: #ff6b5f;
  --shadow: 0 18px 50px rgba(0, 20, 60, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--soft);
  font-family: "NHaasGroteskTXPro", Arial, sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  color: var(--paper);
  background: var(--blue-600);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--navy-950);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.promo {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  color: #ffffff;
  background: #aac1e9;
  font-size: 0.92rem;
  font-weight: 600;
}

.promo a {
  color: #0045c7;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.promo strong {
  margin-left: 0.4rem;
  padding: 0.35rem 0.65rem;
  border-radius: 5px;
  color: var(--navy-950);
  background: var(--yellow);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.promo-star {
  color: #ffb100;
  font-size: 1.6rem;
  line-height: 1;
}

.nav {
  width: min(100% - 2rem, var(--container));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

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

.nav-menu,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.nav-menu {
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-menu a,
.text-link {
  transition: color 160ms ease;
}

.nav-menu a:hover,
.text-link:hover {
  color: var(--paper);
}

.nav-actions {
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 600;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.35rem;
  border: 0;
  border-radius: 6px;
  color: var(--paper);
  background: var(--blue-600);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 10px 22px rgba(0, 86, 229, 0.22);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--blue-500);
  box-shadow: 0 14px 28px rgba(0, 86, 229, 0.28);
}

.button-small {
  min-height: 40px;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
}

.button-secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.section-dark {
  color: var(--paper);
  background: var(--navy-950);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.4rem 0 4.5rem;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 76px;
  background: var(--soft);
  clip-path: polygon(0 72%, 24% 32%, 54% 54%, 100% 8%, 100% 100%, 0 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--blue-100);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  color: var(--paper);
  font-size: 4.05rem;
  line-height: 0.96;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 545px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.hero-media {
  position: relative;
  margin-bottom: 1.5rem;
}

.hero-media img {
  width: 100%;
  filter: drop-shadow(0 34px 46px rgba(0, 0, 0, 0.32));
}

.rating-strip {
  width: min(100% - 2rem, 1040px);
  margin: -0.8rem auto 0;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem 0 2.4rem;
}

.primary-metric {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.75rem;
  align-items: center;
}

.metric-icon {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--paper);
  background: var(--navy-900);
  font-size: 1.4rem;
  font-weight: 700;
}

.metric strong {
  color: var(--navy-950);
  font-size: 1.6rem;
  line-height: 1;
}

.metric span:last-child {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.rating-item img {
  max-height: 46px;
  margin: 0 auto;
  object-fit: contain;
}

.section {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
  padding: 4.5rem 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.section-heading h2,
.soft-cta h2,
.stats h2,
.faq h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.45rem;
  line-height: 1.07;
}

.section-heading p,
.soft-cta p {
  margin: 0.9rem auto 0;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.feature-card,
.review-card,
.product-previews article {
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(0, 20, 60, 0.06);
}

.feature-card {
  min-height: 292px;
  padding: 1.1rem;
}

.feature-card img {
  width: 100%;
  height: 112px;
  object-fit: contain;
  margin-bottom: 1.15rem;
  border-radius: 6px;
  background: var(--blue-50);
}

.feature-card h3,
.channel-grid h3,
.product-previews h3,
.review-card h3 {
  margin: 0 0 0.45rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}

.feature-card p,
.channel-grid p,
.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.soft-cta {
  width: min(100% - 2rem, 1040px);
  margin: 1rem auto 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 3rem;
  border-radius: 8px;
  background: var(--blue-100);
}

.soft-cta h2 {
  font-size: 1.55rem;
}

.soft-cta p {
  max-width: 640px;
  margin-left: 0;
}

.channels {
  padding-top: 3.5rem;
}

.channel-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.2rem;
  align-items: center;
}

.channel-showcase {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #2878fc 0%, #0056e5 100%);
  overflow: hidden;
}

.channel-showcase img {
  width: 94%;
  max-height: 470px;
  object-fit: contain;
}

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

.channel-grid article {
  min-height: 150px;
}

.channel-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
  border-radius: 8px;
  color: var(--paper);
  font-weight: 700;
}

.channel-icon.blue {
  background: var(--blue-600);
}

.channel-icon.cyan {
  background: #35b8ff;
}

.channel-icon.navy {
  background: var(--navy-800);
}

.channel-icon.green {
  background: #21bf73;
}

.channel-icon.yellow {
  color: var(--navy-950);
  background: var(--yellow);
}

.channel-icon.red {
  background: var(--coral);
}

.product-band {
  margin-top: 2rem;
  padding: 5rem 0;
}

.product-band-inner {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.section-heading.inverted h2,
.section-heading.inverted p {
  color: var(--paper);
}

.section-heading.inverted p {
  color: rgba(255, 255, 255, 0.72);
}

.product-previews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-previews article {
  min-height: 270px;
  padding: 1rem;
}

.product-previews img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: 6px;
  background: var(--blue-50);
}

.stats {
  padding: 5rem 1rem;
  background: #9a9a9a;
  color: var(--paper);
  text-align: center;
}

.stats h2 {
  max-width: 560px;
  margin: 0 auto;
  color: var(--paper);
}

.stats-grid {
  width: min(100%, 900px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  margin: 2rem auto 0;
}

.stats-grid strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 3rem;
  line-height: 1;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.reviews {
  padding-bottom: 5.5rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.review-card {
  min-height: 320px;
  padding: 1.6rem;
  text-align: center;
}

.avatar {
  width: 54px;
  height: 54px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  object-fit: cover;
}

.stars {
  width: 118px;
  height: 20px;
  margin: 0.65rem auto 1rem;
  object-fit: contain;
}

.source {
  max-width: 116px;
  max-height: 34px;
  margin: 1.1rem auto 0;
  object-fit: contain;
}

.faq {
  padding: 5.5rem 1rem;
}

.faq-panel {
  width: min(100%, 1040px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 4rem;
  padding: 3.2rem;
  border-radius: 8px;
  background: #064ec6;
}

.faq h2 {
  color: var(--paper);
}

.faq details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.95rem 0;
}

.faq details:first-child {
  padding-top: 0;
}

.faq summary {
  color: var(--paper);
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
}

.faq summary::marker {
  color: var(--yellow);
}

.faq p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.4rem;
  padding: 5rem 1rem;
  text-align: center;
}

.final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 9, 45, 0.66);
}

.final-cta h2,
.final-cta .button {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  color: var(--paper);
  font-size: 3.2rem;
}

.footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-950);
}

.footer-grid {
  width: min(100% - 2rem, var(--container));
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 5rem;
  margin: 0 auto;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  width: 112px;
  margin-bottom: 1rem;
}

.footer p {
  max-width: 320px;
  margin: 0;
}

.footer h2 {
  margin: 0 0 0.9rem;
  color: var(--paper);
  font-size: 1rem;
}

.footer a {
  display: block;
  margin: 0.35rem 0;
  transition: color 160ms ease;
}

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

.footer-bottom {
  width: min(100% - 2rem, var(--container));
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto;
  font-size: 0.86rem;
}

@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

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

  .hero-media {
    max-width: 820px;
  }

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

  .channel-layout,
  .faq-panel {
    grid-template-columns: 1fr;
  }

  .faq-panel {
    gap: 2rem;
  }
}

@media (max-width: 860px) {
  .promo {
    flex-wrap: wrap;
    font-size: 0.82rem;
  }

  .nav {
    min-height: 68px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-menu,
  .nav-actions {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
  }

  .nav-menu.is-open,
  .nav-actions.is-open {
    display: grid;
    gap: 0;
  }

  .nav-menu a,
  .nav-actions a {
    padding: 0.9rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-actions {
    padding-bottom: 1rem;
  }

  .nav-actions .button {
    width: 100%;
  }

  .hero {
    padding: 4rem 0 3.5rem;
  }

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

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

  .primary-metric {
    grid-column: 1 / -1;
    width: fit-content;
    margin: 0 auto;
  }

  .soft-cta,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .soft-cta {
    padding: 1.5rem;
  }

  .soft-cta .button {
    width: 100%;
  }

  .product-previews,
  .stats-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 2rem;
  }
}

@media (max-width: 620px) {
  .section,
  .reviews {
    padding: 3.4rem 0;
  }

  .section-heading h2,
  .stats h2,
  .faq h2,
  .final-cta h2 {
    font-size: 2rem;
  }

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

  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .channel-showcase {
    min-height: 360px;
  }

  .faq-panel {
    padding: 1.4rem;
  }

  .stats-grid {
    gap: 1.7rem;
  }

  .stats-grid strong {
    font-size: 2.35rem;
  }
}
