:root {
  --background: #f6f8fc;
  --foreground: #102b65;
  --navy: #132544;
  --blue: #1645ab;
  --red: #ff1f1f;
  --green: #25c15a;
  --text-soft: #5f7092;
  --line: rgba(16, 43, 101, 0.12);
  --card: rgba(255, 255, 255, 0.86);
  --shadow: 0 32px 90px rgba(17, 44, 99, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--foreground);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(22, 69, 171, 0.16), transparent 38%),
    radial-gradient(circle at 20% 15%, rgba(255, 31, 31, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f3f7ff 60%, #eef3fb 100%);
}

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

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

.site-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 72px;
}

.topbar {
  padding: 10px 18px;
  border-radius: 18px;
  background: linear-gradient(90deg, #092147, #1645ab);
  color: white;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 20;
  margin-top: 16px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 43, 101, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(17, 44, 99, 0.1);
}

.brand-lockup,
.nav-links,
.nav-actions,
.footer-brand,
.footer-meta {
  display: flex;
  align-items: center;
}

.brand-lockup {
  gap: 12px;
}

.brand-lockup img {
  width: 48px;
}

.brand-lockup strong,
.footer-brand strong,
.hero-copy h1,
.section-heading h2,
.cta-panel h2,
.info-card h3,
.plan-card h3 {
  font-family: "Space Grotesk", sans-serif;
}

.brand-lockup strong,
.footer-brand strong {
  display: block;
  font-size: 1.2rem;
}

.brand-lockup span,
.footer-brand span,
.footer-meta span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.nav-links {
  gap: 16px;
  font-weight: 800;
  color: #294770;
}

.nav-actions {
  gap: 14px;
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(16, 43, 101, 0.12);
  color: var(--blue);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.72);
}

.compact {
  min-height: 48px;
  padding: 0 22px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 120px);
  position: relative;
  padding: 42px;
  margin-top: 26px;
  border-radius: 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 49, 49, 0.18), transparent 18%),
    radial-gradient(circle at 82% 20%, rgba(53, 152, 255, 0.24), transparent 22%),
    linear-gradient(135deg, #061327 0%, #0c1f45 44%, #1645ab 100%);
  box-shadow: 0 36px 90px rgba(8, 23, 57, 0.28);
}

.hero-eyebrow,
.card-label {
  display: flex;
  gap: 12px;
  align-items: center;
  text-transform: uppercase;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--blue);
}

.hero-eyebrow span {
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: var(--red);
}

.hero-copy h1 {
  margin: 24px 0 20px;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  line-height: 0.93;
  max-width: 8ch;
  letter-spacing: -0.04em;
  color: white;
}

.hero-copy h1 strong {
  color: var(--red);
}

.hero-kicker-line {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.98rem !important;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.hero-copy p,
.section-heading p,
.info-card p,
.faq-item p,
.app-copy p,
.service-card span {
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-copy > p {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 28px;
  border-radius: 22px;
  background: var(--green);
  color: white;
  font-size: 1.08rem;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(37, 193, 90, 0.28);
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  min-height: 62px;
  padding: 0 4px;
  color: var(--blue);
  font-weight: 800;
  border-bottom: 2px solid rgba(22, 69, 171, 0.24);
}

.hero-benefits {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-benefits span,
.plan-card li,
.info-card li {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.hero-benefits span::before,
.plan-card li::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 999px;
  flex: none;
  background:
    radial-gradient(circle at 50% 50%, #2fb95f 0 24%, transparent 25%),
    linear-gradient(135deg, rgba(47, 185, 95, 0.12), rgba(47, 185, 95, 0.22));
}

.hero-stats,
.service-grid,
.plans-grid,
.faq-grid,
.social-grid,
.audience-grid,
.info-grid {
  display: grid;
  gap: 18px;
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.hero-stats article,
.service-card,
.app-card,
.social-card,
.audience-card,
.plan-card,
.info-card,
.faq-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-stats article,
.audience-card,
.info-card,
.faq-item,
.service-card,
.social-card,
.app-card {
  border-radius: 24px;
  padding: 22px;
}

.hero-stats strong {
  display: block;
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.75;
}

.hero-orb-one {
  width: 220px;
  height: 220px;
  top: 40px;
  right: 40px;
  background: radial-gradient(circle, rgba(56, 171, 255, 0.48), transparent 65%);
}

.hero-orb-two {
  width: 180px;
  height: 180px;
  bottom: 80px;
  left: 10px;
  background: radial-gradient(circle, rgba(255, 43, 43, 0.24), transparent 70%);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 6% -8% 2% 0;
  border-radius: 40px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(230, 238, 255, 0.72)),
    radial-gradient(circle at right, rgba(17, 48, 122, 0.08), transparent 55%);
}

.hero-panel {
  width: min(100%, 570px);
  min-height: 490px;
  border-radius: 42px 42px 118px 42px;
  background: linear-gradient(180deg, rgba(7, 15, 34, 0.92) 0%, rgba(19, 37, 68, 0.94) 100%);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 54px;
  border: 1px solid rgba(112, 170, 255, 0.18);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 30px 30px 104px 30px;
  border: 1px solid rgba(125, 183, 255, 0.14);
  pointer-events: none;
}

.hero-logo {
  width: 100%;
  object-fit: contain;
}

.floating-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 18px;
  align-items: center;
  min-width: 330px;
  padding: 24px 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 45px rgba(18, 41, 87, 0.16);
}

.hero-mini-stack {
  position: absolute;
  left: -8px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  gap: 14px;
  width: 250px;
}

.hero-mini-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(18, 41, 87, 0.16);
}

.hero-mini-card strong {
  display: block;
  color: var(--navy);
}

.hero-mini-card span {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  line-height: 1.45;
}

.badge-top {
  top: 64px;
  left: 12px;
}

.badge-bottom {
  right: -16px;
  bottom: 106px;
}

.badge-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(180deg, #e8f0ff, #dfeafe);
  position: relative;
}

.badge-icon::after {
  content: "";
  position: absolute;
  inset: 25px 21px;
  background: var(--blue);
  clip-path: polygon(0 54%, 36% 54%, 36% 24%, 100% 45%, 60% 45%, 60% 76%);
}

.badge-outline::after {
  inset: 18px;
  border-radius: 999px;
  border: 2px solid var(--blue);
  background: transparent;
  clip-path: none;
}

.floating-badge strong {
  display: block;
  color: var(--blue);
  font-size: 1.1rem;
}

.floating-badge span {
  color: var(--text-soft);
}

.audience-band,
.plans-section,
.info-grid,
.services-section,
.app-showcase,
.faq-section,
.social-section,
.cta-panel,
.regional-band,
.journey-band {
  margin-top: 76px;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.impact-card,
.spotlight-band,
.spotlight-metrics article {
  border: 1px solid rgba(16, 43, 101, 0.12);
  box-shadow: var(--shadow);
}

.impact-card {
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(232, 240, 255, 0.86));
}

.impact-card p {
  margin: 0 0 14px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

.impact-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  line-height: 1.05;
  color: var(--navy);
}

.impact-card span {
  display: block;
  margin-top: 14px;
  color: var(--text-soft);
  line-height: 1.65;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.section-heading h2,
.cta-panel h2,
.app-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.audience-pills {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
}

.audience-pills span {
  padding: 14px 28px;
  border-radius: 20px;
  border: 1px solid rgba(16, 43, 101, 0.14);
  color: var(--text-soft);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.72);
}

.audience-pills .active {
  background: white;
  color: var(--blue);
}

.audience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.audience-card-dark {
  background: linear-gradient(180deg, #193057, #102447);
  color: white;
}

.audience-card-dark p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

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

.plan-card {
  border-radius: 34px;
  padding: 30px;
}

.plan-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% 35%;
  height: 180px;
  background: radial-gradient(circle, rgba(22, 69, 171, 0.1), transparent 68%);
}

.plan-card-featured {
  background: linear-gradient(180deg, #1645ab, #112d72);
  color: white;
  transform: translateY(-10px);
}

.plan-card-featured .plan-chip,
.plan-card-featured .plan-tagline,
.plan-card-featured .plan-name,
.plan-card-featured li,
.plan-card-featured .plan-price {
  color: white;
}

.plan-chip {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(22, 69, 171, 0.09);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.plan-card h3 {
  margin: 22px 0 6px;
  font-size: 3rem;
  letter-spacing: -0.05em;
}

.plan-name,
.plan-price {
  margin: 0;
  font-weight: 800;
}

.plan-price {
  font-size: 1.28rem;
}

.plan-tagline {
  font-size: 1rem;
  color: var(--text-soft);
}

.plan-card ul,
.info-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.info-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.info-card a,
.app-links a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 800;
}

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

.service-card {
  text-align: center;
}

.service-card strong,
.social-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  color: var(--blue);
}

.app-showcase {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 26px;
  align-items: stretch;
}

.spotlight-band {
  margin-top: 42px;
  border-radius: 34px;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 50, 50, 0.16), transparent 22%),
    linear-gradient(135deg, #08162e, #103671 68%, #1b56cc);
  color: white;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}

.spotlight-copy h2 {
  margin: 10px 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 3.6rem);
  line-height: 0.98;
}

.spotlight-copy p:last-child {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  line-height: 1.75;
}

.spotlight-copy .card-label {
  color: rgba(255, 255, 255, 0.78);
}

.spotlight-metrics {
  display: grid;
  gap: 14px;
}

.spotlight-metrics article {
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
}

.spotlight-metrics strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
}

.spotlight-metrics span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.regional-grid,
.journey-steps {
  display: grid;
  gap: 18px;
}

.regional-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.regional-card,
.journey-steps article {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.regional-card {
  border-radius: 28px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(231, 239, 255, 0.84)),
    radial-gradient(circle at top right, rgba(255, 31, 31, 0.08), transparent 28%);
}

.regional-card h3,
.journey-copy h2 {
  margin: 10px 0 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.regional-card h3 {
  font-size: 1.7rem;
  line-height: 1.02;
  color: var(--navy);
}

.regional-card span,
.journey-copy p:last-child {
  display: block;
  margin-top: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

.journey-band {
  border-radius: 34px;
  padding: 34px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 31, 31, 0.1), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(223, 234, 254, 0.88));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
}

.journey-copy h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.98;
}

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

.journey-steps article {
  border-radius: 26px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
}

.journey-steps strong {
  display: block;
  color: var(--red);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.1rem;
}

.journey-steps span {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.5;
}

.app-copy,
.cta-panel {
  border-radius: 34px;
  padding: 34px;
}

.app-copy {
  background: linear-gradient(135deg, #0b234c, #1645ab 68%, #2a88ff);
  color: white;
  box-shadow: 0 36px 80px rgba(17, 44, 99, 0.2);
}

.app-copy p,
.app-copy .card-label {
  color: rgba(255, 255, 255, 0.82);
}

.app-copy .secondary-cta {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.28);
}

.app-logo {
  width: 100%;
  border-radius: 28px;
  background: linear-gradient(180deg, #132544, #0b1933);
  padding: 24px;
}

.app-links {
  display: grid;
  gap: 12px;
}

.app-links a,
.social-card {
  border-radius: 18px;
  padding: 18px 20px;
  font-weight: 800;
}

.app-links a {
  background: rgba(22, 69, 171, 0.06);
}

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

.faq-item summary {
  font-weight: 800;
  cursor: pointer;
}

.cta-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(228, 237, 255, 0.82)),
    radial-gradient(circle at top right, rgba(255, 31, 31, 0.12), transparent 28%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  color: var(--text-soft);
}

.footer-brand {
  gap: 16px;
}

.footer-brand img {
  width: 56px;
}

.footer-meta {
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .hero,
  .info-grid,
  .cta-panel,
  .app-showcase {
    grid-template-columns: 1fr;
    display: grid;
  }

  .plans-grid,
  .faq-grid,
  .audience-grid,
  .social-grid,
  .impact-strip,
  .regional-grid,
  .journey-steps {
    grid-template-columns: 1fr;
  }

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

  .spotlight-band {
    grid-template-columns: 1fr;
  }

  .journey-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 20px, 1200px);
  }

  .site-nav,
  .nav-actions,
  .nav-links,
  .site-footer,
  .footer-meta,
  .hero-actions,
  .cta-actions,
  .hero-benefits,
  .audience-pills {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
    padding: 24px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-panel {
    min-height: 320px;
    padding: 26px;
    border-radius: 28px 28px 86px 28px;
  }

  .floating-badge {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 12px;
  }

  .hero-mini-stack {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .primary-cta,
  .secondary-cta,
  .ghost-link {
    width: 100%;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }
}
