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

:root {
  --spark: #7ec8c8;
  --spark-light: #a8dcdc;
  --spark-dark: #4fa8a8;
  --deep: #3a7080;
  --deepest: #234450;
  --haze: #f7f9f9;
  --mist: #ebf5f5;
  --glacial: #d8eeee;
  --foam: rgba(255, 255, 255, 0.74);
  --slate: #2a3535;
  --grey: #6a8080;
  --soft-grey: #8fa6a6;
  --pearl: #f2ece2;
  --sand: #ede4d8;
  --shadow: 0 22px 70px rgba(48, 101, 114, 0.14);
  --shadow-soft: 0 16px 40px rgba(72, 132, 144, 0.1);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1240px;
  --nav-h: 82px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--slate);
  background:
    radial-gradient(circle at top left, rgba(168, 220, 220, 0.45), transparent 28%),
    linear-gradient(180deg, #fcfefe 0%, var(--haze) 28%, #f5fbfb 100%);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.45;
}

.page-shell::before {
  top: 12vh;
  left: -120px;
  width: 320px;
  height: 320px;
  background: rgba(168, 220, 220, 0.5);
}

.page-shell::after {
  right: -140px;
  bottom: 12vh;
  width: 360px;
  height: 360px;
  background: rgba(126, 200, 200, 0.32);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.78), transparent 32%),
    linear-gradient(160deg, #dff3f5 0%, #8ccfd1 38%, #3d7b89 100%);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader::before,
.preloader::after {
  content: "";
  position: absolute;
  inset: auto;
  width: min(90vw, 760px);
  height: 160px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.04) 58%, transparent 78%);
  animation: preloaderDrift 4.4s ease-in-out infinite;
}

.preloader::before {
  bottom: 18%;
}

.preloader::after {
  bottom: 14%;
  width: min(96vw, 880px);
  opacity: 0.55;
  animation-duration: 5.6s;
  animation-direction: reverse;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__orb {
  position: relative;
  width: min(42vw, 240px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: preloaderFloat 3.8s ease-in-out infinite;
}

.preloader__ring,
.preloader__orb::before,
.preloader__orb::after {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.preloader__ring {
  border: 1px solid rgba(255, 255, 255, 0.34);
  animation: spin 12s linear infinite, ripplePulse 3.6s ease-in-out infinite;
}

.preloader__ring:nth-child(2) {
  inset: 16px;
  animation-duration: 8s;
  animation-direction: reverse;
}

.preloader__ring:nth-child(3) {
  inset: 34px;
  animation-duration: 5s;
}

.preloader__orb::before {
  content: "";
  inset: 48px;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.18) 58%, rgba(255, 255, 255, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.28);
}

.preloader__orb::after {
  content: "";
  inset: auto 30px 14px 30px;
  height: 34%;
  border-radius: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.5));
  animation: wave 2.4s ease-in-out infinite;
}

.preloader__logo-wrap {
  position: relative;
  z-index: 2;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 42px rgba(255, 255, 255, 0.18);
  animation: logoBreathe 2.8s ease-in-out infinite;
}

.preloader__logo {
  width: 76px;
  max-width: 76px;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.preloader__label {
  position: absolute;
  bottom: -52px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Preloader variant (shared across all HTML pages) */
.preloader {
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.7), transparent 30%),
    linear-gradient(140deg, #dff3f5 0%, #8ecfd2 40%, #3f7e8c 100%);
  transition: opacity 0.7s ease, visibility 0.7s ease;
  min-height: 100dvh;
  padding: max(16px, env(safe-area-inset-top)) 16px max(20px, env(safe-area-inset-bottom));
  align-content: center;
}

.preloader__bg-wave {
  position: absolute;
  left: -8%;
  right: -8%;
  height: 22vh;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(8px);
  animation: drift 6s ease-in-out infinite;
}

.preloader__bg-wave--one {
  bottom: 18%;
}

.preloader__bg-wave--two {
  bottom: 10%;
  animation-duration: 8s;
  animation-direction: reverse;
}

.preloader__center {
  width: min(92vw, 460px);
  text-align: center;
  display: grid;
  justify-items: center;
}

.preloader__orbit {
  position: relative;
  width: clamp(220px, 52vw, 320px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
}

.preloader__halo {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: spinOffset 9.8s linear infinite;
}

.preloader__halo--delay {
  width: 270px;
  height: 270px;
  animation-duration: 13.3s;
  animation-direction: reverse;
}

.preloader__core {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.25) 70%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 55px rgba(255, 255, 255, 0.25);
}

.preloader__logo {
  width: 80px;
  max-width: 80px;
  filter: brightness(0) invert(1);
  z-index: 2;
  animation: logoFloat 2.24s ease-in-out infinite;
}

.preloader__pulse {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.55);
  animation: breathe 1.96s ease-in-out infinite;
}

.preloader__title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 2.7rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 10px rgba(20, 62, 74, 0.22);
}

.preloader__subtitle {
  margin: 0 0 34px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 8px rgba(20, 62, 74, 0.2);
}

.preloader__meter {
  width: min(82vw, 320px);
  height: 8px;
  margin: 0 auto 12px;
  background: rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  overflow: hidden;
}

.preloader__meter-fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #e9ffff, #ffffff);
  border-radius: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 600;
  backdrop-filter: blur(18px);
  background: rgba(247, 249, 249, 0.82);
  border-bottom: 1px solid rgba(126, 200, 200, 0.15);
}

.site-header__inner {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

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

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(58, 112, 128, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  color: var(--deep);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-2px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__links a {
  position: relative;
  text-decoration: none;
  color: var(--grey);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.site-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--spark), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav__links a:hover::after,
.site-nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
}

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

.button,
.button-secondary,
.button-ghost,
.button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover,
.button-light:hover {
  transform: translateY(-2px);
}

.button {
  background: var(--spark);
  color: white;
  border: none;
}

.button:hover {
  background: var(--spark-dark);
}

.button-secondary {
  background: var(--deep);
  color: white;
  border: none;
}

.button-ghost {
  background: transparent;
  color: var(--deep);
  border: 1px solid rgba(126, 200, 200, 0.34);
}

.button-ghost:hover {
  background: var(--mist);
}

.button-light {
  background: white;
  color: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.button,
.button-secondary,
.button-ghost,
.button-light {
  position: relative;
  overflow: hidden;
}

.button::after,
.button-secondary::after,
.button-ghost::after,
.button-light::after {
  content: "";
  position: absolute;
  inset: auto auto 50% 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transform: translate(-50%, 50%) scale(0);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.button:active::after,
.button-secondary:active::after,
.button-ghost:active::after,
.button-light:active::after {
  transform: translate(-50%, 50%) scale(14);
  opacity: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--spark-dark);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--spark), transparent);
}

.section {
  padding: 112px 0;
}

.section--compact {
  padding: 88px 0;
}

.display {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 0.96;
  font-weight: 300;
}

.display em,
.heading em {
  color: var(--spark-dark);
  font-style: italic;
}

.heading {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  font-weight: 300;
}

.intro {
  max-width: 760px;
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.9;
}

.lede {
  max-width: 470px;
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.9;
}

.hero {
  position: relative;
  padding: 56px 0 48px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - var(--nav-h) - 56px);
}

.hero__sub {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: var(--grey);
}

.hero__actions,
.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 24px;
  margin-top: 34px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--soft-grey);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--spark);
}

.hero-visual,
.panel-visual,
.orb-panel,
.page-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 620px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.68), transparent 18%),
    linear-gradient(150deg, rgba(235, 245, 245, 0.98) 0%, rgba(216, 238, 238, 0.95) 32%, rgba(126, 200, 200, 0.88) 70%, rgba(58, 112, 128, 0.92) 100%);
  box-shadow: var(--shadow);
}

.hero-visual__inner,
.orb-panel__inner,
.page-visual__inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.hero-orb,
.orb-cluster {
  position: relative;
  width: min(76%, 460px);
  aspect-ratio: 1;
}

.ring,
.orb-cluster__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.ring:nth-child(2),
.orb-cluster__ring:nth-child(2) {
  inset: 36px;
  animation: spin 38s linear infinite;
}

.ring:nth-child(3),
.orb-cluster__ring:nth-child(3) {
  inset: 84px;
  border-style: dashed;
  animation: spin 26s linear infinite reverse;
}

.ring:nth-child(4),
.orb-cluster__ring:nth-child(4) {
  inset: 132px;
}

.orb-core,
.orb-cluster__core {
  position: absolute;
  inset: 30%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 70px rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.orb-core::after,
.orb-cluster__core::after {
  content: "";
  width: 56%;
  height: 56%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.4));
}

.spark,
.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  animation: float 5s ease-in-out infinite;
}

.spark--1,
.bubble--1 {
  top: 18%;
  left: 32%;
  width: 12px;
  height: 12px;
}

.spark--2,
.bubble--2 {
  top: 28%;
  right: 20%;
  width: 8px;
  height: 8px;
  animation-delay: 0.8s;
}

.spark--3,
.bubble--3 {
  bottom: 22%;
  left: 23%;
  width: 14px;
  height: 14px;
  animation-delay: 1.2s;
}

.spark--4,
.bubble--4 {
  bottom: 18%;
  right: 28%;
  width: 10px;
  height: 10px;
  animation-delay: 1.8s;
}

.spark--5,
.bubble--5 {
  top: 45%;
  left: 14%;
  width: 6px;
  height: 6px;
  animation-delay: 2.1s;
}

.hero-visual__caption,
.page-visual__caption {
  position: absolute;
  inset: auto 28px 24px;
  padding: 16px 18px;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-visual__caption strong,
.page-visual__caption strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-visual__caption p,
.page-visual__caption p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.split-panel,
.feature-panel,
.faq-grid,
.cta-band {
  display: grid;
  gap: 28px;
}

.split-panel,
.feature-panel,
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.panel,
.card,
.stat-card,
.quote-card,
.faq-item,
.study-card,
.timeline-card,
.value-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(126, 200, 200, 0.16);
  box-shadow: var(--shadow-soft);
}

.panel {
  padding: 42px;
}

.section-surface {
  background: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(126, 200, 200, 0.1);
  border-bottom: 1px solid rgba(126, 200, 200, 0.1);
}

.cards-3,
.cards-4,
.study-grid,
.stat-grid,
.timeline-grid,
.footer-grid,
.steps,
.testimonial-strip {
  display: grid;
  gap: 20px;
}

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

.cards-4,
.stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.study-card,
.timeline-card,
.value-card,
.stat-card,
.quote-card {
  padding: 34px 30px;
}

.card::after,
.study-card::after,
.timeline-card::after,
.value-card::after,
.stat-card::after,
.quote-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--spark), transparent 75%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card:hover::after,
.study-card:hover::after,
.timeline-card:hover::after,
.value-card:hover::after,
.stat-card:hover::after,
.quote-card:hover::after {
  opacity: 1;
}

.card__kicker,
.study-card__meta,
.timeline-card__step {
  margin-bottom: 12px;
  color: var(--spark-dark);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.card h3,
.study-card h3,
.timeline-card h3,
.value-card h3,
.faq-item summary,
.quote-card h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  line-height: 1.1;
}

.card h3,
.study-card h3,
.timeline-card h3,
.value-card h3,
.quote-card h3 {
  font-size: 1.7rem;
}

.card p,
.study-card p,
.timeline-card p,
.value-card p,
.quote-card p,
.faq-item p,
.panel p,
.stat-card p {
  margin: 0;
  color: var(--grey);
  line-height: 1.85;
  font-size: 0.96rem;
}

.stat-card {
  display: grid;
  gap: 12px;
}

.stat-card__value {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.9;
  color: var(--deep);
}

.stat-card__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--spark-dark);
}

.split-copy {
  padding: 54px;
  background: white;
}

.panel-visual {
  min-height: 520px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(150deg, #2e5966 0%, #3a7080 45%, #7ec8c8 100%);
}

.wave-grid {
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0 2px, transparent 2px 44px);
  opacity: 0.45;
}

.wave-axis,
.wave-axis::before,
.wave-axis::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68%;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  transform: translate(-50%, -50%);
  content: "";
}

.wave-axis::before {
  transform: translate(-50%, -50%) rotate(60deg);
}

.wave-axis::after {
  transform: translate(-50%, -50%) rotate(-60deg);
}

.wave-core {
  position: absolute;
  inset: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 0 45px rgba(255, 255, 255, 0.35);
}

.panel-visual__note {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.pill-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.pill-list span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--grey);
}

.pill-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--spark);
  flex: none;
}

.section-dark {
  color: white;
  background:
    radial-gradient(circle at top right, rgba(126, 200, 200, 0.22), transparent 32%),
    linear-gradient(180deg, #2d5b66 0%, #20424c 100%);
}

.section-dark .heading {
  color: white;
}

.section-dark .intro,
.section-dark p,
.section-dark .pill-list span,
.section-dark .quote-card p {
  color: rgba(255, 255, 255, 0.72);
}

.section-dark .panel,
.section-dark .timeline-card,
.section-dark .quote-card,
.section-dark .study-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.section-dark .card__kicker,
.section-dark .study-card__meta,
.section-dark .timeline-card__step {
  color: rgba(168, 220, 220, 0.82);
}

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

.step-card {
  padding: 34px 28px;
  text-align: center;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(126, 200, 200, 0.14);
  box-shadow: var(--shadow-soft);
}

.step-card__num {
  display: block;
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  line-height: 0.8;
  color: rgba(79, 168, 168, 0.28);
}

.step-card h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.step-card p {
  margin: 0;
  color: var(--grey);
  line-height: 1.8;
}

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

.quote-card__quote {
  margin-bottom: 18px;
  font-size: 1rem;
}

.quote-card__author {
  display: grid;
  gap: 4px;
  margin-top: 18px;
}

.quote-card__author strong {
  font-size: 0.95rem;
}

.quote-card__author span {
  color: var(--soft-grey);
  font-size: 0.88rem;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 26px;
  cursor: pointer;
  font-size: 1.35rem;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--spark-dark);
  font-size: 1.6rem;
  line-height: 1;
}

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

.faq-item p {
  padding: 0 26px 24px;
}

.study-grid {
  margin-top: 46px;
}

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

.study-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.study-card--home {
  border-width: 2px 1px 1px;
  border-color: var(--spark) rgba(126, 200, 200, 0.12) rgba(126, 200, 200, 0.12);
}

.study-card a {
  margin-top: auto;
  color: var(--deep);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.study-card a:hover {
  color: var(--spark-dark);
}

.cta-band {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(135deg, #4a919c 0%, #2f6170 100%);
  color: white;
  box-shadow: var(--shadow);
}

.cta-band p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.74);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.focus-card {
  padding: 36px 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(247, 249, 249, 0.96), rgba(241, 245, 245, 0.96));
  border: 1px solid rgba(216, 238, 238, 0.72);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.focus-card__icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--spark);
  font-size: 1.7rem;
  box-shadow: 0 12px 30px rgba(126, 200, 200, 0.16);
}

.focus-card h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 400;
}

.focus-card p {
  margin: 0;
  color: #9ab0b0;
  line-height: 1.7;
}

.faq-home {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.faq-home__list {
  margin-top: 34px;
}

.faq-home__item {
  padding: 22px 0 24px;
  border-bottom: 1px solid rgba(216, 238, 238, 0.95);
}

.faq-home__item h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
}

.faq-home__item p {
  margin: 0;
  color: var(--grey);
  line-height: 1.85;
}

.faq-home__visual {
  display: flex;
  align-self: stretch;
}

.phone-card {
  width: 100%;
  min-height: 100%;
  padding: 36px 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(249, 251, 251, 0.98), rgba(241, 245, 245, 0.98));
  border: 1px solid rgba(216, 238, 238, 0.95);
  text-align: center;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.phone-card__device {
  width: 144px;
  height: 252px;
  margin: 0 auto 24px;
  padding: 8px;
  border-radius: 28px;
  background: #334040;
}

.phone-card__notch {
  width: 40px;
  height: 6px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: #334040;
}

.phone-card__screen {
  height: calc(100% - 14px);
  border-radius: 22px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  background: linear-gradient(180deg, #d8eeee 0%, #93d0d8 48%, #467b8a 100%);
  box-shadow: 0 26px 60px rgba(126, 200, 200, 0.22);
}

.phone-card__screen img {
  width: 44px;
  filter: brightness(0) invert(1);
}

.phone-card__screen span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.phone-card p {
  max-width: 320px;
  margin: 0 auto 24px;
  color: var(--grey);
}

.footer {
  padding: 72px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at top right, rgba(126, 200, 200, 0.16), transparent 32%),
    linear-gradient(180deg, #18303a 0%, #101f26 100%);
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  align-items: start;
}

.footer .brand img {
  width: 124px;
  filter: brightness(1.35);
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.68);
}

.footer a {
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

.footer h3 {
  margin: 0 0 16px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(168, 220, 220, 0.84);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

.mobile-subscribe {
  display: none;
  position: fixed;
  left: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  transform: none;
  z-index: 900;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 500;
  color: white;
  background: var(--spark);
  box-shadow: 0 10px 24px rgba(58, 112, 128, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: mobileCtaFloat 2.8s ease-in-out infinite;
  white-space: nowrap;
  overflow: visible;
}

/* ── WhatsApp Floating Widget ──────────────────────────── */
.wa-widget {
  position: fixed;
  bottom: calc(16px + env(safe-area-inset-bottom));
  right: 16px;
  z-index: 9000;
}

.wa-widget__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  display: grid;
  place-items: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: waFloat 3s ease-in-out infinite;
}

.wa-widget__btn:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}

.wa-widget__btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.wa-widget__tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  background: white;
  color: var(--slate);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  padding: 8px 14px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(48, 101, 114, 0.16);
  border: 1px solid rgba(126, 200, 200, 0.2);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.wa-widget:hover .wa-widget__tooltip {
  opacity: 1;
  transform: translateY(0);
}

@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.mobile-subscribe:hover {
  background: var(--spark-dark);
}

.page-hero {
  padding: 58px 0 36px;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 36px;
  align-items: center;
}

.page-hero .display {
  font-size: clamp(3.1rem, 6vw, 4.8rem);
}

.page-visual {
  min-height: 560px;
}

.page-visual--alt {
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.62), transparent 18%),
    linear-gradient(150deg, rgba(216, 238, 238, 0.98) 0%, rgba(126, 200, 200, 0.76) 46%, rgba(58, 112, 128, 0.96) 100%);
}

.metrics-band {
  margin-top: 34px;
}

.inline-note {
  margin-top: 18px;
  color: var(--soft-grey);
  font-size: 0.92rem;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes wave {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.9;
  }

  50% {
    transform: translateY(-16px);
    opacity: 1;
  }
}

@keyframes preloaderFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes ripplePulse {
  0%,
  100% {
    opacity: 0.42;
  }

  50% {
    opacity: 0.92;
  }
}

@keyframes logoBreathe {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes preloaderDrift {
  0%,
  100% {
    transform: translateX(-50%) scaleX(1);
  }

  50% {
    transform: translateX(-50%) scaleX(1.08);
  }
}

@keyframes spinOffset {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.94;
  }

  50% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(3%);
  }
}

@keyframes mobileCtaFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 1100px) {
  .hero__grid,
  .page-hero__grid,
  .split-panel,
  .feature-panel,
  .faq-grid,
  .cta-band,
  .faq-home {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .page-visual,
  .panel-visual {
    min-height: 480px;
  }

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

  .cards-3,
  .study-grid,
  .timeline-grid,
  .testimonial-strip,
  .steps,
  .footer-grid,
  .focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  :root {
    --nav-h: 74px;
  }

  .section,
  .section--compact {
    padding: 84px 0;
  }

  .site-header__inner {
    min-height: var(--nav-h);
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(126, 200, 200, 0.18);
    box-shadow: var(--shadow-soft);
  }

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

  .site-nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

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

  .hero {
    padding-top: 32px;
  }

  .hero__grid {
    min-height: auto;
  }

  .split-copy,
  .panel,
  .card,
  .study-card,
  .timeline-card,
  .value-card,
  .stat-card,
  .quote-card {
    padding: 28px 24px;
  }
}

@media (max-width: 768px) {
  .preloader {
    padding-top: max(20px, env(safe-area-inset-top));
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }

  .preloader__center {
    transform: translateY(-8vh);
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero-visual,
  .page-visual,
  .panel-visual {
    min-height: 380px;
    border-radius: 24px;
  }

  .hero-orb,
  .orb-cluster {
    width: min(84%, 300px);
  }

  .cards-3,
  .cards-4,
  .study-grid,
  .stat-grid,
  .timeline-grid,
  .testimonial-strip,
  .steps,
  .footer-grid,
  .focus-grid {
    grid-template-columns: 1fr;
  }

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

  .button,
  .button-secondary,
  .button-ghost,
  .button-light {
    width: 100%;
  }

  .hero__actions,
  .split-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-item summary {
    padding: 20px 20px 16px;
    font-size: 1.18rem;
  }

  .faq-item p {
    padding: 0 20px 20px;
  }

  .preloader__orbit {
    width: clamp(176px, 58vw, 240px);
    margin-bottom: 22px;
  }

  .preloader__halo {
    width: 164px;
    height: 164px;
    border-color: rgba(255, 255, 255, 0.58);
  }

  .preloader__halo--delay {
    width: 208px;
    height: 208px;
    border-color: rgba(255, 255, 255, 0.46);
  }

  .preloader__core {
    width: 130px;
    height: 130px;
  }

  .preloader__logo {
    width: 58px;
    max-width: 58px;
  }

  .preloader__pulse {
    inset: 14px;
  }

  .preloader__title {
    font-size: clamp(1.65rem, 9vw, 2.15rem);
    line-height: 1.05;
    margin-bottom: 8px;
  }

  .preloader__subtitle {
    font-size: 10px;
    letter-spacing: 0.18em;
    margin-bottom: 22px;
  }

  .preloader__meter {
    width: min(86vw, 280px);
    height: 7px;
  }

  .preloader__bg-wave {
    opacity: 0.35;
    filter: blur(5px);
  }

  .mobile-subscribe {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto;
  }
}

@media (hover: none) and (pointer: coarse) {
  .mobile-subscribe {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto;
  }
}

@media (max-width: 420px) {
  .preloader__center {
    transform: translateY(-10vh);
  }

  .preloader__orbit {
    width: clamp(168px, 60vw, 220px);
  }

  .preloader__title {
    font-size: clamp(1.45rem, 8.5vw, 1.9rem);
  }

  .preloader__subtitle {
    letter-spacing: 0.14em;
  }
}

/* ===== Footer Social Icons (Nyra Style) ===== */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(168, 220, 220, 0.25);

  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;

  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

/* Hover = Nyra Glow */
.footer-social a:hover {
  transform: translateY(-4px) scale(1.08);

  background: rgba(126, 200, 200, 0.18);
  border-color: rgba(126, 200, 200, 0.6);

  color: #ffffff;
  box-shadow: 0 10px 30px rgba(126, 200, 200, 0.25);
}



/* ===== PDF CTA PREMIUM ===== */
.pdf-cta {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;

  padding: 42px;
  border-radius: var(--radius-md);

  background: linear-gradient(135deg, rgba(126,200,200,0.12), rgba(58,112,128,0.08));
  border: 1px solid rgba(126,200,200,0.24);

  overflow: hidden;
}

/* Glow Pulse (Water Resonance) */
.pdf-cta::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(126,200,200,0.18), transparent 60%);
  animation: waterPulse 6s ease-in-out infinite;
  z-index: 0;
}

@keyframes waterPulse {
  0%, 100% { transform: scale(0.9); opacity: 0.4; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

.pdf-cta__content,
.pdf-cta__action {
  position: relative;
  z-index: 1;
}

/* Meta */
.pdf-meta {
  display: flex;
  gap: 18px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--soft-grey);
}

.pdf-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== MODAL ===== */
.pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}

.pdf-modal.active {
  opacity: 1;
  pointer-events: all;
}

.pdf-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 25, 0.75);
  backdrop-filter: blur(8px);
}

.pdf-modal__content {
  position: absolute;
  inset: 5%;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.4);
  transform: scale(0.95);
  transition: transform 0.4s ease;
}

.pdf-modal.active .pdf-modal__content {
  transform: scale(1);
}

.pdf-frame {
  width: 100%;
  height: 100%;
}

/* Close Button */
.pdf-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 10;

  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .pdf-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

  .pdf-modal__content {
    inset: 10% 4%;
  }
}

/* ===== FULLSCREEN PDF MODAL ===== */
.pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.pdf-modal.active {
  opacity: 1;
  pointer-events: all;
}

/* Overlay */
.pdf-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 25, 0.85);
  backdrop-filter: blur(10px);
}

/* FULLSCREEN CONTENT */
.pdf-modal__content {
  position: absolute;
  inset: 0; /* FULL SCREEN */
  width: 100vw;
  height: 100vh;

  background: #0f1f26; /* darker = better PDF contrast */
  display: flex;
  flex-direction: column;
}

/* PDF iframe takes full space */
.pdf-frame {
  width: 100%;
  height: 100%;
  border: none;
}

/* Top Bar (NEW - better UX) */
.pdf-topbar {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 16px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);

  color: white;
  font-size: 14px;
}

/* Close Button */
.pdf-modal__close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;

  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;

  font-size: 18px;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .pdf-topbar {
    height: 50px;
    font-size: 12px;
  }

  .pdf-modal__close {
    width: 32px;
    height: 32px;
  }
}