:root {
  --bt-navy: #082739;
  --bt-bg-deep: #0c405c;
  --bt-bg-ocean: #4f7f96;
  --bt-bg-mist: #dff5ff;
  --bt-ink: #163041;
  --bt-ink-soft: #5d7483;
  --bt-white: #ffffff;
  --bt-line: rgba(255, 255, 255, 0.34);
  --bt-line-dark: rgba(22, 48, 65, 0.12);
  --bt-panel: rgba(255, 255, 255, 0.14);
  --bt-panel-strong: rgba(255, 255, 255, 0.14);
  --bt-panel-light: rgba(255, 255, 255, 0.94);
  --bt-mint: #8bd9ef;
  --bt-sky: #7ec5ea;
  --bt-accent: #d7edf7;
  --bt-shadow-soft: 0 18px 50px rgba(12, 64, 92, 0.12);
  --bt-shadow-hero: 0 40px 120px rgba(8, 39, 57, 0.24);
  --bt-radius-sm: 18px;
  --bt-radius-md: 28px;
  --bt-radius-lg: 38px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--bt-ink);
  background:
    radial-gradient(circle at 18% 4%, rgba(117, 240, 222, 0.16), transparent 20%),
    radial-gradient(circle at 82% 6%, rgba(122, 212, 255, 0.2), transparent 18%),
    linear-gradient(180deg, var(--bt-navy) 0%, var(--bt-bg-deep) 16%, var(--bt-bg-ocean) 48%, var(--bt-sky) 76%, var(--bt-bg-mist) 100%);
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 600;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-shell {
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: visible;
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(8, 39, 57, 0.92), rgba(11, 59, 86, 0.78));
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(7, 30, 44, 0.1);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.site-brand__mark {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 64px;
}

.site-brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.site-nav .menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav li {
  margin: 0;
}

.site-nav a,
.site-footer a {
  text-decoration: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 2px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(126, 197, 234, 0), rgba(167, 199, 216, 0.78), rgba(126, 197, 234, 0));
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.site-nav .current-menu-item a,
.site-nav .current_page_item a,
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--bt-white);
}

.site-nav .current-menu-item a::after,
.site-nav .current_page_item a::after,
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-menu {
  position: relative;
}

.lang-menu summary {
  list-style: none;
}

.lang-menu summary::-webkit-details-marker {
  display: none;
}

.lang-menu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 0 0 2px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.lang-menu__trigger::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.72);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.lang-menu[open] .lang-menu__trigger::after {
  transform: rotate(225deg) translateY(-1px);
}

.lang-menu__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 92px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(8, 39, 57, 0.96), rgba(18, 65, 88, 0.94));
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 44px rgba(7, 30, 44, 0.18);
}

.lang-menu__item {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lang-menu__item.is-current {
  color: var(--bt-white);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
}

.lang-menu__item:hover,
.lang-menu__item:focus-visible {
  color: var(--bt-white);
}

.site-header__cta,
.store-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.site-header__cta {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--bt-white);
}

.site-header__cta--glass {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 10px 30px rgba(7, 30, 44, 0.1);
}

.hero-shell,
.page-hero {
  padding: 92px 0 62px;
}

.hero-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid,
.page-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.97fr);
  gap: 54px;
  align-items: center;
}

.hero-grid::after,
.page-hero__grid::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 8px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), rgba(159, 220, 255, 0.06) 54%, transparent 72%);
  filter: blur(10px);
  pointer-events: none;
}

.eyebrow,
.section-kicker,
.site-footer__eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  color: #fdfefe;
  font-size: clamp(3.4rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-wrap: balance;
  text-shadow: 0 10px 34px rgba(4, 18, 29, 0.28);
}

.sub {
  max-width: 58ch;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.06rem;
  line-height: 1.8;
}

.store-links,
.cta-panel__actions,
.site-footer__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.store-btn,
.btn {
  min-height: 56px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  color: var(--bt-white);
}

.store-btn--light,
.btn-primary {
  color: var(--bt-ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(235, 246, 250, 0.92));
  border-color: rgba(24, 52, 69, 0.08);
}

.btn-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  color: var(--bt-white);
}

.store-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
}

.store-icon svg {
  width: 100%;
  height: 100%;
}

.site-header__cta:hover,
.site-header__cta:focus-visible,
.store-btn:hover,
.store-btn:focus-visible,
.btn:hover,
.btn:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  opacity: 0.96;
  transform: translateY(-1px);
}

.hero-metrics,
.page-stat-grid {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.hero-metrics--simple,
.page-stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-pill,
.cta-panel,
.prose--glass,
.plan-card,
.doc-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(16px);
  box-shadow: var(--bt-shadow-soft);
}

.metric-pill {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 24px;
}

.metric-pill strong {
  color: var(--bt-white);
  font-family: "GraphicLCG", "Manrope", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.metric-pill span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.6;
}

.metric-pill--page strong {
  color: var(--bt-ink);
}

.showcase,
.page-hero__visual {
  position: relative;
  min-height: 640px;
}

.page-hero__visual--single {
  min-height: 660px;
}

.glow {
  position: absolute;
  inset: 11% 12% 18%;
  border-radius: 44px;
  background:
    radial-gradient(circle at center, rgba(159, 220, 255, 0.34), transparent 56%),
    radial-gradient(circle at top, rgba(255,255,255,0.18), transparent 58%);
  filter: blur(18px);
}

.phone {
  position: absolute;
  overflow: hidden;
  width: min(274px, 72vw);
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  box-shadow: var(--bt-shadow-hero);
}

.phone.one {
  top: 2%;
  left: 11%;
  transform: rotate(-12deg);
}

.phone.two {
  top: 8%;
  right: 10%;
  width: min(244px, 66vw);
  transform: rotate(12deg);
}

.phone--page.one {
  top: 9%;
  right: 14%;
  transform: rotate(-7deg);
}

.phone--page.two {
  bottom: 7%;
  left: 9%;
  width: min(240px, 66vw);
  transform: rotate(7deg);
}

.page-hero__visual--single .phone--page.one {
  top: 7%;
  right: 19%;
  width: min(300px, 76vw);
  transform: rotate(9deg);
}

.section-shell {
  position: relative;
  padding: 56px 0 84px;
}

.section-shell::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
}

.section-shell:first-of-type::before {
  display: none;
}

.section-shell--soft {
  position: relative;
  backdrop-filter: blur(20px);
  margin-top: -46px;
}

.section-head {
  margin-bottom: 30px;
}

.section-head--center {
  text-align: center;
}

.section-head--center h2,
.site-footer__top h2 {
  margin: 0;
  color: var(--bt-white);
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-head--center::after {
  content: "";
  display: block;
  width: 104px;
  height: 1px;
  margin: 24px auto 0;
  background: linear-gradient(90deg, rgba(134,234,220,0), rgba(134,234,220,0.95), rgba(159,220,255,0));
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.glass-card {
  position: relative;
  overflow: hidden;
  padding: 28px 28px 26px;
  border-radius: var(--bt-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 38px rgba(8, 39, 57, 0.08);
}

.glass-card::before,
.plan-card::before {
  content: "";
  position: absolute;
  top: -34px;
  right: -24px;
  width: 120px;
  height: 120px;
  border-radius: 44px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.22), rgba(159,220,255,0.08) 58%, transparent 72%);
  transform: rotate(16deg);
}

.glass-card::after,
.plan-card::after {
  content: "";
  position: absolute;
  left: -16px;
  bottom: -26px;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(134, 234, 220, 0.14), transparent 70%);
}

.glass-card > *,
.plan-card > * {
  position: relative;
  z-index: 1;
}

.glass-card h2,
.glass-card h3,
.cta-panel p,
.page-hero__copy p,
.site-footer__top p {
  margin-top: 0;
}

.glass-card h2,
.glass-card h3 {
  color: var(--bt-white);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.glass-card h2 {
  font-size: 2rem;
}

.glass-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.78;
  font-size: 0.98rem;
}

.plan-grid {
  align-items: stretch;
}

.plan-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 100%;
  padding: 32px;
  border-radius: 32px;
}

.plan-card--featured {
  border-color: rgba(134, 234, 220, 0.36);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(134, 234, 220, 0.07));
  box-shadow: 0 28px 90px rgba(6, 31, 45, 0.18);
  transform: translateY(-8px);
}

.plan-card h2 {
  margin: 0;
  color: var(--bt-white);
  font-size: 2.1rem;
  line-height: 1;
}

.plan-card__price-wrap {
  display: grid;
  gap: 8px;
}

.plan-card__price {
  margin: 0;
  color: var(--bt-mint);
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.plan-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.76;
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--bt-mint), var(--bt-sky));
  box-shadow: 0 0 0 6px rgba(134, 234, 220, 0.1);
}

.cta-panel,
.prose--glass {
  padding: 36px;
  border-radius: 30px;
}

.prose--glass {
  color: var(--bt-ink);
  background: rgba(255, 255, 255, 0.8);
}

.site-footer {
  margin-top: 34px;
  padding: 0 0 32px;
}

.site-footer .wrap {
  padding: 24px 28px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(8, 39, 57, 0.94), rgba(19, 67, 91, 0.9));
  box-shadow: 0 28px 80px rgba(8, 39, 57, 0.16);
}

.site-footer__top,
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer__top {
  padding: 6px 0 16px;
}

.site-footer__bottom {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__top h2 {
  max-width: 18ch;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links a {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.01em;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255,255,255,0.58);
}

.site-footer__legal {
  width: 100%;
}

.doc-shell {
  padding: 88px 0 62px;
}



.doc-shell__head {
  margin-bottom: 28px;
}

.doc-shell__head h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-shadow: 0 10px 34px rgba(4, 18, 29, 0.3);
}

.doc-shell__head .sub {
  max-width: 64ch;
}

.doc-card {
  padding: 52px 56px;
  border-color: var(--bt-line-dark);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(245, 249, 251, 0.97)),
    radial-gradient(circle at top right, rgba(159, 220, 255, 0.14), transparent 30%);
}

.doc-content {
  color: var(--bt-ink);
  font-size: 1rem;
  line-height: 1.85;
}

.doc-content > *:first-child {
  margin-top: 0;
}

.doc-content h1,
.doc-content h2,
.doc-content h3,
.doc-content h4,
.doc-content h5,
.doc-content h6 {
  color: var(--bt-ink);
}

.doc-content h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.doc-content h3 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.doc-content p,
.doc-content li,
.doc-content div,
.doc-content span {
  color: #28475a;
}

.doc-content p,
.doc-content li {
  font-size: 1rem;
}

.doc-content a {
  color: #0f5f91;
}

.doc-content ol,
.doc-content ul {
  padding-left: 1.3rem;
}

.doc-content li + li {
  margin-top: 10px;
}

.doc-content img {
  height: auto;
  border-radius: 22px;
  box-shadow: 0 12px 36px rgba(12, 64, 92, 0.12);
}

.doc-content .wd-text-block,
.doc-content .title-wrapper,
.doc-content .vc_column-inner,
.doc-content .wpb_wrapper {
  margin-bottom: 16px;
}

.legal-manual {
  max-width: 760px;
}

.legal-manual p,
.legal-manual li {
  font-size: 1.02rem;
  line-height: 1.85;
}

.legal-manual strong {
  color: var(--bt-ink);
}

.hero-copy,
.page-hero__copy {
  max-width: 620px;
}

.metric-pill {
  align-content: start;
}

@media (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-nav,
  .site-nav .menu {
    justify-content: flex-start;
  }

  .site-header__actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero-grid,
  .page-hero__grid,
  .card-grid--three,
  .hero-metrics--simple,
  .page-stat-grid,
  .site-footer__top,
  .site-footer__bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .showcase,
  .page-hero__visual {
    min-height: 540px;
  }
}

@media (max-width: 900px) {
  .hero-grid::after,
  .page-hero__grid::after {
    display: none;
  }

  .phone.one,
  .phone.two,
  .phone--page.one,
  .phone--page.two {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0 auto;
  }

  .showcase,
  .page-hero__visual {
    display: grid;
    gap: 22px;
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(1180px, calc(100% - 24px));
  }

  .site-header__inner {
    padding: 14px 16px;
  }

  .site-header__cta {
    display: none;
  }

  .hero-shell,
  .page-hero,
  .doc-shell {
    padding-top: 62px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.6rem, 13vw, 3.8rem);
  }

  .store-links,
  .cta-panel__actions,
  .site-footer__stores {
    width: 100%;
  }

  .store-btn,
  .btn {
    width: 100%;
  }

  .doc-card,
  .plan-card,
  .glass-card,
  .metric-pill,
  .site-footer .wrap {
    padding-left: 22px;
    padding-right: 22px;
  }

  .doc-card {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .plan-card--featured {
    transform: none;
  }
}



.section-shell--why {
  padding-top: 48px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
}

.why-card {
  position: relative;
  padding: 28px 28px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 32px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--bt-mint), var(--bt-sky));
  box-shadow: 0 0 0 8px rgba(134, 234, 220, 0.08);
}

.why-card h3 {
  margin: 0 0 10px 22px;
  color: var(--bt-white);
  font-size: 1.7rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.why-card p {
  margin: 0 0 0 22px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.78;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}






.plan-card--default {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(196, 236, 255, 0.11));
  box-shadow: 0 24px 70px rgba(6, 31, 45, 0.16);
}

.plan-card--default .section-kicker,
.plan-card--default h2,
.plan-card--default .plan-list li {
  color: rgba(255, 255, 255, 0.96);
}

.plan-card--default::before {
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.28), rgba(159,220,255,0.14) 58%, transparent 72%);
}

.glass-card--stage h2 {
  font-size: clamp(1.55rem, 1.9vw, 1.85rem);
  line-height: 1.08;
  text-wrap: balance;
}

.glass-card--stage p {
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-metrics--simple {
  align-items: stretch;
}

.metric-pill {
  min-height: 132px;
  align-content: start;
}

.metric-pill span {
  font-size: 0.88rem;
  line-height: 1.45;
}

.plan-card--soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

.plan-card--default {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(196, 236, 255, 0.12));
  box-shadow: 0 28px 72px rgba(6, 31, 45, 0.18);
}

.plan-card--default .section-kicker,
.plan-card--default h2,
.plan-card--default .plan-list li {
  color: rgba(255, 255, 255, 0.96);
}

.plan-card--featured {
  border-color: rgba(134, 234, 220, 0.52);
  background: linear-gradient(180deg, rgba(149, 239, 225, 0.24), rgba(134, 234, 220, 0.1));
  box-shadow: 0 34px 100px rgba(6, 31, 45, 0.24);
}

.metric-pill {
  min-width: 0;
  padding: 20px 18px;
}

.metric-pill strong {
  display: block;
  font-size: clamp(1.18rem, 1.45vw, 1.38rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.metric-pill span {
  font-size: 0.84rem;
  line-height: 1.38;
  color: rgba(255, 255, 255, 0.8);
}

.plan-card--soft {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  box-shadow: 0 18px 50px rgba(6, 31, 45, 0.12);
}

.plan-card--default {
  border-color: rgba(255, 255, 255, 0.42);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(214, 243, 255, 0.17));
  box-shadow: 0 36px 110px rgba(6, 31, 45, 0.24);
  transform: translateY(-6px);
}

.plan-card--default::after {
  content: "";
  position: absolute;
  inset: auto 24px 0 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.72), transparent);
}

.plan-card--default .section-kicker,
.plan-card--default h2,
.plan-card--default .plan-list li,
.plan-card--default .plan-card__price {
  color: rgba(255, 255, 255, 0.98);
}

.plan-card--featured {
  border-color: rgba(134, 234, 220, 0.44);
  background: linear-gradient(180deg, rgba(149, 239, 225, 0.18), rgba(134, 234, 220, 0.08));
  box-shadow: 0 24px 76px rgba(6, 31, 45, 0.18);
  transform: translateY(0);
}

.section-shell--plans {
  position: relative;
  padding-top: 36px;
}

.section-shell--plans::before {
  content: "";
  position: absolute;
  inset: 0 20px;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(245, 251, 255, 0.96), rgba(223, 240, 249, 0.9)),
    radial-gradient(circle at top, rgba(255,255,255,0.85), transparent 58%);
  box-shadow: 0 30px 100px rgba(8, 31, 43, 0.12);
}

.section-shell--plans > .wrap {
  position: relative;
  z-index: 1;
}

.section-shell--plans .section-head {
  margin-bottom: 34px;
}

.section-shell--plans .section-kicker {
  color: rgba(28, 78, 104, 0.74);
}

.section-shell--plans .section-head h2 {
  color: #10384d;
  text-shadow: none;
}

.section-shell--plans .section-head--center::after {
  background: linear-gradient(90deg, rgba(97, 204, 216, 0.12), rgba(73, 164, 200, 0.55), rgba(97, 204, 216, 0.12));
}

.section-shell--plans .plan-grid {
  gap: 26px;
}

.section-shell--plans .plan-card {
  border: 1px solid rgba(120, 168, 191, 0.2);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(239,247,251,0.86));
  box-shadow: 0 18px 48px rgba(16, 56, 77, 0.12);
}

.section-shell--plans .plan-card::before {
  background: radial-gradient(circle at top right, rgba(139, 227, 223, 0.22), transparent 48%);
}

.section-shell--plans .plan-card::after {
  background: radial-gradient(circle at bottom left, rgba(122, 191, 224, 0.14), transparent 54%);
}

.section-shell--plans .plan-card .section-kicker {
  color: rgba(35, 86, 112, 0.6);
}

.section-shell--plans .plan-card h2 {
  color: #10384d;
  line-height: 1.02;
}

.section-shell--plans .plan-card__price {
  color: #1fbfc3;
}

.section-shell--plans .plan-list li {
  color: rgba(16, 56, 77, 0.84);
  line-height: 1.62;
}

.section-shell--plans .plan-list li::before {
  box-shadow: 0 0 0 6px rgba(134, 234, 220, 0.16);
}

.section-shell--plans .plan-card--default {
  border-color: rgba(103, 183, 206, 0.4);
  background: linear-gradient(180deg, rgba(234, 247, 255, 0.98), rgba(210, 236, 248, 0.94));
  box-shadow: 0 30px 90px rgba(16, 56, 77, 0.18);
  transform: translateY(-10px) scale(1.01);
}

.section-shell--plans .plan-card--default h2,
.section-shell--plans .plan-card--default .section-kicker,
.section-shell--plans .plan-card--default .plan-list li {
  color: #0c3144;
}

.section-shell--plans .plan-card--default .plan-card__price {
  color: #1bb8c4;
}

.section-shell--plans .plan-card--default::before {
  background: radial-gradient(circle at top right, rgba(255,255,255,0.8), rgba(160,225,241,0.22) 54%, transparent 70%);
}

.section-shell--plans .plan-card--featured {
  border-color: rgba(71, 220, 205, 0.5);
  background: linear-gradient(180deg, rgba(226, 252, 248, 0.96), rgba(208, 245, 240, 0.92));
  box-shadow: 0 24px 70px rgba(16, 56, 77, 0.16);
}

.section-shell--plans .plan-card--featured h2,
.section-shell--plans .plan-card--featured .section-kicker,
.section-shell--plans .plan-card--featured .plan-list li {
  color: #0f4857;
}

.section-shell--plans .plan-card--featured .plan-card__price {
  color: #12b6b4;
}

@media (max-width: 900px) {
  .section-shell--plans::before {
    inset: 0 12px;
    border-radius: 30px;
  }

  .section-shell--plans .plan-card--default {
    transform: none;
  }
}

.section-shell--plans .plan-card {
  gap: 18px;
  padding: 28px;
}

.section-shell--plans .plan-card h2 {
  font-size: clamp(2rem, 2.5vw, 2.45rem);
}

.section-shell--plans .plan-card__price-wrap {
  gap: 10px;
}

.section-shell--plans .plan-card__price {
  font-size: clamp(2.05rem, 2.7vw, 2.85rem);
  letter-spacing: -0.05em;
}

.section-shell--plans .plan-card__summary,
.section-shell--plans .plan-card__meta {
  margin: 0;
  max-width: 24ch;
  color: rgba(16, 56, 77, 0.68);
  font-size: 0.98rem;
  line-height: 1.5;
}

.section-shell--plans .plan-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 56, 77, 0.08);
  color: #11455c;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-shell--plans .plan-badge--mint {
  background: linear-gradient(180deg, rgba(47, 204, 196, 0.18), rgba(47, 204, 196, 0.1));
  color: #0d6f74;
}

.section-shell--plans .plan-badge--dark {
  background: rgba(16, 56, 77, 0.12);
  color: #12394d;
}

.section-shell--plans .plan-card__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  margin-top: auto;
  padding: 0 20px;
  border: 1px solid rgba(16, 56, 77, 0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.62);
  color: #12394d;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(16, 56, 77, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.section-shell--plans .plan-card__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(16, 56, 77, 0.12);
  background: rgba(255,255,255,0.82);
}

.section-shell--plans .plan-card__cta--primary {
  border-color: rgba(18, 182, 180, 0.34);
  background: linear-gradient(180deg, #1fc8c7, #17b1b3);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(23, 177, 179, 0.24);
}

.section-shell--plans .plan-card__cta--primary:hover {
  background: linear-gradient(180deg, #24d2cf, #18bbbd);
  box-shadow: 0 18px 34px rgba(23, 177, 179, 0.28);
}

.section-shell--plans .plan-card--default {
  transform: translateY(-12px) scale(1.02);
}

.section-shell--plans .plan-card--featured {
  transform: translateY(-4px);
}

@media (max-width: 900px) {
  .section-shell--plans .plan-card,
  .section-shell--plans .plan-card--default,
  .section-shell--plans .plan-card--featured {
    transform: none;
  }

  .section-shell--plans .plan-card__summary,
  .section-shell--plans .plan-card__meta {
    max-width: none;
  }
}

.section-shell--plans::before {
  background:
    linear-gradient(180deg, rgba(236, 245, 251, 0.84), rgba(220, 235, 244, 0.74)),
    radial-gradient(circle at top, rgba(255,255,255,0.5), transparent 60%);
  box-shadow: 0 26px 90px rgba(8, 31, 43, 0.08);
}

.section-shell--plans .section-kicker {
  color: rgba(33, 77, 101, 0.58);
}

.section-shell--plans .section-head h2 {
  color: #1c4b63;
}

.section-shell--plans .plan-card {
  border-color: rgba(126, 166, 188, 0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.56), rgba(243,248,251,0.4));
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 38px rgba(16, 56, 77, 0.08);
}

.section-shell--plans .plan-card::before {
  background: radial-gradient(circle at top right, rgba(188, 224, 238, 0.14), transparent 48%);
}

.section-shell--plans .plan-card::after {
  background: radial-gradient(circle at bottom left, rgba(168, 204, 223, 0.1), transparent 56%);
}

.section-shell--plans .plan-card h2 {
  color: #1d4e67;
}

.section-shell--plans .plan-card__price {
  color: #3aa8ba;
}

.section-shell--plans .plan-card__summary,
.section-shell--plans .plan-card__meta,
.section-shell--plans .plan-list li {
  color: rgba(28, 75, 99, 0.74);
}

.section-shell--plans .plan-badge {
  background: rgba(255,255,255,0.4);
  color: rgba(28, 75, 99, 0.9);
}

.section-shell--plans .plan-badge--mint,
.section-shell--plans .plan-badge--dark {
  background: rgba(255,255,255,0.42);
  color: rgba(28, 75, 99, 0.9);
}

.section-shell--plans .plan-card--default {
  border-color: rgba(141, 185, 209, 0.24);
  background: linear-gradient(180deg, rgba(244, 250, 254, 0.72), rgba(226, 239, 247, 0.56));
  box-shadow: 0 18px 52px rgba(16, 56, 77, 0.1);
  transform: translateY(-6px) scale(1.01);
}

.section-shell--plans .plan-card--default h2,
.section-shell--plans .plan-card--default .plan-list li,
.section-shell--plans .plan-card--default .plan-card__summary {
  color: #1b4b63;
}

.section-shell--plans .plan-card--default .plan-card__price {
  color: #369eb0;
}

.section-shell--plans .plan-card--featured {
  border-color: rgba(147, 197, 214, 0.22);
  background: linear-gradient(180deg, rgba(239, 248, 251, 0.68), rgba(223, 238, 245, 0.54));
  box-shadow: 0 18px 50px rgba(16, 56, 77, 0.1);
  transform: translateY(-2px);
}

.section-shell--plans .plan-card--featured h2,
.section-shell--plans .plan-card--featured .plan-list li,
.section-shell--plans .plan-card--featured .plan-card__meta {
  color: #1a4a61;
}

.section-shell--plans .plan-card--featured .plan-card__price {
  color: #33a2b4;
}

.section-shell--plans .plan-card__cta {
  background: rgba(255,255,255,0.58);
  color: #1b4b63;
  box-shadow: 0 8px 22px rgba(16, 56, 77, 0.06);
}

.section-shell--plans .plan-card__cta:hover {
  background: rgba(255,255,255,0.72);
  box-shadow: 0 12px 24px rgba(16, 56, 77, 0.08);
}

.section-shell--plans .plan-card__cta--primary {
  border-color: rgba(81, 155, 181, 0.22);
  background: linear-gradient(180deg, #4eb7c6, #409db0);
  box-shadow: 0 12px 24px rgba(64, 157, 176, 0.18);
}

.section-shell--plans .plan-card__cta--primary:hover {
  background: linear-gradient(180deg, #58bfd0, #45a6ba);
  box-shadow: 0 14px 28px rgba(64, 157, 176, 0.2);
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) auto;
  align-items: start;
  gap: 16px 28px;
}

.site-footer__legal {
  min-width: 0;
}

.site-footer__links {
  gap: 10px 18px;
}

.site-footer__links a {
  white-space: nowrap;
  font-size: 0.96rem;
}

.site-footer__bottom p {
  max-width: 90ch;
  text-align: right;
  line-height: 1.35;
}

@media (max-width: 1280px) {
  .site-footer__bottom {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer__bottom p {
    max-width: none;
    text-align: left;
  }
}

.section-head--with-link {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

.section-shell--articles-preview {
  position: relative;
  padding-top: 34px;
  padding-bottom: 96px;
}

.section-shell--articles-preview::before {
  content: "";
  position: absolute;
  inset: 28px 3% auto;
  height: 160px;
  border-radius: 52px;
  background: radial-gradient(circle at top, rgba(164, 219, 243, 0.12), transparent 68%);
  pointer-events: none;
}

.section-shell--articles-preview > .wrap {
  position: relative;
  z-index: 1;
}

.section-head--articles-light {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 46px;
}

.section-head--articles-light > div {
  max-width: 640px;
}

.section-subhead--articles {
  max-width: 42ch;
  margin: 0;
  color: rgba(229, 243, 249, 0.84);
  font-size: 1.02rem;
  line-height: 1.82;
}

.articles-preview__cta {
  flex: 0 0 auto;
  min-width: 0;
  color: #1b4b63;
  border-color: rgba(28, 75, 99, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(241,247,250,0.78));
}

.article-preview-grid {
  margin-top: 0;
  align-items: stretch;
}

.article-preview-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 208px minmax(0, 1fr);
  min-height: 100%;
  padding: 0;
  border: 1px solid rgba(94, 131, 151, 0.15);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 249, 251, 0.92));
  box-shadow: 0 26px 70px rgba(10, 40, 56, 0.085);
  isolation: isolate;
}

.article-preview-card::after {
  content: "";
  position: absolute;
  inset: auto 16px 0;
  height: 74px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(117, 210, 222, 0.1), transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.article-preview-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(180deg, #edf5f9, #dae8f0);
}

.article-preview-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.3));
}

.article-preview-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.article-preview-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-height: 100%;
  padding: 24px 24px 24px;
}

.article-preview-card .section-kicker {
  margin: 0;
  color: rgba(23, 66, 88, 0.58);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
}

.article-preview-card h2,
.article-preview-card h3 {
  margin: 0;
  color: #14394d;
  font-size: clamp(1.28rem, 1.6vw, 1.7rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.article-preview-card h2 a,
.article-preview-card h3 a,
.article-preview-card h2 a:visited,
.article-preview-card h3 a:visited {
  color: inherit;
  text-decoration: none;
}

.article-preview-card h2 a:hover,
.article-preview-card h3 a:hover,
.article-preview-card h2 a:focus-visible,
.article-preview-card h3 a:focus-visible {
  color: #0e3144;
}

.article-preview-card p {
  margin: 0;
  color: rgba(24, 59, 77, 0.8);
  line-height: 1.72;
}

.article-preview-card__body > p:not(.section-kicker) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  min-height: 6.9em;
}

.article-preview-card__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(99, 136, 155, 0.14);
}

.article-preview-card__footer a,
.article-preview-card__footer a:visited {
  color: #1a4b63;
  font-size: 0.94rem;
  font-weight: 700;
}

.article-preview-card__footer a {
  text-decoration: none;
}

.article-preview-card__footer a:hover,
.article-preview-card__footer a:focus-visible {
  color: #103244;
}

@media (max-width: 900px) {
  .section-head--with-link {
    align-items: start;
    flex-direction: column;
    text-align: left;
  }

  .section-head--articles-light {
    margin-bottom: 28px;
  }

  .section-subhead--articles {
    max-width: none;
  }

  .articles-preview__cta {
    justify-self: start;
    align-self: flex-start;
  }

  .article-preview-card {
    grid-template-rows: 188px minmax(0, 1fr);
  }
}

.section-shell--articles-archive .article-preview-grid {
  align-items: stretch;
}
/* ── Article page ── */
/* ── Article page — full recomposition ──────────────────── */

.article-page {
  display: flex;
  flex-direction: column;
}

/* Cover: full-bleed image with title overlay */
.article-cover {
  position: relative;
  height: clamp(380px, 56vw, 620px);
  overflow: hidden;
  background: var(--bt-navy);
}

.article-cover__image {
  position: absolute;
  inset: 0;
}

.article-cover__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Layered gradient: dark vignette at top for header legibility,
   heavy dark at bottom for title legibility */
.article-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(4, 18, 36, 0.55) 0%,
      rgba(4, 18, 36, 0.1) 30%,
      rgba(4, 18, 36, 0.2) 55%,
      rgba(4, 18, 36, 0.82) 80%,
      rgba(4, 18, 36, 0.97) 100%
    );
  pointer-events: none;
}

.article-cover__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding-bottom: 48px;
}

.article-cover__cluster {
  margin-bottom: 14px;
}

.article-cover__title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #fff;
  max-width: 22ch;
  margin: 0;
  text-shadow: 0 2px 24px rgba(2, 8, 16, 0.4);
}

/* Lead + body */
.article-content {
  padding: 60px 0 80px;
}

.article-content .wrap {
  max-width: 760px;
}

.article-content__lead {
  font-size: 1.18rem;
  line-height: 1.76;
  color: rgba(255, 255, 255, 0.78);
  border-left: 3px solid var(--bt-mint);
  padding-left: 24px;
  margin: 0 0 52px;
}

.article-content__body h2 {
  margin-top: 48px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  letter-spacing: -0.03em;
}

.article-content__body p,
.article-content__body li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.88;
}

.article-content__body ul {
  margin: 16px 0 8px;
  padding-left: 1.4rem;
}

.article-content__body li + li {
  margin-top: 10px;
}

.article-content__body li::marker {
  color: var(--bt-mint);
}

/* Responsive */
@media (max-width: 860px) {
  .article-cover {
    height: clamp(320px, 70vw, 480px);
  }
  .article-cover__title {
    font-size: clamp(1.7rem, 7vw, 2.8rem);
  }
  .article-cover__content {
    padding-bottom: 36px;
  }
}

@media (max-width: 600px) {
  .article-cover {
    height: clamp(280px, 80vw, 400px);
  }
  .article-cover__content {
    padding-bottom: 28px;
  }
  .article-content {
    padding: 40px 0 60px;
  }
  .article-content__lead {
    font-size: 1.05rem;
    padding-left: 16px;
    margin-bottom: 36px;
  }
}






/* ============================================================
   LUNA — Complete Visual Redesign v5
   Centered hero · Bold type · Dark throughout · 2×2 why grid
   ============================================================ */

/* ─── Keyframes ──────────────────────────────────────────── */

@keyframes luna-float {
  0%, 100% { transform: rotate(-12deg) translateY(0px); }
  50%       { transform: rotate(-12deg) translateY(-16px); }
}
@keyframes luna-float-two {
  0%, 100% { transform: rotate(12deg) translateY(0px); }
  50%       { transform: rotate(12deg) translateY(-12px); }
}
@keyframes luna-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes luna-glow-breathe {
  0%, 100% { opacity: 0.68; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.07); }
}
@keyframes luna-orb-drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  40%       { transform: translate(22px,-18px) scale(1.05); }
  70%       { transform: translate(-12px,14px) scale(0.96); }
}
@keyframes luna-star-twinkle {
  0%, 100% { opacity: 0.12; transform: scale(0.7); }
  50%       { opacity: 0.7;  transform: scale(1.3); }
}
@keyframes luna-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.75); }
}
@keyframes luna-orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes luna-icon-appear {
  from { opacity: 0; transform: scale(0.8) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes luna-badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(134,234,220,0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(134,234,220,0); }
}


/* Ensure all headings use bold weight */
h1, h2, h3, h4 { font-weight: 800 !important; }
p, li, span { color: inherit; }

/* ─── 2. Header ─────────────────────────────────────────── */

.site-header__inner {
  padding: 16px 32px;
  background: rgba(15,70,96,0.68) !important;
  backdrop-filter: blur(24px) saturate(1.3) !important;
  border-bottom: 1px solid rgba(134,234,220,0.14) !important;
  box-shadow: 0 1px 0 rgba(134,234,220,0.08), 0 4px 24px rgba(8,39,57,0.2) !important;
}

.site-brand__mark { width: 52px; height: 52px; flex: 0 0 52px; }

/* Nav links — white on teal header */
.site-nav a {
  color: rgba(255,255,255,0.76) !important;
  font-size: 0.9rem;
  transition: color 0.16s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff !important;
  text-shadow: 0 0 18px rgba(134,234,220,0.5) !important;
}
.site-nav .current-menu-item a,
.site-nav .current_page_item a {
  color: var(--bt-mint) !important;
}
.site-nav a::after {
  background: linear-gradient(90deg, transparent, var(--bt-mint), transparent) !important;
  height: 2px !important;
  bottom: 0 !important;
}
.site-nav .current-menu-item a::after,
.site-nav .current_page_item a::after,
.site-nav a:hover::after { opacity: 1 !important; transform: translateY(0) !important; }

/* Lang menu */
.lang-menu { position: relative; z-index: 100; }
.lang-menu__panel { z-index: 200; background: rgba(10,45,65,0.96) !important; border: 1px solid rgba(134,234,220,0.16) !important; }
.lang-menu__item { text-decoration: none !important; transition: color 0.15s, background 0.15s; color: rgba(255,255,255,0.72) !important; }
.lang-menu__item:hover { background: rgba(134,234,220,0.12) !important; color: #fff !important; }


/* ─── 3. Hero: CENTERED full-screen layout ───────────────── */

.hero-shell,
.hero-shell--client {
  padding: 0 !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 2-col hero: text left, showcase right */
.hero-grid--calm {
  display: grid !important;
  grid-template-columns: 1fr minmax(320px, 460px) !important;
  gap: 64px !important;
  align-items: center !important;
  text-align: left !important;
  padding: 80px 0 !important;
}
.hero-grid--calm::after { display: none !important; }

/* Hero copy block */
.hero-copy {
  max-width: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

/* Eyebrow */
.hero-copy .eyebrow {
  font-size: 0.78rem !important;
  letter-spacing: 0.18em !important;
  color: var(--bt-mint) !important;
  margin-bottom: 20px !important;
}

/* Headline */
.hero-copy h1 {
  font-size: clamp(2.6rem, 5.2vw, 5rem) !important;
  font-weight: 900 !important;
  line-height: 1.0 !important;
  letter-spacing: -0.055em !important;
  color: #ffffff !important;
  text-wrap: balance;
  margin: 0 0 24px !important;
  text-shadow: 0 8px 40px rgba(4,14,24,0.4);
}

/* Sub */
.hero-copy .sub {
  font-size: clamp(1rem, 1.4vw, 1.12rem) !important;
  line-height: 1.72 !important;
  color: rgba(255,255,255,0.6) !important;
  max-width: 46ch !important;
  margin: 0 0 36px !important;
}

/* Store buttons - left-aligned */
.hero-copy .store-links {
  justify-content: flex-start !important;
  gap: 14px !important;
  margin-top: 0 !important;
  flex-wrap: wrap;
}

/* Metrics pills */
.hero-copy .hero-metrics--simple {
  justify-content: flex-start !important;
  margin-top: 44px !important;
  padding-top: 32px !important;
  border-top: 1px solid rgba(134,234,220,0.14) !important;
  width: 100%;
}

/* Showcase - fills right column */
.hero-grid--calm .showcase--simple {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  min-height: 520px !important;
}

/* ─── 4. Hero orbit circles ──────────────────────────────── */

.hero-shell--client { position: relative; }
.hero-orbits {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.hero-orbit {
  position: absolute; border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.hero-orbits .hero-orbit:nth-child(1) { width: 520px; height: 520px; border: 1px solid rgba(134,234,220,0.15); }
.hero-orbits .hero-orbit:nth-child(2) { width: 760px; height: 760px; border: 1px solid rgba(134,234,220,0.08); }
.hero-orbits .hero-orbit:nth-child(3) { width: 1040px; height: 1040px; border: 1px solid rgba(134,234,220,0.04); }
.hero-orbit-dot {
  position: absolute; width: 0; height: 0;
  top: 50%; left: 50%;
  animation: luna-orbit-spin 24s linear infinite;
}
.hero-orbit-dot::before {
  content: "";
  position: absolute;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--bt-mint);
  box-shadow: 0 0 20px var(--bt-mint), 0 0 44px rgba(134,234,220,0.45);
  transform: translate(-50%, calc(-260px - 50%));
}

/* Hero atmosphere orbs */
.hero-shell--client::before {
  content: "";
  position: absolute; top: -80px; left: -120px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(167,199,216,0.08) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
  animation: luna-orb-drift 16s ease-in-out infinite;
}
.hero-shell--client::after {
  content: "";
  position: absolute; bottom: 40px; right: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(126,197,234,0.1) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
  animation: luna-orb-drift 20s ease-in-out 6s infinite reverse;
}
.hero-grid--calm { position: relative; z-index: 1; }

.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.hero-stars::before,
.hero-stars::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(250, 252, 255, 1);
  filter: blur(0.12px);
  will-change: opacity, transform, filter;
}

.hero-stars--far::before {
  width: 2px;
  height: 2px;
  top: 12%;
  left: 9%;
  box-shadow:
    120px 34px rgba(250, 252, 255, 0.92),
    248px 72px rgba(250, 252, 255, 0.84),
    396px 18px rgba(250, 252, 255, 0.72),
    532px 64px rgba(250, 252, 255, 0.88),
    674px 26px rgba(250, 252, 255, 0.68),
    818px 88px rgba(250, 252, 255, 0.8),
    952px 44px rgba(250, 252, 255, 0.78),
    1088px 12px rgba(250, 252, 255, 0.62),
    86px 168px rgba(250, 252, 255, 0.66),
    214px 202px rgba(250, 252, 255, 0.76),
    376px 154px rgba(250, 252, 255, 0.56),
    514px 216px rgba(250, 252, 255, 0.7),
    692px 178px rgba(250, 252, 255, 0.6),
    836px 224px rgba(250, 252, 255, 0.66),
    982px 164px rgba(250, 252, 255, 0.58),
    1164px 138px rgba(255, 255, 255, 0.82);
  animation: luna-stars-drift 28s linear infinite, luna-stars-twinkle 6.6s ease-in-out infinite;
}

.hero-stars--far::after {
  width: 3px;
  height: 3px;
  top: 22%;
  left: 18%;
  opacity: 0.96;
  box-shadow:
    182px 22px rgba(250, 252, 255, 0.88),
    412px 94px rgba(250, 252, 255, 0.76),
    702px 36px rgba(250, 252, 255, 0.72),
    924px 102px rgba(250, 252, 255, 0.64),
    108px 246px rgba(250, 252, 255, 0.8),
    558px 208px rgba(250, 252, 255, 0.72),
    844px 182px rgba(250, 252, 255, 0.78),
    1042px 52px rgba(255, 255, 255, 0.96),
    1210px 148px rgba(255, 255, 255, 0.86);
  animation: luna-stars-twinkle 7.2s ease-in-out 1.1s infinite;
}

.hero-stars--near::before {
  width: 2.4px;
  height: 2.4px;
  top: 8%;
  left: 52%;
  opacity: 0.94;
  box-shadow:
    68px 44px rgba(250, 252, 255, 0.88),
    148px 104px rgba(250, 252, 255, 0.72),
    -214px 78px rgba(250, 252, 255, 0.64),
    -348px 138px rgba(250, 252, 255, 0.52),
    286px 148px rgba(250, 252, 255, 0.58),
    -486px 212px rgba(250, 252, 255, 0.42),
    430px 234px rgba(250, 252, 255, 0.56),
    566px 102px rgba(255, 255, 255, 0.9);
  animation: luna-stars-twinkle 5.4s ease-in-out 0.6s infinite;
}

.hero-stars--near::after {
  width: 3.4px;
  height: 3.4px;
  top: 30%;
  left: 72%;
  opacity: 0.76;
  box-shadow:
    -144px 56px rgba(250, 252, 255, 0.62),
    -312px 104px rgba(250, 252, 255, 0.48),
    96px 88px rgba(250, 252, 255, 0.54),
    -522px 168px rgba(250, 252, 255, 0.42),
    -28px 196px rgba(250, 252, 255, 0.46),
    182px 164px rgba(255, 255, 255, 0.8);
  animation: luna-stars-drift 36s linear infinite reverse, luna-stars-twinkle 8.4s ease-in-out 1.6s infinite;
}

/* ─── 5. Hero store buttons ───────────────────────────────── */

.hero-shell .store-btn {
  position: relative; overflow: hidden;
  min-height: 62px; padding: 14px 30px; gap: 14px;
  border-radius: 999px; font-size: 1.05rem; font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-shell .store-btn:first-child {
  border-color: rgba(255,255,255,0.22);
  background: linear-gradient(150deg, #0e1c2c, #060f1a);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 20px 50px rgba(0,0,0,0.5);
  color: #fff;
}
.hero-shell .store-btn:last-child {
  border-color: rgba(134,234,220,0.3);
  background: linear-gradient(150deg, rgba(134,234,220,0.14), rgba(134,234,220,0.05));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 20px 50px rgba(0,0,0,0.3);
}
.hero-shell .store-btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  background-size: 200% 100%; opacity: 0; pointer-events: none;
}
.hero-shell .store-btn:hover { transform: translateY(-5px); }
.hero-shell .store-btn:hover::after {
  opacity: 1; animation: luna-shimmer 0.55s linear forwards;
}
.hero-shell .store-btn:hover:first-child {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 32px 64px rgba(0,0,0,0.6), 0 0 28px rgba(134,234,220,0.12);
}
.hero-shell .store-btn:hover:last-child {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 32px 64px rgba(0,0,0,0.4), 0 0 28px rgba(134,234,220,0.18);
}
.hero-shell .store-icon { width: 26px; height: 26px; flex-shrink: 0; }

/* ─── 6. Hero phone showcase ──────────────────────────────── */

.hero-shell .phone.one {
  animation: luna-float 7s ease-in-out infinite;
  box-shadow: var(--bt-shadow-hero), 0 0 0 1px rgba(255,255,255,0.18), inset 0 1px 0 rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.32) !important;
}
.hero-shell .phone.two {
  animation: luna-float-two 9s ease-in-out 2s infinite;
  box-shadow: var(--bt-shadow-hero), 0 0 0 1px rgba(255,255,255,0.18), inset 0 1px 0 rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.32) !important;
}
.hero-shell .glow { animation: luna-glow-breathe 8s ease-in-out infinite; }

.showcase--simple .glow::before {
  content: ""; position: absolute;
  width: 3px; height: 3px; border-radius: 999px;
  background: rgba(255,255,255,0.9); top: 10%; right: 6%;
  pointer-events: none;
  box-shadow:
    -44px -28px 0   rgba(255,255,255,0.55), -92px 22px 0 1px rgba(159,220,255,0.5),
    -62px -82px 0   rgba(255,255,255,0.38), -118px -52px 0 1px rgba(134,234,220,0.45),
     22px  52px 0   rgba(255,255,255,0.38),  -182px 14px 0  rgba(159,220,255,0.3),
    -32px -118px 0 1px rgba(255,255,255,0.5), -152px -88px 0 rgba(134,234,220,0.4),
     62px -58px 0   rgba(255,255,255,0.26), -202px 58px 0  rgba(159,220,255,0.24);
  animation: luna-star-twinkle 4.5s ease-in-out infinite;
}
.showcase--simple .glow::after {
  content: ""; position: absolute;
  width: 2px; height: 2px; border-radius: 999px;
  background: rgba(255,255,255,0.8); top: 62%; left: 4%;
  pointer-events: none;
  box-shadow:
     32px -42px 0   rgba(134,234,220,0.5),   72px  22px 0  rgba(255,255,255,0.4),
    -22px  62px 0 1px rgba(159,220,255,0.46), 112px -22px 0  rgba(255,255,255,0.28),
     52px  82px 0   rgba(134,234,220,0.36),    92px -68px 0 1px rgba(255,255,255,0.4);
  animation: luna-star-twinkle 6.5s ease-in-out 2s infinite;
}
.showcase__floor {
  position: absolute; bottom: 0; left: 8%; right: 8%; height: 80px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(134,234,220,0.18) 0%, transparent 70%);
  filter: blur(16px); pointer-events: none;
}

/* Metric pills on hero */
.metric-pill {
  border-color: rgba(134,234,220,0.14) !important;
  background: linear-gradient(160deg, rgba(134,234,220,0.08), rgba(134,234,220,0.03)) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.metric-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(4,14,24,0.3), inset 0 1px 0 rgba(255,255,255,0.12) !important;
}
.metric-pill strong { color: var(--bt-mint) !important; }
.metric-pill span { color: rgba(255,255,255,0.62) !important; }

/* ─── 7. Section dividers ────────────────────────────────── */

.section-shell::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(134,234,220,0.16) 25%,
    rgba(159,220,255,0.22) 50%,
    rgba(134,234,220,0.16) 75%,
    transparent
  ) !important;
}

/* ─── 8. Feature showcase sections ───────────────────────── */

.feature-showcase {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}

.feature-showcase::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 140px;
  background: linear-gradient(180deg, rgba(94, 148, 177, 0) 0%, rgba(104, 157, 185, 0.12) 38%, rgba(120, 170, 196, 0.22) 62%, rgba(132, 180, 205, 0.32) 100%);
  pointer-events: none;
  z-index: 0;
}

.feature-showcase--pregnancy { background: rgba(159,220,255,0.018); }
.feature-showcase + .feature-showcase { border-top: none; }
.feature-showcase--pregnancy::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 55% at 80% 50%, rgba(159,220,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* Section decorative background glows */
.feature-showcase__text { display: flex; flex-direction: column; gap: 0; position: relative; }

.feature-showcase__text::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: -60px; right: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  pointer-events: none !important;
  z-index: 0 !important;
}
.feature-showcase--planning .feature-phone-frame { transform: rotate(4deg); }
.feature-showcase--planning .feature-phone-frame:hover { transform: translateY(-14px) rotate(4deg) scale(1.01); }
.feature-showcase--pregnancy .feature-phone-frame { transform: rotate(-4deg); }
.feature-showcase--pregnancy .feature-phone-frame:hover { transform: translateY(-14px) rotate(-4deg) scale(1.01); }
.feature-showcase--baby .feature-phone-frame { transform: rotate(3deg); }
.feature-showcase--baby .feature-phone-frame:hover { transform: translateY(-14px) rotate(3deg) scale(1.01); }

.feature-showcase--planning .feature-showcase__text::before {
  background: radial-gradient(circle, rgba(134,234,220,0.14) 0%, rgba(134,234,220,0.06) 40%, transparent 70%) !important;
}
.feature-showcase--pregnancy .feature-showcase__text::before {
  background: radial-gradient(circle, rgba(159,220,255,0.16) 0%, rgba(159,220,255,0.07) 40%, transparent 70%) !important;
}
.feature-showcase--baby .feature-showcase__text::before {
  background: radial-gradient(circle, rgba(134,234,220,0.13) 0%, rgba(159,220,255,0.06) 40%, transparent 70%) !important;
}

/* Text content above the glow */
.feature-showcase__text > * { position: relative; z-index: 1; }

.feature-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(134,234,220,0.1);
  border: 1px solid rgba(134,234,220,0.3);
  border-radius: 24px; padding: 5px 16px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--bt-mint); width: fit-content;
  margin-bottom: 22px;
}
.feature-badge::before {
  content: ""; display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--bt-mint);
  box-shadow: 0 0 10px rgba(134,234,220,0.7);
  animation: luna-dot-pulse 2.2s ease-in-out infinite; flex-shrink: 0;
}
.feature-showcase__text h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem) !important;
  line-height: 1.04; color: var(--bt-white); margin: 0 0 20px;
  letter-spacing: -0.05em;
}
.feature-showcase__text > p {
  font-size: 1.06rem; line-height: 1.82;
  color: rgba(255,255,255,0.62); margin: 0 0 28px; max-width: 44ch;
}
.feature-showcase__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 96px; align-items: center;
}
.feature-showcase__inner--flip { grid-template-columns: 340px 1fr; }
.feature-showcase__inner--flip .feature-showcase__phone { order: -1; }

.feature-showcase__phone {
  display: flex; justify-content: center; position: relative;
}
.feature-showcase__phone::before {
  content: "";
  position: absolute; inset: -90px;
  background: radial-gradient(ellipse at center, rgba(134,234,220,0.14) 0%, transparent 66%);
  pointer-events: none; border-radius: 50%; z-index: 0;
}
.feature-showcase--pregnancy .feature-showcase__phone::before {
  background: radial-gradient(ellipse at center, rgba(159,220,255,0.14) 0%, transparent 66%);
}

/* Feature bullet list */
.feature-showcase__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.feature-showcase__list li {
  position: relative; padding-left: 28px;
  color: rgba(255,255,255,0.78); font-size: 0.97rem; line-height: 1.52;
}
.feature-showcase__list li::before {
  content: "";
  position: absolute; left: 0; top: 0.38em;
  width: 16px; height: 16px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bt-mint), var(--bt-sky));
  box-shadow: 0 0 8px rgba(134,234,220,0.35);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5L6.5 12 13 5' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5L6.5 12 13 5' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
}

.feature-phone-frame {
  width: 340px; height: 744px; border-radius: 50px;
  border: 2px solid rgba(134,234,220,0.35); overflow: hidden;
  box-shadow:
    0 0 0 8px rgba(134,234,220,0.05),
    0 0 70px rgba(134,234,220,0.2),
    0 44px 100px rgba(2,10,18,0.6),
    inset 0 1px 0 rgba(255,255,255,0.2);
  background: rgba(6,30,46,0.9);
  position: relative; z-index: 1; flex-shrink: 0;
  transition: transform 0.34s cubic-bezier(.22,.68,0,1.1), box-shadow 0.34s ease;
}
.feature-phone-frame:hover {
  transform: translateY(-14px) scale(1.01);
  box-shadow:
    0 0 0 8px rgba(134,234,220,0.08),
    0 0 90px rgba(134,234,220,0.3),
    0 60px 110px rgba(2,10,18,0.7),
    inset 0 1px 0 rgba(255,255,255,0.24);
}
.feature-phone-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.feature-phone-frame--sky {
  border-color: rgba(159,220,255,0.4);
  box-shadow:
    0 0 0 8px rgba(159,220,255,0.05),
    0 0 70px rgba(159,220,255,0.2),
    0 44px 100px rgba(2,10,18,0.6),
    inset 0 1px 0 rgba(255,255,255,0.2);
}
.feature-phone-frame--sky:hover {
  box-shadow:
    0 0 0 8px rgba(159,220,255,0.08),
    0 0 90px rgba(159,220,255,0.3),
    0 60px 110px rgba(2,10,18,0.7),
    inset 0 1px 0 rgba(255,255,255,0.24);
}

@media (max-width: 1000px) {
  .feature-showcase__inner,
  .feature-showcase__inner--flip { grid-template-columns: 1fr; gap: 48px; }
  .feature-showcase__inner--flip .feature-showcase__phone { order: 0; }
  .feature-showcase { min-height: auto; padding: 80px 0; }
  .feature-phone-frame { width: 260px; height: 569px; border-radius: 40px; }
  .feature-showcase__text > p { max-width: none; }
  .feature-showcase__text::before { font-size: 6rem; }
}
@media (max-width: 720px) {
  .feature-showcase { padding: 60px 0; }
  .feature-phone-frame { width: 210px; height: 459px; border-radius: 34px; }
  .feature-showcase__text h2 { font-size: clamp(1.9rem, 8.5vw, 2.6rem) !important; }
}

/* ─── 9. Why section: 2×2 grid ───────────────────────────── */

.section-shell--why {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  margin-top: -34px;
  z-index: 1;
}

.section-shell--why::before {
  display: none !important;
}
.section-shell--why .section-head--center { margin-bottom: 56px; }
.section-shell--why .section-head--center h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem) !important;
  letter-spacing: -0.05em !important;
}

/* 2×2 grid */
.why-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 24px !important;
  max-width: 900px !important;
  margin: 0 auto !important;
}
@media (max-width: 680px) {
  .why-grid { grid-template-columns: 1fr !important; }
}

.why-card {
  position: relative; overflow: hidden;
  padding: 36px 32px 34px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 4px 28px rgba(4,16,28,0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(134,234,220,0.38);
  background: rgba(255,255,255,0.17);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 18px 52px rgba(4,16,28,0.3);
}
.why-card__num { display: none !important; }

.why-card::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: inherit !important;
  background: radial-gradient(ellipse 75% 65% at 92% 8%, rgba(134,234,220,0.12), transparent 58%) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}
.why-card:nth-child(2)::before {
  background: radial-gradient(ellipse 75% 65% at 8% 12%, rgba(159,220,255,0.1), transparent 58%) !important;
}
.why-card:nth-child(3)::before {
  background: radial-gradient(ellipse 75% 65% at 88% 88%, rgba(134,234,220,0.11), transparent 58%) !important;
}
.why-card:nth-child(4)::before {
  background: radial-gradient(ellipse 75% 65% at 12% 85%, rgba(159,220,255,0.1), transparent 58%) !important;
}

.why-card__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: rgba(134,234,220,0.12);
  border: 1px solid rgba(134,234,220,0.22);
  color: var(--bt-mint); margin-bottom: 20px; flex-shrink: 0;
  position: relative; z-index: 1;
  animation: luna-icon-appear 0.4s ease both;
}
.why-card__icon svg { width: 22px; height: 22px; display: block; }
.why-card h3 {
  font-size: clamp(1.2rem,1.7vw,1.5rem) !important; line-height: 1.16;
  color: #ffffff; margin: 0 0 12px; letter-spacing: -0.025em;
  position: relative; z-index: 1;
}
.why-card p {
  font-size: 0.95rem; line-height: 1.74;
  color: rgba(255,255,255,0.62); margin: 0;
  position: relative; z-index: 1;
}

/* ─── 10. Articles section ───────────────────────────────── */

.section-shell--articles-preview {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
}

/* Divider between Why and Articles */
.section-shell--articles-preview::before {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 10% !important;
  right: 10% !important;
  height: 1px !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(134,234,220,0.25) 30%,
    rgba(159,220,255,0.35) 50%,
    rgba(134,234,220,0.25) 70%,
    transparent
  ) !important;
  pointer-events: none !important;
}

/* Section head */
.section-head--articles-light .section-kicker { color: var(--bt-mint) !important; }
.section-head--articles-light h2,
.section-subhead--articles { color: rgba(255,255,255,0.72) !important; }

/* CTA "All articles" button */
.articles-preview__cta {
  color: var(--bt-mint) !important;
  border-color: rgba(134,234,220,0.28) !important;
  background: rgba(134,234,220,0.07) !important;
  border-radius: 999px !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease !important;
}
.articles-preview__cta:hover {
  color: #fff !important;
  background: rgba(134,234,220,0.14) !important;
  border-color: rgba(134,234,220,0.45) !important;
}

/* ── Article cards: fresh redesign ──────────────────────── */

.article-preview-grid {
  gap: 24px !important;
  align-items: stretch !important;
}

.article-preview-card {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  border-radius: 20px !important;
  border: 1px solid rgba(255,255,255,0.72) !important;
  background: rgba(255,255,255,0.56) !important;
  backdrop-filter: blur(16px) !important;
  box-shadow: 0 4px 20px rgba(13,58,82,0.08) !important;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease !important;
}

/* Teal top accent line — appears on hover */
.article-preview-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 0 auto 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, var(--bt-mint), var(--bt-sky), transparent 80%) !important;
  opacity: 0 !important;
  transition: opacity 0.28s ease !important;
  z-index: 2 !important;
}

/* Bottom glow — remove old one */
.article-preview-card::after { display: none !important; }

.article-preview-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(255,255,255,0.9) !important;
  box-shadow: 0 18px 52px rgba(13,58,82,0.14), 0 0 0 1px rgba(255,255,255,0.5) !important;
}
.article-preview-card:hover::before { opacity: 1 !important; }

/* Image */
.article-preview-card__media {
  display: block !important;
  overflow: hidden !important;
  aspect-ratio: 16 / 9 !important;
  background: rgba(4,16,28,0.9) !important;
  flex-shrink: 0 !important;
}
.article-preview-card__media::after { display: none !important; }

.article-preview-card__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transform: scale(1.03) !important;
  transition: transform 0.42s ease !important;
  display: block !important;
}
.article-preview-card:hover .article-preview-card__media img {
  transform: scale(1.08) !important;
}

/* Body */
.article-preview-card__body {
  flex: 1 !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  padding: 22px 24px 20px !important;
  overflow: visible !important;
}

.article-preview-card .section-kicker {
  margin: 0 !important;
  color: #1a7080 !important;
  font-size: 0.76rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}

.article-preview-card h2,
.article-preview-card h3 {
  margin: 0 !important;
  color: #0d3a52 !important;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem) !important;
  font-weight: 700 !important;
  line-height: 1.38 !important;
  letter-spacing: -0.02em !important;
}
.article-preview-card h2 a,
.article-preview-card h3 a,
.article-preview-card h2 a:visited,
.article-preview-card h3 a:visited {
  color: inherit !important;
  text-decoration: none !important;
}
.article-preview-card h2 a:hover,
.article-preview-card h3 a:hover { color: #1a7080 !important; }

.article-preview-card p {
  margin: 0 !important;
  color: rgba(13,52,72,0.7) !important;
  font-size: 0.9rem !important;
  line-height: 1.65 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

/* Footer */
.article-preview-card__footer {
  display: block !important;
  margin-top: auto !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(13,52,72,0.1) !important;
}
.article-preview-card__footer a,
.article-preview-card__footer a:visited {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 10px 18px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(13,90,112,0.28) !important;
  background: rgba(13,90,112,0.1) !important;
  color: #0d5a70 !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  text-decoration: none !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
}
.article-preview-card__footer a::after {
  content: "→" !important;
  display: inline-block !important;
  transition: transform 0.18s ease !important;
}
.article-preview-card__footer a:hover,
.article-preview-card:hover .article-preview-card__footer a {
  background: rgba(13,90,112,0.18) !important;
  border-color: rgba(13,90,112,0.48) !important;
  color: #083e52 !important;
}
.article-preview-card:hover .article-preview-card__footer a::after {
  transform: translateX(4px) !important;
}

/* ─── 11. Plans section ──────────────────────────────────── */

.section-shell--plans {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
}
.section-shell--plans::before { display: none !important; }
.section-shell--plans .section-head--center h2 {
  color: var(--bt-white) !important;
  font-size: clamp(2.4rem, 4.5vw, 4rem) !important;
  letter-spacing: -0.05em !important;
}
.section-shell--plans .section-head--center .section-subhead { color: rgba(255,255,255,0.62) !important; }
.section-shell--plans .section-head--center .section-kicker { color: var(--bt-mint) !important; }

.section-shell--plans .plan-card {
  background: rgba(255,255,255,0.52) !important;
  border-color: rgba(255,255,255,0.7) !important;
  backdrop-filter: blur(18px) !important;
  box-shadow: 0 4px 24px rgba(13,58,82,0.08) !important;
  transition: transform 0.28s ease, box-shadow 0.28s ease !important;
}
.section-shell--plans .plan-card--featured {
  background: rgba(255,255,255,0.68) !important;
  border-color: rgba(134,234,220,0.6) !important;
  box-shadow: 0 0 0 2px rgba(86,220,202,0.35), 0 18px 56px rgba(13,58,82,0.14) !important;
}
.section-shell--plans h2,
.section-shell--plans .plan-card h2 { color: #0d3a52 !important; }
.section-shell--plans .plan-card__price { display: none !important; }
.section-shell--plans .plan-card__meta,
.section-shell--plans .plan-card__summary { color: rgba(13,52,72,0.68) !important; }
.section-shell--plans .plan-list li { color: rgba(13,52,72,0.78) !important; }
.section-shell--plans .section-kicker { color: #1a7080 !important; }

.plan-list li { padding-left: 26px; }
.plan-list li::before {
  width: 16px; height: 16px; top: 0.45em; border-radius: 50%;
  background: linear-gradient(135deg, var(--bt-mint), var(--bt-sky));
  box-shadow: 0 0 6px rgba(134,234,220,0.3);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5L6.5 12 13 5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5L6.5 12 13 5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
}

.section-shell--plans .plan-card {
  display: flex !important;
  flex-direction: column !important;
  align-content: unset !important;
  gap: 18px !important;
}
.section-shell--plans .plan-card .plan-list {
  flex: 0 0 auto !important;
}
.section-shell--plans .plan-card__cta {
  margin-top: auto !important;
  border-radius: 999px !important;
  background: rgba(13,58,82,0.1) !important; color: #0d3a52 !important;
  border-color: rgba(13,58,82,0.22) !important;
  transition: transform 0.2s ease, background 0.2s ease !important;
}
.section-shell--plans .plan-card__cta:not(.plan-card__cta--primary):hover {
  background: rgba(13,58,82,0.17) !important; transform: translateY(-2px); opacity: 1;
}
.section-shell--plans .plan-card__cta--primary {
  background: linear-gradient(135deg, #3cc9c5, #3fa2b4) !important;
  color: #ffffff !important; border-color: transparent !important;
  box-shadow: 0 8px 24px rgba(58,200,196,0.28) !important;
}
.section-shell--plans .plan-card__cta--primary:hover {
  background: linear-gradient(135deg, #4ed4d0, #4ab4c8) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 36px rgba(58,200,196,0.38) !important;
}
.section-shell--plans .plan-badge { background: rgba(13,58,82,0.09) !important; color: rgba(13,52,72,0.72) !important; }
.section-shell--plans .plan-badge--mint {
  background: rgba(58,200,196,0.14) !important;
  color: #1a7080 !important; border: 1px solid rgba(58,200,196,0.35) !important;
}
.section-shell--plans .plan-badge--dark { background: rgba(13,58,82,0.1) !important; color: rgba(13,52,72,0.72) !important; }
.section-shell--plans .plan-card--featured:hover {
  transform: translateY(-9px) !important;
  box-shadow: 0 0 0 2px rgba(86,220,202,0.45), 0 24px 64px rgba(13,58,82,0.18) !important;
}
.section-shell--plans .plan-card--default:hover,
.section-shell--plans .plan-card--soft:hover { transform: translateY(-5px) !important; }

/* ─── 12. Footer redesign ─────────────────────────────────── */

.site-footer {
  position: relative;
  background: linear-gradient(180deg, #1a4a62 0%, #0f3a52 50%, #082739 100%);
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 0;
}
.site-footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--bt-mint), var(--bt-sky), transparent);
}
.site-footer .wrap { padding: 80px 0 48px; }
.site-footer__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer__eyebrow {
  color: var(--bt-mint) !important;
  font-size: 0.76rem !important; letter-spacing: 0.18em !important;
  margin-bottom: 16px !important;
}
.site-footer__top h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.04em !important;
  color: var(--bt-white) !important;
  max-width: 520px !important;
  margin: 0 !important;
}
.site-footer__stores {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.site-footer__stores .store-btn--light {
  min-height: 56px; padding: 12px 24px; gap: 12px;
  border-radius: 999px; font-size: 0.96rem; font-weight: 700;
  color: var(--bt-ink) !important;
  background: linear-gradient(160deg, rgba(255,255,255,0.96), rgba(236,248,252,0.94)) !important;
  border-color: rgba(255,255,255,0.9) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,1) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.site-footer__stores .store-btn--light:hover {
  transform: translateY(-4px) !important; opacity: 1 !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(134,234,220,0.3), inset 0 1px 0 rgba(255,255,255,1) !important;
}
.site-footer__stores .store-icon { width: 22px; height: 22px; }

.site-footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.site-footer__links { gap: 8px !important; flex-wrap: wrap; }
.site-footer__links a { text-decoration: none !important; color: rgba(255,255,255,0.46) !important; font-size: 0.88rem !important; }
.site-footer__links a:hover { color: rgba(255,255,255,0.78) !important; }
.site-footer__bottom p { color: rgba(255,255,255,0.36) !important; font-size: 0.88rem !important; }

@media (max-width: 760px) {
  .site-footer__top { flex-direction: column; align-items: flex-start; }
  .site-footer__stores { flex-direction: row; }
}

/* ─── 13. Inner page cards — complete redesign ───────────── */

.glass-card--stage {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 24px !important;
  border: none !important;
  background: rgba(255,255,255,0) !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  padding: 36px 32px 32px !important;
  transition: transform 0.26s ease !important;
}

/* Left teal bar — the main accent */
.glass-card--stage::after {
  content: "" !important;
  position: absolute !important;
  top: 20% !important;
  bottom: 20% !important;
  left: 0 !important;
  width: 3px !important;
  background: linear-gradient(180deg, var(--bt-mint), var(--bt-sky)) !important;
  border-radius: 0 3px 3px 0 !important;
  opacity: 0.7 !important;
  transition: opacity 0.26s ease, top 0.26s ease, bottom 0.26s ease !important;
  pointer-events: none !important;
  z-index: 2 !important;
}
.glass-card--stage:nth-child(2)::after {
  background: linear-gradient(180deg, var(--bt-sky), var(--bt-mint)) !important;
}
.glass-card--stage:nth-child(3)::after {
  background: linear-gradient(180deg, rgba(134,234,220,0.9), rgba(159,220,255,0.6)) !important;
}

/* Background inner glow — repurpose ::before */
.glass-card--stage::before {
  display: none !important;
}

.glass-card--stage:hover {
  transform: translateY(-6px) !important;
}
.glass-card--stage:hover::after {
  opacity: 1 !important;
  top: 10% !important;
  bottom: 10% !important;
}

/* Bottom separator between cards */
.glass-card--stage + .glass-card--stage {
  border-top: 1px solid rgba(255,255,255,0.06) !important;
}

/* Card grid for inner pages — single column on mobile, 3-col on desktop */
.card-grid--three .glass-card--stage + .glass-card--stage {
  border-top: none !important;
}

/* Typography */
.glass-card--stage .section-kicker {
  margin: 0 0 12px !important;
  color: var(--bt-mint) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}
.glass-card--stage h2 {
  margin: 0 0 14px !important;
  color: #ffffff !important;
  font-size: clamp(1.35rem, 1.8vw, 1.7rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.03em !important;
}
.glass-card--stage p {
  margin: 0 !important;
  color: rgba(255,255,255,0.62) !important;
  font-size: 0.92rem !important;
  line-height: 1.7 !important;
}

/* Page-hero section head */
.page-hero { background: none !important; }
.page-hero h1 { color: var(--bt-white) !important; }
.eyebrow { color: var(--bt-mint) !important; }
.sub { color: rgba(255,255,255,0.68) !important; }

/* Page stat features — horizontal feature bar */
.page-hero--stage + .section-shell--soft {
  position: relative !important;
  z-index: 3 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: -86px !important;
}

.page-hero--stage + .section-shell--soft.section-shell::before {
  display: none !important;
}

.section-shell--articles-archive {
  margin-top: 0 !important;
  padding-top: 36px !important;
  z-index: 1 !important;
}

.section-shell--articles-archive::before {
  display: none !important;
}

.section-shell--articles-archive .article-preview-grid {
  margin-top: 0 !important;
}

.page-hero--articles {
  min-height: 100svh !important;
}

.page-hero--articles .doc-shell__head {
  min-height: calc(100svh - clamp(132px, 16svh, 176px)) !important;
}

.page-hero--stage + .section-shell--soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 57, 82, 0) 0%, rgba(24, 79, 106, 0.44) 34%, rgba(51, 105, 132, 0.78) 100%);
  pointer-events: none;
  z-index: 0;
}
.page-stat-grid {
  position: relative;
  z-index: 1;
  gap: 0 !important;
  margin-top: 0 !important;
}
.metric-pill--page {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 22px 32px !important;
  border-radius: 0 !important;
  border-right: 1px solid rgba(134,234,220,0.15) !important;
  background: rgba(134,234,220,0.04) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  min-height: unset !important;
  box-shadow: none !important;
  transform: none !important;
  transition: background 0.18s ease !important;
}
.metric-pill--page:first-child {
  border-radius: 64px 0 0 64px !important;
}
.metric-pill--page:last-child {
  border-radius: 0 64px 64px 0 !important;
}
.metric-pill--page:hover {
  background: rgba(134,234,220,0.08) !important;
  transform: none !important;
  box-shadow: none !important;
}
.metric-pill--page::before {
  content: "✓" !important;
  flex-shrink: 0 !important;
  color: var(--bt-mint) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}
.metric-pill--page strong {
  color: rgba(255,255,255,0.9) !important;
  font-size: 0.93rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  line-height: 1.45 !important;
}

/* Store buttons on page hero */
.store-links--page .store-btn {
  min-height: 54px; padding: 12px 24px; border-radius: 999px;
}

/* ─── 14. Legal / doc pages ──────────────────────────────── */

.doc-shell { position: relative; overflow: hidden; }
.doc-shell::after {
  content: "";
  position: absolute; top: -80px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(134,234,220,0.07) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.doc-shell > .wrap { position: relative; z-index: 1; }
.doc-shell__head h1 { color: var(--bt-white) !important; }
.doc-shell__head .sub { color: rgba(255,255,255,0.65) !important; }

.doc-card {
  position: relative; overflow: hidden;
  border-radius: 28px !important;
  border-color: rgba(255,255,255,0.18) !important;
  background: rgba(255,255,255,0.12) !important;
  backdrop-filter: blur(28px) !important;
  box-shadow: 0 24px 60px rgba(2,8,16,0.18), 0 0 0 1px rgba(255,255,255,0.1) !important;
}
.doc-card::before {
  display: none !important;
}
.doc-content { color: rgba(255,255,255,0.82) !important; }
.doc-content h2 { color: var(--bt-white) !important; font-size: clamp(1.5rem,2vw,2rem) !important; }
.doc-content h3 { color: rgba(255,255,255,0.92) !important; }
.doc-content h1,h4,h5,h6 { color: var(--bt-white) !important; }
.doc-content p,
.doc-content li,
.doc-content div,
.doc-content span { color: rgba(255,255,255,0.74) !important; }
.doc-content a { color: var(--bt-mint) !important; }
.doc-content a {
  color: #1f6f92 !important;
  text-decoration-color: rgba(31, 111, 146, 0.34) !important;
}
.doc-content a:hover,
.doc-content a:focus-visible {
  color: #184f69 !important;
  text-decoration-color: rgba(24, 79, 105, 0.5) !important;
}
.doc-content ol,
.doc-content ul { border-left: 2px solid rgba(134,234,220,0.18); padding-left: 1.4rem; }

.doc-shell--legal .doc-card {
  border-color: rgba(80,110,128,0.16) !important;
  background: linear-gradient(180deg, rgba(241,245,248,0.98), rgba(232,238,243,0.98)) !important;
  backdrop-filter: none !important;
  box-shadow: 0 20px 54px rgba(37,63,79,0.09), 0 0 0 1px rgba(255,255,255,0.55) inset !important;
}

.doc-shell--legal .doc-content {
  color: #3d5767 !important;
}

.doc-shell--legal .doc-content h1,
.doc-shell--legal .doc-content h2,
.doc-shell--legal .doc-content h3,
.doc-shell--legal .doc-content h4,
.doc-shell--legal .doc-content h5,
.doc-shell--legal .doc-content h6 {
  color: #1d394a !important;
}

.doc-shell--legal .doc-content p,
.doc-shell--legal .doc-content li,
.doc-shell--legal .doc-content div,
.doc-shell--legal .doc-content span {
  color: #4d6676 !important;
}

.doc-shell--legal .doc-content a {
  color: #285f7e !important;
  text-decoration-color: rgba(40,95,126,0.32) !important;
}

.doc-shell--legal .doc-content a:hover,
.doc-shell--legal .doc-content a:focus-visible {
  color: #1f4d67 !important;
  text-decoration-color: rgba(31,77,103,0.48) !important;
}

.doc-shell--legal .doc-content ol,
.doc-shell--legal .doc-content ul {
  border-left-color: rgba(64,100,120,0.14) !important;
}

/* ─── 15. Section heads / kickers ───────────────────────── */

.section-kicker { color: var(--bt-mint) !important; }
.section-head--center h2 {
  color: var(--bt-white) !important;
  font-size: clamp(2.6rem, 4.8vw, 4.4rem) !important;
  letter-spacing: -0.05em !important;
}
.section-head--center::after {
  background: linear-gradient(90deg, transparent, var(--bt-mint), var(--bt-sky), transparent) !important;
}
.section-subhead { color: rgba(255,255,255,0.62) !important; }

/* ─── 16. Hero responsive ────────────────────────────────── */

@media (max-width: 900px) {
  .hero-grid--calm {
    padding: 100px 0 64px !important;
    gap: 56px !important;
  }
  .hero-copy h1 { font-size: clamp(2.8rem, 9vw, 4.8rem) !important; }
  .hero-grid--calm .showcase--simple { min-height: 460px !important; }
}
@media (max-width: 600px) {
  /* Single column, full width */
  .hero-grid--calm {
    grid-template-columns: 1fr !important;
    padding: 72px 0 52px !important;
    gap: 0 !important;
  }
  .hero-copy h1 { font-size: clamp(2.2rem, 11vw, 3.8rem) !important; }
  .hero-copy .store-links { flex-direction: column; align-items: stretch; }
  .hero-copy .hero-metrics--simple { grid-template-columns: 1fr !important; }
  /* Hide phone showcase on small screens */
  .hero-grid--calm .showcase--simple { display: none !important; }
}

/* ─── 17. Reduced motion ─────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .hero-shell .phone.one,
  .hero-shell .phone.two,
  .hero-shell .glow,
  .hero-shell--client::before,
  .hero-shell--client::after,
  .hero-stars--far::before,
  .hero-stars--far::after,
  .hero-stars--near::before,
  .hero-stars--near::after,
  .showcase--simple .glow::before,
  .showcase--simple .glow::after,
  .hero-orbit-dot,
  .feature-badge::before { animation: none !important; }
}


/* ============================================================
   LUNA FOOTER — Complete Redesign
   ============================================================ */

/* ── Reset all base footer card styles ──────────────────── */

.site-footer {
  margin-top: 0 !important;
  padding: 0 !important;
  position: relative;
  background: linear-gradient(180deg, #94c0d4 0%, #5a93ad 40%, #2a6a8a 100%) !important;
  border-top: none !important;
  box-shadow: none !important;
}

/* Remove the old rounded glass card on .wrap */
.site-footer .wrap {
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* ── Teal gradient top border ────────────────────────────── */

.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(134,234,220,0.4) 25%,
    rgba(159,220,255,0.6) 50%,
    rgba(134,234,220,0.4) 75%,
    transparent 100%
  );
  z-index: 1;
}

/* ── Top section: headline + CTA grid ───────────────────── */

.site-footer__top {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: end !important;
  gap: 64px !important;
  padding: 80px 0 60px !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  border-top: none !important;
  flex-direction: unset !important;
  flex-wrap: unset !important;
}

/* Eyebrow label */
.site-footer__eyebrow {
  display: block !important;
  color: var(--bt-mint) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  margin: 0 0 20px !important;
}

/* Headline */
.site-footer__top h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.2rem) !important;
  font-weight: 800 !important;
  line-height: 1.06 !important;
  letter-spacing: -0.045em !important;
  color: #ffffff !important;
  margin: 0 !important;
  max-width: 22ch !important;
  text-wrap: balance;
}

/* ── Store buttons column ────────────────────────────────── */

.site-footer__stores {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  flex-shrink: 0 !important;
  width: auto !important;
  align-items: stretch !important;
}

/* Base reset for both footer store buttons */
.site-footer__stores .store-btn--light,
.site-footer__stores a.store-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  min-height: 58px !important;
  min-width: 200px !important;
  padding: 0 22px !important;
  border-radius: 999px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  border: 1px solid !important;
  width: auto !important;
}

/* App Store — dark premium */
.site-footer__stores .store-btn--light:first-child {
  background: linear-gradient(150deg, #0d1e2e, #060e18) !important;
  border-color: rgba(255,255,255,0.2) !important;
  color: #ffffff !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 16px 40px rgba(0,0,0,0.5) !important;
}
.site-footer__stores .store-btn--light:first-child:hover {
  transform: translateY(-4px) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 24px 50px rgba(0,0,0,0.65), 0 0 20px rgba(134,234,220,0.14) !important;
  opacity: 1 !important;
}

/* Google Play — teal glass */
.site-footer__stores .store-btn--light:last-child {
  background: linear-gradient(150deg, rgba(134,234,220,0.14), rgba(134,234,220,0.05)) !important;
  border-color: rgba(134,234,220,0.32) !important;
  color: #ffffff !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 16px 40px rgba(0,0,0,0.35) !important;
}
.site-footer__stores .store-btn--light:last-child:hover {
  transform: translateY(-4px) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 24px 50px rgba(0,0,0,0.45), 0 0 24px rgba(134,234,220,0.2) !important;
  opacity: 1 !important;
}

/* Store icon */
.site-footer__stores .store-icon {
  width: 24px !important;
  height: 24px !important;
  flex-shrink: 0 !important;
}

/* ── Bottom bar: legal links + copyright ─────────────────── */

.site-footer__bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  padding: 28px 0 60px !important;
  border-top: none !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
}

.site-footer__legal {
  width: auto !important;
}

.site-footer__links {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px 20px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-footer__links li { margin: 0 !important; }

.site-footer__links a,
.site-footer__links a:visited {
  color: rgba(255,255,255,0.38) !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  letter-spacing: 0.01em !important;
  transition: color 0.16s ease !important;
}
.site-footer a:hover,
.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: rgba(255,255,255,0.75) !important;
}

.site-footer__bottom > p {
  margin: 0 !important;
  color: rgba(255,255,255,0.28) !important;
  font-size: 0.85rem !important;
  white-space: nowrap;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 800px) {
  .site-footer__top {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
    padding: 64px 0 52px !important;
  }
  .site-footer__stores {
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }
  .site-footer__stores .store-btn--light,
  .site-footer__stores a.store-btn {
    min-width: 180px !important;
    width: auto !important;
  }
}

@media (max-width: 600px) {
  .site-footer__top { padding: 52px 0 44px !important; }
  .site-footer__stores { flex-direction: column !important; }
  .site-footer__stores .store-btn--light,
  .site-footer__stores a.store-btn { min-width: 0 !important; width: 100% !important; }
  .site-footer__bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
    padding-bottom: 48px !important;
  }
  /* Override base that makes all .store-btn 100% wide on mobile */
  .site-footer__stores .store-btn--light { width: 100% !important; }
}


/* ============================================================
   LUNA HEADER — Complete Redesign v3
   ============================================================ */

/* ── Wrapper ──────────────────────────────────────────────── */

.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 200 !important;
}

.site-header__inner {
  display: grid !important;
  grid-template-columns: minmax(140px, 1fr) auto minmax(220px, 1fr) !important;
  align-items: center !important;
  gap: 32px !important;
  width: 100% !important;
  padding: 0 48px !important;
  height: 80px !important;
  background: linear-gradient(180deg, rgba(8, 39, 57, 0.58), rgba(11, 59, 86, 0.42)) !important;
  backdrop-filter: blur(20px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.08) !important;
  border-bottom: 1px solid rgba(215,237,247,0.08) !important;
  box-shadow: 0 1px 0 rgba(215,237,247,0.03), 0 8px 24px rgba(6,22,34,0.08) !important;
}

/* ── Brand / Logo ─────────────────────────────────────────── */

.site-brand {
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
  justify-self: start !important;
  opacity: 0.95;
  transition: opacity 0.18s ease !important;
}
.site-brand:hover { opacity: 1; }

.site-brand__mark {
  width: 48px !important;
  height: 48px !important;
  flex: 0 0 48px !important;
}
.site-brand__mark img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* ── Navigation ───────────────────────────────────────────── */

.site-nav {
  display: flex !important;
  justify-content: center !important;
  min-width: 0 !important;
  justify-self: center !important;
}

.site-nav .menu {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-nav li { margin: 0 !important; }

/* Nav link: pill-style hover */
.site-nav a {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  min-height: 36px !important;
  padding: 0 14px !important;
  border-radius: 10px !important;
  color: rgba(255,255,255,0.72) !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  text-decoration: none !important;
  transition: color 0.16s ease, background 0.16s ease !important;
}

/* Remove the old underline pseudo-element */
.site-nav a::after { display: none !important; }

/* Hover state */
.site-nav a:hover,
.site-nav a:focus-visible {
  color: rgba(255,255,255,0.92) !important;
  background: rgba(255,255,255,0.08) !important;
  text-shadow: none !important;
}

/* Active / current page */
.site-nav .current-menu-item a,
.site-nav .current_page_item a {
  color: var(--bt-mint) !important;
  background: rgba(134,234,220,0.1) !important;
  text-shadow: none !important;
}
.site-nav .current-menu-item a:hover,
.site-nav .current_page_item a:hover {
  background: rgba(134,234,220,0.15) !important;
}

/* ── Actions group ────────────────────────────────────────── */

.site-header__actions {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  flex-shrink: 0 !important;
  justify-self: end !important;
}

/* ── Language switcher ────────────────────────────────────── */

.lang-menu {
  position: relative !important;
  z-index: 300 !important;
}

.lang-menu summary {
  list-style: none !important;
  outline: none !important;
}
.lang-menu summary::-webkit-details-marker { display: none !important; }

.lang-menu__trigger {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  min-height: 40px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(167,199,216,0.22) !important;
  background: rgba(167,199,216,0.08) !important;
  color: rgba(255,255,255,0.82) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  user-select: none !important;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease !important;
}
.lang-menu__trigger:hover {
  color: rgba(255,255,255,0.95) !important;
  background: rgba(167,199,216,0.14) !important;
  border-color: rgba(167,199,216,0.34) !important;
}

/* Chevron icon */
.lang-menu__trigger::after {
  content: "" !important;
  width: 8px !important;
  height: 8px !important;
  border-right: 1.5px solid currentColor !important;
  border-bottom: 1.5px solid currentColor !important;
  transform: rotate(45deg) translateY(-2px) !important;
  transition: transform 0.18s ease !important;
  opacity: 0.7;
}
.lang-menu[open] .lang-menu__trigger {
  color: rgba(255,255,255,0.9) !important;
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(134,234,220,0.3) !important;
}
.lang-menu[open] .lang-menu__trigger::after {
  transform: rotate(225deg) translateY(1px) !important;
}

/* Dropdown panel */
.lang-menu__panel {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  min-width: 100px !important;
  padding: 6px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  border: 1px solid rgba(134,234,220,0.16) !important;
  border-radius: 14px !important;
  background: linear-gradient(180deg, rgba(8,39,57,0.97), rgba(15,69,96,0.95)) !important;
  backdrop-filter: blur(28px) !important;
  box-shadow: 0 16px 48px rgba(7,30,44,0.4), 0 0 0 1px rgba(134,234,220,0.06) !important;
  z-index: 9999 !important;
}

/* Dropdown items */
.lang-menu__item {
  display: block !important;
  padding: 9px 14px !important;
  border-radius: 9px !important;
  color: rgba(255,255,255,0.62) !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: color 0.14s ease, background 0.14s ease !important;
}
.lang-menu__item.is-current {
  color: var(--bt-mint) !important;
  background: rgba(134,234,220,0.1) !important;
}
.lang-menu__item:hover,
.lang-menu__item:focus-visible {
  color: #fff !important;
  background: rgba(255,255,255,0.08) !important;
}

/* ── Download CTA — matches lang-menu__trigger style ─────── */

.site-header__cta--glass {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 40px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(167,199,216,0.22) !important;
  background: rgba(167,199,216,0.08) !important;
  color: rgba(255,255,255,0.82) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease !important;
  user-select: none !important;
  white-space: nowrap !important;
}
.site-header__cta--glass:hover,
.site-header__cta--glass:focus-visible {
  color: rgba(255,255,255,0.95) !important;
  background: rgba(167,199,216,0.14) !important;
  border-color: rgba(167,199,216,0.34) !important;
  opacity: 1 !important;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 960px) {
  .site-header__inner {
    grid-template-columns: minmax(84px, auto) minmax(0, 1fr) auto !important;
    padding: 0 28px !important;
    gap: 20px !important;
  }
  .site-nav .menu { gap: 0 !important; }
  .site-nav a { padding: 0 10px !important; font-size: 0.83rem !important; }
  .site-header__actions { gap: 14px !important; }
}

@media (max-width: 760px) {
  /* Switch to flexbox so hidden nav doesn't break grid column positioning */
  .site-header__inner {
    display: flex !important;
    align-items: center !important;
    height: 68px !important;
    padding: 0 20px !important;
    gap: 0 !important;
  }
  /* Hide desktop nav — replaced by mobile drawer */
  .site-nav { display: none !important; }
  /* Push actions to the far right */
  .site-header__actions {
    margin-left: auto !important;
    width: auto !important;
  }
  /* Hide desktop CTA and lang — drawer has its own */
  .site-header__cta { display: none !important; }
  .lang-menu { display: none !important; }
  /* Show hamburger */
  .mobile-menu-toggle { display: flex !important; }
}

/* ── Mobile hamburger button ──────────────────────────────── */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: rgba(134, 234, 220, 0.08);
  border: 1px solid rgba(134, 234, 220, 0.2);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Animate to X when open */
.mobile-menu-open .mobile-menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-open .mobile-menu-toggle__bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu-open .mobile-menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile drawer ─────────────────────────────────────────── */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: linear-gradient(180deg, rgba(9, 38, 58, 0.97), rgba(12, 58, 84, 0.97));
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-left: 1px solid rgba(134, 234, 220, 0.16);
  z-index: 9998;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.mobile-menu-open .mobile-drawer {
  transform: translateX(0);
}

.mobile-drawer__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 16, 0.6);
  z-index: 9997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.mobile-menu-open .mobile-drawer__backdrop {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 88px 0 40px;
  overflow-y: auto;
}

.mobile-drawer__nav {
  flex: 1;
}

.mobile-drawer__nav ul,
.mobile-nav-menu {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mobile-drawer__nav li,
.mobile-nav-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.mobile-drawer__nav a,
.mobile-nav-menu a {
  display: block !important;
  padding: 16px 28px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: color 0.18s ease, background 0.18s ease !important;
  background: transparent !important;
}

.mobile-drawer__nav a:hover,
.mobile-nav-menu a:hover,
.mobile-drawer__nav .current-menu-item a,
.mobile-nav-menu .current-menu-item a,
.mobile-drawer__nav .current_page_item a,
.mobile-nav-menu .current_page_item a {
  color: #fff !important;
  background: rgba(134, 234, 220, 0.06) !important;
}

.mobile-drawer__footer {
  padding: 28px 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-drawer__lang {
  display: flex;
  gap: 8px;
}

.mobile-drawer__lang-item {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.16s, border-color 0.16s;
}

.mobile-drawer__lang-item.is-current {
  color: var(--bt-mint);
  border-color: rgba(134, 234, 220, 0.4);
}

.mobile-drawer__cta {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(134, 234, 220, 0.22), rgba(134, 234, 220, 0.1));
  border: 1px solid rgba(134, 234, 220, 0.3);
  color: #fff;
  font-weight: 700;
  font-size: 0.97rem;
  text-decoration: none;
  transition: background 0.18s ease;
}

.mobile-drawer__cta:hover {
  background: linear-gradient(135deg, rgba(134, 234, 220, 0.32), rgba(134, 234, 220, 0.16));
}




/* ── Articles heading ─────────────────────────────────────── */

.section-articles-heading {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.6vw, 3rem);
  letter-spacing: -0.04em;
  color: #0d3a52;
  line-height: 1.08;
}

/* ── 100vh section mobile fallback ───────────────────────── */

@media (max-width: 720px) {
  .feature-showcase,
  .section-shell--why,
  .section-shell--articles-preview,
  .section-shell--plans {
    min-height: auto;
    padding: 64px 0;
  }
}

/* ============================================================
   Steps, Q&A, and page CTA sections
   ============================================================ */

/* Shared section heading */
.section-head {
  margin-bottom: 52px;
}
.section-head--center {
  text-align: center;
}
.section-head--center .eyebrow {
  justify-content: center;
}
.section-head h2 {
  color: var(--bt-white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 8px 0 0;
}

/* ── Steps: vertical list panel ────────────────────────── */
.section-shell--steps {
  padding: 80px 0;
}
.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step-counter;
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid rgba(134,234,220,0.14);
  border-radius: 20px;
  overflow: hidden;
}
.step-item {
  counter-increment: step-counter;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 28px;
  align-items: start;
  padding: 28px 40px;
  border-top: 1px solid rgba(134,234,220,0.1);
  background: rgba(134,234,220,0.02);
  position: static;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 0.18s ease;
}
.step-item:first-child {
  border-top: none;
}
.step-item:hover {
  background: rgba(134,234,220,0.06);
}
/* Number column */
.step-item__num {
  display: none;
}
.step-item::before {
  content: counter(step-counter);
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--bt-mint);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  opacity: 0.7;
}
.step-item h3 {
  grid-column: 2;
  grid-row: 1;
  color: var(--bt-white);
  font-size: 0.96rem;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.35;
}
.step-item p {
  grid-column: 2;
  grid-row: 2;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* ── Q&A: accordion ────────────────────────────────────── */
.section-shell--qa {
  padding: 80px 0;
  background: transparent;
}
.qa-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.1);
}
.qa-item {
  border-top: 1px solid rgba(134,234,220,0.12);
  background: none;
  border-radius: 0;
  transition: background 0.22s ease;
}
.qa-item:first-child {
  border-top: none;
}
.qa-item.is-open {
  background: rgba(134,234,220,0.06);
}
/* Summary = question row */
.qa-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 32px;
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.18s ease;
}
.qa-item__q::-webkit-details-marker { display: none; }
.qa-item__q { background: none; border: none; text-align: left; width: 100%; font-family: inherit; }
.qa-item__q:hover { color: #fff; }
/* Chevron */
.qa-item__q::after {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(134,234,220,0.35);
  background: rgba(134,234,220,0.08) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2386EADC' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
  transition: transform 0.28s ease, border-color 0.18s ease;
}
.qa-item.is-open .qa-item__q::after {
  transform: rotate(180deg);
  border-color: rgba(134,234,220,0.6);
}
/* Answer — animated via max-height */
.qa-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding-bottom 0.35s ease;
  padding: 0 32px;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  line-height: 1.72;
  margin: 0;
}
.qa-item.is-open .qa-item__a {
  max-height: 400px;
  padding-bottom: 24px;
}

/* Page CTA section */
.section-shell--page-cta {
  padding: 96px 0;
}
.page-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.page-cta h2 {
  color: var(--bt-white);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin: 0;
}
.page-cta p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  max-width: 480px;
  margin: 0;
}
.store-links--cta {
  margin-top: 8px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Standard store badges */
.store-btn--badge {
  background: #000 !important;
  border-color: transparent !important;
  border-radius: 12px !important;
  padding: 10px 18px !important;
  min-height: 54px !important;
  gap: 10px !important;
  color: #fff !important;
}
.store-btn--badge .store-btn__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
}
.store-btn--badge .store-btn__label small {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.82;
}
.store-btn--badge .store-btn__label strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.store-btn--badge:hover,
.store-btn--badge:focus-visible {
  background: #1a1a1a !important;
  opacity: 1 !important;
  transform: translateY(-2px);
}
.store-btn--badge .store-icon {
  width: 24px;
  height: 24px;
}

/* Responsive: steps & qa */
@media (max-width: 760px) {
  .step-item {
    padding: 22px 24px;
    column-gap: 18px;
  }
  .steps-grid {
    border-radius: 16px;
  }
}
@media (max-width: 600px) {
  .step-item {
    grid-template-columns: 32px 1fr;
    column-gap: 14px;
    padding: 20px;
  }
  .step-item::before {
    font-size: 1.1rem;
  }
  /* Feature bar: vertical stack on mobile */
  .metric-pill--page {
    border-right: none !important;
    border-bottom: 1px solid rgba(134,234,220,0.15) !important;
  }
  .metric-pill--page:last-child {
    border-bottom: none !important;
  }
  .qa-item__q {
    padding: 20px 20px;
  }
  .qa-item__a {
    padding: 0 20px 20px;
  }
  .section-shell--steps,
  .section-shell--qa,
  .section-shell--page-cta {
    padding: 56px 0;
  }
}

/* ============================================================
   MOBILE AUDIT — comprehensive responsive fixes
   ============================================================ */

/* 1. Cross-browser overflow-x prevention — use clip not hidden (hidden breaks sticky) */
body {
  overflow-x: clip;
}

/* 2. Keep hero free from clipping so atmospheric layers can breathe */
.hero-shell--client {
  overflow: visible;
}

/* 3. Header — keep 3-column row (logo | nav | actions) down to 760px.
      The base 1100px query was collapsing the header to a single column,
      creating a 3-row stacked header on tablets. */
@media (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
  }
  .site-header__actions {
    width: auto !important;
  }
}

/* 4. Feature bar (metric pills) — keep pills horizontal until 640px,
      fix border-radius and border direction when stacked */
@media (max-width: 1100px) {
  .page-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .page-stat-grid {
    grid-template-columns: 1fr !important;
  }

  /* Restore some padding so the stacked bar doesn't feel flat */
  .page-hero--stage + .section-shell--soft {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  /* Correct pill shape when vertically stacked */
  .metric-pill--page:first-child {
    border-radius: 16px 16px 0 0 !important;
  }
  .metric-pill--page:last-child {
    border-radius: 0 0 16px 16px !important;
    border-bottom: none !important;
  }
}

/* 6. Page CTA heading sizing (was 7) */

/* 7. Page CTA — stack store buttons on small screens */
@media (max-width: 540px) {
  .store-links--cta {
    flex-direction: column;
    align-items: center;
  }
  .store-links--cta .store-btn {
    width: 100%;
    max-width: 320px;
  }
}

/* 8. Page CTA heading sizing */
@media (max-width: 600px) {
  .page-cta h2 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }
  .page-cta p {
    font-size: 0.97rem;
  }
}

/* 9. QA accordion — tighter on very small screens */
@media (max-width: 480px) {
  .qa-grid {
    border-radius: 14px;
  }
  .qa-item__q {
    padding: 18px 16px !important;
    font-size: 0.92rem;
  }
  .qa-item__a {
    padding: 0 16px !important;
  }
  .qa-item.is-open .qa-item__a {
    padding-bottom: 18px !important;
  }
}

/* 10. Section headings on small screens */
@media (max-width: 540px) {
  .section-head {
    margin-bottom: 32px;
  }
  .section-head h2 {
    font-size: clamp(1.4rem, 7vw, 1.9rem);
  }
}

/* 11. Wrap on very small screens */
@media (max-width: 360px) {
  .wrap {
    width: calc(100% - 16px);
  }
}

/* 12. Page-hero phone visual — shrink on mobile, keep centred */
@media (max-width: 600px) {
  .page-hero__grid {
    grid-template-columns: 1fr !important;
  }
  .page-hero__visual,
  .page-hero__visual--single {
    min-height: 0 !important;
    justify-self: center !important;
    width: 100% !important;
    overflow: hidden !important;
    display: flex !important;
    justify-content: center !important;
  }
  /* Shrink phone to roughly half size */
  .phone--page.one {
    width: min(160px, 42vw) !important;
    position: relative !important;
    top: auto !important; right: auto !important;
    left: auto !important; bottom: auto !important;
    transform: rotate(-6deg) !important;
  }
  .phone--page.two {
    display: none !important;
  }
}

/* 13. Article mockup — no rotation on mobile */
@media (max-width: 500px) {
  .article-mockup-phone {
    width: 100%;
    border-radius: 16px;
  }
}

/* ============================================================
   Premium consistency pass
   ============================================================ */

body {
  background:
    radial-gradient(circle at 18% 4%, rgba(126, 197, 234, 0.08), transparent 20%),
    radial-gradient(circle at 82% 6%, rgba(215, 237, 247, 0.08), transparent 18%),
    linear-gradient(180deg, #082739 0%, #0b3b56 18%, #497891 48%, #97b8c9 78%, #dbeaf1 100%) !important;
}

.hero-copy .sub,
.section-subhead,
.section-subhead--articles,
.feature-showcase__text > p,
.why-card p,
.page-cta p {
  color: rgba(255, 255, 255, 0.74) !important;
}

.feature-showcase__list li {
  color: rgba(255, 255, 255, 0.78) !important;
}

.why-card {
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 16px 44px rgba(4, 16, 28, 0.18) !important;
}

.why-card:hover {
  border-color: rgba(183, 242, 255, 0.28) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 22px 56px rgba(4, 16, 28, 0.22) !important;
}

.article-preview-card {
  border-color: rgba(255, 255, 255, 0.6) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(245, 248, 250, 0.7)) !important;
  box-shadow: 0 14px 40px rgba(13, 58, 82, 0.09) !important;
}

.article-preview-card:hover {
  box-shadow: 0 24px 60px rgba(13, 58, 82, 0.14), 0 0 0 1px rgba(255, 255, 255, 0.42) !important;
}

.article-preview-card p,
.section-shell--plans .plan-card__meta,
.section-shell--plans .plan-card__summary,
.section-shell--plans .plan-list li {
  color: rgba(13, 52, 72, 0.8) !important;
}

.section-shell--plans .plan-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(245, 248, 250, 0.54)) !important;
  border-color: rgba(255, 255, 255, 0.54) !important;
  box-shadow: 0 16px 44px rgba(13, 58, 82, 0.08) !important;
}

.section-shell--plans .plan-card--featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(244, 248, 248, 0.66)) !important;
  border-color: rgba(117, 240, 222, 0.42) !important;
  box-shadow: 0 0 0 1px rgba(117, 240, 222, 0.26), 0 24px 60px rgba(13, 58, 82, 0.12) !important;
}

.section-shell--plans {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 8%, rgba(126, 232, 255, 0.13), transparent 16%),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.07), transparent 14%),
    radial-gradient(circle at 16% 64%, rgba(126, 232, 255, 0.05), transparent 12%),
    linear-gradient(180deg, #0b3b56 0%, #497891 42%, #9fbccc 100%) !important;
}

.section-shell--plans::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 45, 66, 0.16) 0%, rgba(11, 53, 77, 0.06) 28%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.section-shell--plans > .wrap {
  position: relative;
  z-index: 1;
}

.section-shell--page-cta {
  position: relative;
  padding: 110px 0 88px !important;
}

.section-shell--page-cta::before {
  content: "";
  position: absolute;
  inset: 8% 0 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(127, 232, 255, 0.12), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.07), transparent 18%),
    radial-gradient(circle at 82% 82%, rgba(121, 240, 220, 0.06), transparent 18%),
    linear-gradient(180deg, rgba(223, 245, 255, 0.02), rgba(223, 245, 255, 0.004));
  pointer-events: none;
}

.page-cta {
  position: relative;
  max-width: 940px;
  padding: 48px 40px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    radial-gradient(circle at 16% 16%, rgba(127, 232, 255, 0.38), transparent 22%),
    radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.2), transparent 16%),
    radial-gradient(circle at 82% 82%, rgba(121, 240, 220, 0.22), transparent 18%),
    linear-gradient(135deg, rgba(4, 24, 36, 0.78), rgba(10, 56, 78, 0.58) 52%, rgba(167, 203, 220, 0.18));
  box-shadow:
    0 36px 100px rgba(4, 22, 34, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
}

.page-cta h2 {
  letter-spacing: -0.04em;
}

.page-cta__eyebrow {
  margin: 0 0 4px;
  color: rgba(215, 237, 247, 0.86) !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-cta__lead {
  margin-top: 8px !important;
  color: var(--bt-white) !important;
  font-size: 1.02rem !important;
  font-weight: 700;
  max-width: 620px;
}

.page-cta__hint {
  margin-top: 10px !important;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 0.92rem !important;
  max-width: 560px;
}

.store-btn--badge {
  background: linear-gradient(180deg, rgba(7, 23, 36, 0.96), rgba(5, 16, 27, 0.96)) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 34px rgba(0, 0, 0, 0.22) !important;
  min-height: 64px !important;
  min-width: 224px;
  padding: 14px 22px !important;
  border-radius: 18px !important;
  gap: 14px !important;
}

.store-btn--badge:hover,
.store-btn--badge:focus-visible {
  background: linear-gradient(180deg, rgba(10, 29, 44, 0.98), rgba(7, 20, 33, 0.98)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 18px 40px rgba(0, 0, 0, 0.28) !important;
  transform: translateY(-3px) scale(1.01);
}

.store-links--cta {
  margin-top: 18px !important;
  gap: 18px !important;
}

.store-links--cta .store-btn {
  position: relative;
}

.store-links--cta .store-btn::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 24px;
  border: 1px solid rgba(215, 237, 247, 0.08);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.store-links--cta .store-btn:hover::after,
.store-links--cta .store-btn:focus-visible::after {
  opacity: 1;
}

.store-btn--badge .store-btn__label small {
  font-size: 0.68rem !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.76;
}

.store-btn--badge .store-btn__label strong {
  font-size: 1.08rem !important;
  font-weight: 800 !important;
}

.site-footer {
  background: transparent !important;
  box-shadow: none !important;
}

.site-footer::before {
  display: none !important;
}

.site-footer .wrap {
  width: min(1280px, calc(100% - 48px)) !important;
  padding: 22px 0 6px !important;
}

.site-footer__top {
  display: none !important;
}

.site-footer__top > div {
  width: 100%;
  max-width: none;
}

.site-footer__top h2 {
  max-width: none !important;
  width: 100%;
  font-size: clamp(1.08rem, 1.45vw, 1.45rem) !important;
  line-height: 1.16 !important;
  color: rgba(255, 255, 255, 0.62) !important;
  letter-spacing: -0.03em !important;
}

.site-footer__eyebrow {
  margin-bottom: 4px !important;
  color: rgba(215, 237, 247, 0.34) !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.16em !important;
}

.site-footer__stores {
  margin-top: 10px !important;
  gap: 10px !important;
}

.site-footer__stores .store-btn--light,
.site-footer__stores a.store-btn {
  min-height: 44px !important;
  padding: 9px 14px !important;
  border-radius: 13px !important;
  font-size: 0.92rem !important;
  opacity: 0.88;
}

.site-footer__bottom {
  padding-top: 0 !important;
  border-top: none !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 16px !important;
  align-items: center !important;
}

.site-footer__legal {
  width: auto !important;
  min-width: 0 !important;
}

.site-footer__links {
  justify-content: flex-start !important;
  gap: 8px 26px !important;
}

.site-footer__links a,
.site-footer__links a:visited {
  color: rgba(19, 49, 65, 0.62) !important;
  font-size: 0.82rem !important;
  line-height: 1.45 !important;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: rgba(19, 49, 65, 0.86) !important;
}

.site-footer__bottom > p {
  color: rgba(19, 49, 65, 0.54) !important;
  font-size: 0.82rem !important;
  white-space: nowrap !important;
  margin: 0 !important;
  justify-self: end !important;
}

@media (max-width: 800px) {
  .page-cta {
    padding: 38px 24px;
    border-radius: 28px;
  }

  .site-footer .wrap {
    width: calc(100% - 32px) !important;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .site-footer__bottom > p {
    justify-self: start !important;
  }

  .store-btn--badge {
    min-width: 208px;
  }
}

/* 18. First-screen sizing + shared starfield */

.page-hero--stage {
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: flex;
  align-items: center;
}

.page-hero--stage .wrap,
.hero-shell--client .wrap {
  position: relative;
  z-index: 1;
}

.hero-shell--client .hero-grid--calm,
.page-hero--stage .page-hero__grid,
.page-hero--stage .doc-shell__head {
  min-height: auto;
  align-content: center;
}

.page-hero--stage .doc-shell__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-shell--client .hero-grid--calm {
  padding: clamp(108px, 13svh, 144px) 0 clamp(34px, 5svh, 52px) !important;
}

.page-hero--stage {
  padding: clamp(108px, 13svh, 144px) 0 clamp(34px, 5svh, 52px);
}

.hero-grid--calm .showcase--simple {
  min-height: clamp(340px, 44svh, 500px) !important;
}

.page-hero__visual,
.page-hero__visual--single {
  min-height: clamp(420px, 48vw, 640px) !important;
}

.page-hero--stage .page-hero__copy,
.page-hero--stage .doc-shell__head {
  max-width: 58rem;
}

.page-hero--stage .hero-stars {
  opacity: 0.94;
}

@media (max-width: 900px) {
  .page-hero--stage,
  .hero-shell--client {
    min-height: 100svh;
  }

  .hero-shell--client .hero-grid--calm,
  .page-hero--stage .page-hero__grid,
  .page-hero--stage .doc-shell__head {
    min-height: auto;
  }

  .hero-grid--calm .showcase--simple {
    min-height: clamp(300px, 36svh, 420px) !important;
  }

  .page-hero__visual,
  .page-hero__visual--single {
    min-height: clamp(340px, 44vw, 500px) !important;
  }
}

@media (max-width: 600px) {
  .hero-shell--client .hero-grid--calm,
  .page-hero--stage .page-hero__grid,
  .page-hero--stage .doc-shell__head {
    min-height: auto;
  }

  .hero-shell--client,
  .page-hero--stage {
    min-height: 100svh;
    padding-bottom: 32px !important;
  }

  .page-hero--stage .doc-shell__head {
    padding-top: 0;
  }
}

@keyframes luna-stars-twinkle {
  0%, 100% { opacity: 0.14; filter: blur(0.26px); }
  35% { opacity: 0.36; filter: blur(0.18px); }
  50% { opacity: 1; filter: blur(0.08px); }
  68% { opacity: 0.28; filter: blur(0.22px); }
}

@keyframes luna-stars-drift {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(6px, -4px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
