/* ═══════════════════════════════════════════════════════════════════════
   GUARDIANLIGHT.AI CINEMATIC CSS
   Light-theme cinematic website with GSAP ScrollTrigger + Sun Rays
   Brand: Light green + Gold accents + Streams of light.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── Design Tokens ── */
:root {
  --bg: #F7FAF5;
  --bg-alt: #EEF3EB;
  --surface: rgba(255, 255, 255, 0.7);
  --border: rgba(197, 213, 188, 0.5);
  --border-hover: rgba(184, 134, 11, 0.4);
  --gold: #B8860B;
  --gold-light: #D4A017;
  --gold-bright: #DAA520;
  --green-forest: #1A3328;
  --green-mid: #2D5A3A;
  --green-light: #4A6B5A;
  --green-muted: #6B8A7A;
  --blue: #3B82F6;
  --blue-light: #60A5FA;
  --emerald: #10B981;
  --emerald-light: #34D399;
  --purple: #8B5CF6;
  --purple-light: #A78BFA;
  --red: #EF4444;
  --text: #1A3328;
  --text-secondary: #4A6B5A;
  --text-muted: rgba(26, 51, 40, 0.45);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 16px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background 0.8s ease, color 0.8s ease;
}

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

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

::selection {
  background: rgba(184, 134, 11, 0.2);
  color: var(--green-forest);
}

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 900px;
}

.section {
  padding: 140px 0;
  position: relative;
}

.section + .section {
  border-top: 1px solid rgba(197, 213, 188, 0.3);
}

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

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--emerald));
  z-index: 200;
  transform-origin: left;
  transform: scaleX(0);
  will-change: transform;
}

/* ══════════════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s;
}

.nav-logo:hover {
  transform: scale(1.03);
}

.logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(184, 134, 11, 0.3));
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.logo-guardian {
  color: rgba(26, 51, 40, 0.75);
}

.logo-light {
  color: var(--green-forest);
}

.logo-ai {
  color: var(--gold-light);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  color: var(--green-light);
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover {
  color: var(--green-forest);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link[data-highlight] {
  padding: 8px 20px;
  border-radius: 8px;
  background: var(--gold);
  color: #fff !important;
  font-weight: 600;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav-link[data-highlight]:hover {
  background: var(--gold-light);
  box-shadow: 0 0 40px rgba(184, 134, 11, 0.2);
}

.nav-link[data-highlight]::after {
  display: none;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-light);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 120px 0 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.15);
  transition: transform 12s ease-out;
}

.hero-bg-img.loaded {
  transform: scale(1);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--bg) 0%, rgba(247, 250, 245, 0.5) 40%, transparent 70%),
    linear-gradient(to right, rgba(247, 250, 245, 0.85) 0%, rgba(247, 250, 245, 0.4) 50%, transparent 100%);
}

/* Sun rays streaming from top-right */
.hero-gradient::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(218,165,32,0.18) 0%, rgba(212,160,23,0.06) 40%, transparent 70%);
  border-radius: 50%;
  animation: sunRayPulse 8s ease-in-out infinite;
}

@keyframes sunRayPulse {
  0%, 100% { opacity: 0.6; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
  width: 100%;
}

/* Circular text badge */
.hero-badge-wrap {
  position: absolute;
  top: 40vh;
  right: 10%;
  opacity: 0.15;
  animation: spinSlow 30s linear infinite;
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

.circular-text {
  overflow: visible;
}

.circle-text {
  font-family: var(--font-mono);
  font-size: 10px;
  fill: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(184, 134, 11, 0.3);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.hero-eyebrow span {
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* Text mask effect */
.hero-text-wrap {
  position: relative;
  margin-bottom: 24px;
  max-width: 800px;
}

.hero-text-outline,
.hero-text-fill {
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-text-outline {
  -webkit-text-stroke: 1.5px rgba(26, 51, 40, 0.2);
  color: transparent;
}

.hero-text-fill {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green-forest);
  clip-path: inset(100% 0 0 0);
}

.hero-text-fill em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
}

/* CTAs */
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #fff;
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #F5D040, var(--gold-bright));
  box-shadow: 0 8px 40px rgba(184, 134, 11, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
  color: var(--green-forest);
}

.btn-outline:hover {
  border-color: rgba(184, 134, 11, 0.4);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.8);
}

/* Hero stats — odometer */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
}

.odo-stat {
  text-align: center;
  padding: 0 40px;
}

.odo-value {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  overflow: hidden;
  height: 38px;
}

.odo-label {
  display: block;
  font-size: 11px;
  color: var(--green-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.odo-divider {
  width: 1px;
  height: 40px;
  background: rgba(45, 90, 58, 0.3);
}

.odo-digit {
  display: inline-block;
  overflow: hidden;
  height: 38px;
  line-height: 38px;
}

.odo-digit-inner {
  transition: transform 1.2s var(--ease);
}

.odo-suffix {
  font-size: 20px;
  opacity: 0.7;
}

/* Scroll hint */
.scroll-hint {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  opacity: 0.5;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 30px; }
  50% { opacity: 1; height: 50px; }
}

.scroll-hint span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green-muted);
}

/* ══════════════════════════════════════════════════════════════
   MARQUEE
   ══════════════════════════════════════════════════════════════ */
.marquee-section {
  padding: 20px 0;
  overflow: hidden;
  background: var(--bg-alt);
  border-top: 1px solid rgba(197, 213, 188, 0.3);
  border-bottom: 1px solid rgba(197, 213, 188, 0.3);
  opacity: 0.7;
}

.marquee-row {
  display: flex;
  white-space: nowrap;
  margin: 8px 0;
}

.marquee-content {
  display: flex;
  gap: 48px;
  animation: marqueeScroll 40s linear infinite;
}

.marquee-row[data-direction="right"] .marquee-content {
  animation-direction: reverse;
}

.marquee-content span {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--green-forest);
  opacity: 0.4;
  flex-shrink: 0;
}

.marquee-row.outlined .marquee-content span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(26, 51, 40, 0.15);
  opacity: 0.5;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════
   PARTNERS
   ══════════════════════════════════════════════════════════════ */
.section-partners {
  padding: 60px 0;
}

.partners-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.partners-label {
  font-size: 11px;
  color: var(--green-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  transition: border-color 0.4s, transform 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.partner-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.partner-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(184, 134, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.partner-card strong {
  display: block;
  font-size: 14px;
  color: var(--green-forest);
}

.partner-card span {
  display: block;
  font-size: 10px;
  color: var(--green-muted);
}

/* ══════════════════════════════════════════════════════════════
   SECTION HEADERS + SHARED
   ══════════════════════════════════════════════════════════════ */
.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 14px;
}

.tag-inline {
  margin-bottom: 0;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid rgba(184, 134, 11, 0.2);
}

.h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.accent-text {
  background: linear-gradient(135deg, #F5D040, var(--gold-bright), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  margin-bottom: 72px;
}

.header-sub {
  font-size: 18px;
  color: var(--green-light);
  max-width: 560px;
  line-height: 1.6;
  margin-top: 8px;
}

.header-sub.text-center {
  margin-left: auto;
  margin-right: auto;
}

.subtle {
  font-size: 17px;
  color: var(--green-light);
  line-height: 1.7;
  margin-top: 16px;
}

/* ── Split layout ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ══════════════════════════════════════════════════════════════
   THE CHALLENGE — Stats
   ══════════════════════════════════════════════════════════════ */
.challenge-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.challenge-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.challenge-image-wrap:hover .challenge-img {
  transform: scale(1.05);
}

.challenge-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(247, 250, 245, 0.3), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  transition: border-color 0.4s, transform 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.stat-highlight {
  border-left: 2px solid rgba(184, 134, 11, 0.4);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--green-forest);
  line-height: 1;
}

.stat-highlight .stat-value {
  color: var(--gold-bright);
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: inherit;
  opacity: 0.7;
}

.stat-label {
  font-size: 14px;
  color: var(--green-light);
  margin-top: 8px;
  line-height: 1.4;
}

.sources-text {
  font-size: 10px;
  color: var(--green-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS — Accordion Slider
   ══════════════════════════════════════════════════════════════ */
.accordion-slider {
  display: flex;
  gap: 8px;
  height: 65vh;
  min-height: 400px;
  max-height: 550px;
  margin-bottom: 40px;
}

.svc-strip {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: flex 0.6s var(--ease);
  background: var(--green-forest);
}

.svc-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--panel-bg) center/cover no-repeat;
  transition: transform 0.6s var(--ease);
  z-index: 0;
}

.svc-strip:hover::before,
.svc-strip.active::before {
  transform: scale(1.05);
}

.svc-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 51, 40, 0.85) 0%, rgba(26, 51, 40, 0.3) 50%, transparent 70%);
  z-index: 1;
}

.svc-strip:hover,
.svc-strip.active {
  flex: 5;
}

.svc-vertical {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  opacity: 0.8;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 3;
  transition: opacity 0.3s;
}

.svc-strip:hover .svc-vertical,
.svc-strip.active .svc-vertical {
  opacity: 0;
}

.svc-expanded {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  z-index: 3;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s 0.2s, transform 0.4s 0.2s;
}

.svc-strip:hover .svc-expanded,
.svc-strip.active .svc-expanded {
  opacity: 1;
  transform: translateY(0);
}

.svc-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 4px;
}

.svc-time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--green-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
  display: inline-block;
  margin-bottom: 12px;
}

.svc-expanded h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.svc-expanded p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 40ch;
}

/* Analyze panel — abstract AI/waveform background */
.svc-strip-analyze {
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(184, 134, 11, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 30% 60%, rgba(16, 185, 129, 0.1), transparent),
    radial-gradient(ellipse 50% 30% at 70% 40%, rgba(59, 130, 246, 0.08), transparent),
    linear-gradient(180deg, #0a1610, #0F1F17) !important;
}

.svc-strip-analyze::before {
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 14px,
      rgba(184, 134, 11, 0.06) 14px,
      rgba(184, 134, 11, 0.06) 15px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 30px,
      rgba(45, 90, 58, 0.08) 30px,
      rgba(45, 90, 58, 0.08) 31px
    ) !important;
  animation: analyzeGrid 4s linear infinite;
}

@keyframes analyzeGrid {
  from { background-position: 0 0, 0 0; }
  to { background-position: 15px 0, 0 31px; }
}

@media (max-width: 768px) {
  .accordion-slider {
    flex-direction: column;
    height: auto;
    max-height: none;
  }

  .svc-strip {
    min-height: 200px;
  }

  .svc-strip.active {
    flex: 3;
  }

  .svc-vertical {
    transform: translateX(-50%) rotate(0);
  }
}

/* Signal Check */
.signal-check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 40px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(184, 134, 11, 0.06), rgba(255, 255, 255, 0.8), rgba(59, 130, 246, 0.06));
  border: 1px solid var(--border);
  flex-wrap: wrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.signal-left h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
}

.signal-metrics {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.metric {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.metric:hover {
  transform: scale(1.05);
  border-color: var(--border-hover);
}

.metric-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: metricPulse 2s ease-in-out infinite;
}

@keyframes metricPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.metric span {
  font-size: 14px;
  font-weight: 500;
  color: var(--green-forest);
}

/* ══════════════════════════════════════════════════════════════
   WAVEFORM ANALYZER
   ══════════════════════════════════════════════════════════════ */
.section-analyzer {
  padding: 80px 0;
}

.analyzer-wrap {
  max-width: 500px;
  margin: 0 auto;
}

.analyzer-card {
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.analyzer-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse-dot 2s ease-in-out infinite;
}

.analyzer-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--green-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Waveform bars */
.waveform {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 64px;
  margin-bottom: 24px;
}

.wave-bar {
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(to top, rgba(184, 134, 11, 0.3), var(--gold-light));
  transition: height 0.15s ease;
}

/* Analyzer bars */
.analyzer-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bar-row {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  align-items: center;
  gap: 12px;
}

.bar-label {
  font-size: 13px;
  color: var(--green-light);
  font-weight: 500;
}

.bar-track {
  height: 10px;
  border-radius: 5px;
  background: rgba(197, 213, 188, 0.4);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 5px;
  background: var(--bar-color);
  width: 0;
  transition: width 1.2s var(--ease);
}

.bar-value {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green-muted);
  text-align: right;
}

/* ══════════════════════════════════════════════════════════════
   PURPOSE — Cards with Spotlight Border
   ══════════════════════════════════════════════════════════════ */
.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .purpose-grid {
    grid-template-columns: 1fr;
  }
}

.purpose-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.purpose-header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
}

.purpose-header-blue h3 {
  color: var(--blue-light);
}

.purpose-header-green h3 {
  color: var(--emerald-light);
}

.purpose-card {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  transition: border-color 0.4s, transform 0.3s;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.purpose-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

/* Spotlight effect */
.purpose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.purpose-card:hover::before {
  opacity: 1;
}

.pc-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(184, 134, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-light);
}

.purpose-card h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  transition: color 0.3s;
}

.purpose-card:hover h4 {
  color: var(--gold-bright);
}

.purpose-card p {
  font-size: 13px;
  color: var(--green-light);
  line-height: 1.5;
}

/* Credibility bar */
.cred-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 60px;
}

.cred-item {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  transition: border-color 0.3s, color 0.3s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.cred-item:hover {
  border-color: var(--border-hover);
  color: var(--green-light);
}

/* ══════════════════════════════════════════════════════════════
   DIFFERENTIATOR TABLE
   ══════════════════════════════════════════════════════════════ */
.diff-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.diff-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.diff-table thead th {
  padding: 20px 16px;
  font-size: 11px;
  font-weight: 500;
  color: var(--green-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.diff-table thead th:first-child {
  text-align: left;
  width: 220px;
}

.diff-table tbody td {
  padding: 18px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(45, 90, 58, 0.1);
}

.diff-name {
  text-align: left !important;
  color: var(--green-forest);
  font-weight: 500;
}

.diff-highlight {
  background: rgba(184, 134, 11, 0.06);
}

.diff-highlight:hover {
  background: rgba(184, 134, 11, 0.1);
}

.diff-brand {
  color: var(--gold-light) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
}

.diff-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  margin-right: 8px;
  animation: pulse-dot 2s ease-in-out infinite;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.check.yes {
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-light);
}

.check.no {
  background: rgba(197, 213, 188, 0.3);
  color: rgba(107, 138, 122, 0.5);
}

.check.gold {
  background: rgba(184, 134, 11, 0.2);
  color: var(--gold-light);
}

/* ══════════════════════════════════════════════════════════════
   MISSION / VISION — Sticky Cards
   ══════════════════════════════════════════════════════════════ */
.mv-stack {
  margin-bottom: 80px;
}

.mv-card {
  position: sticky;
  border-radius: 24px;
  padding: 48px 40px;
  margin-bottom: 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.1s ease;
  will-change: transform;
}

.mv-mission {
  top: 100px;
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.08), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(184, 134, 11, 0.15);
  z-index: 1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.mv-vision {
  top: 130px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(59, 130, 246, 0.15);
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.mv-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 16px;
}

.mv-mission .mv-label {
  color: var(--gold-light);
}

.mv-vision .mv-label {
  color: var(--blue-light);
}

.mv-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.3;
}

/* Values */
.values-header {
  margin-top: 0;
  margin-bottom: 32px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), border-color 0.3s;
  cursor: default;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
}

.val-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid rgba(184, 134, 11, 0.2);
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.value-card h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  transition: color 0.3s;
}

.value-card:hover h4 {
  color: var(--gold-bright);
}

.value-card p {
  font-size: 12px;
  color: var(--green-muted);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════════
   ADVISORS
   ══════════════════════════════════════════════════════════════ */
.advisors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.advisor-card {
  text-align: center;
  padding: 40px 32px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  transition: border-color 0.4s, box-shadow 0.4s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.advisor-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.advisor-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(184, 134, 11, 0.3);
  margin: 0 auto 20px;
  display: block;
}

.advisor-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.advisor-card .advisor-title {
  font-size: 15px;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 12px;
}

.advisor-card .advisor-bio {
  font-size: 15px;
  color: var(--green-light);
  line-height: 1.6;
}

.advisor-coming {
  text-align: center;
  padding: 40px 32px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  transition: border-color 0.4s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.advisor-coming:hover {
  border-color: var(--border-hover);
}

.advisor-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid rgba(184, 134, 11, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin: 0 auto 24px;
  animation: advisorPulse 3s ease-in-out infinite;
}

@keyframes advisorPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.advisor-coming h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.advisor-coming p {
  font-size: 15px;
  color: var(--green-light);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   CTA
   ══════════════════════════════════════════════════════════════ */
.section-cta {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(247, 250, 245, 0.82);
}

.cta-bg-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg), transparent, rgba(247, 250, 245, 0.7));
}

/* Sun rays in CTA */
.cta-bg-overlay::before {
  content: '';
  position: absolute;
  top: -200px;
  right: 20%;
  width: 500px;
  height: 800px;
  background: linear-gradient(180deg, rgba(218,165,32,0.10) 0%, transparent 100%);
  transform: rotate(15deg);
  animation: sunRayPulse 6s ease-in-out infinite;
  z-index: 1;
}

.cta-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .cta-steps {
    grid-template-columns: 1fr;
  }
}

.cta-step {
  text-align: center;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  transition: transform 0.3s, border-color 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.cta-step:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(184, 134, 11, 0.2);
  border: 1px solid rgba(184, 134, 11, 0.3);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.cta-step h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cta-step p {
  font-size: 12px;
  color: var(--green-muted);
}

/* CTA Form */
.cta-form-wrap {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.cta-form {
  display: flex;
  gap: 12px;
}

@media (max-width: 640px) {
  .cta-form {
    flex-direction: column;
  }
}

.cta-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  color: var(--green-forest);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.cta-form input::placeholder {
  color: var(--green-muted);
}

.cta-form input:focus {
  border-color: rgba(184, 134, 11, 0.5);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.cta-note {
  font-size: 12px;
  color: var(--green-muted);
  margin-top: 12px;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.footer-accent {
  text-align: center;
  margin-bottom: 40px;
}

.gradient-stroke-text {
  font-family: var(--font-heading);
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(184, 134, 11, 0.06);
  user-select: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(184, 134, 11, 0.2));
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
}

.footer-tagline {
  font-size: 14px;
  color: var(--green-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.hipaa-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--green-muted);
  padding: 4px 0;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(45, 90, 58, 0.15);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--green-muted);
  margin-bottom: 4px;
}

.footer-powered {
  font-size: 11px !important;
  color: rgba(107, 154, 124, 0.6) !important;
}

.footer-credit {
  margin-top: 8px !important;
}

.footer-credit strong {
  color: var(--gold-light);
}

/* ══════════════════════════════════════════════════════════════
   SUN RAYS / STREAMS OF LIGHT
   ══════════════════════════════════════════════════════════════ */
.section {
  overflow: hidden;
}

/* Sun ray on Challenge section */
#challenge::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(218,165,32,0.10) 0%, rgba(184,134,11,0.03) 50%, transparent 70%);
  border-radius: 50%;
  animation: sunRayPulse 7s ease-in-out infinite;
  z-index: 0;
}

/* Light beam on How It Works */
#how-it-works::before {
  content: '';
  position: absolute;
  top: -150px;
  right: 10%;
  width: 400px;
  height: 800px;
  background: linear-gradient(180deg, rgba(218,165,32,0.08) 0%, transparent 100%);
  transform: rotate(12deg);
  animation: sunRayPulse 10s ease-in-out infinite;
  z-index: 0;
}

/* Sun glow on Purpose section */
#purpose::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(218,165,32,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: sunRayPulse 8s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

/* Sun ray on Mission */
#mission::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(218,165,32,0.08) 0%, rgba(184,134,11,0.02) 50%, transparent 70%);
  animation: sunRayPulse 8s ease-in-out infinite;
  z-index: 0;
}

/* Footer sun glow */
.footer::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(218,165,32,0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ══════════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal="up"] {
  transform: translateY(40px);
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}



/* ── CTA section dark overlay ── */
.section-cta .cta-bg-overlay {
  background: linear-gradient(180deg, rgba(15,31,23,0.85), rgba(15,31,23,0.95)) !important;
}
.section-cta .tag,
.section-cta .h2,
.section-cta .accent-text,
.section-cta .header-sub,
.section-cta .cta-note,
.section-cta .step-num,
.section-cta h4,
.section-cta p {
  color: #fff !important;
}
.section-cta .accent-text {
  color: var(--gold-light) !important;
}

/* ── Hide WP admin bar on frontend ── */
#wpadminbar { display: none !important; }
html { margin-top: 0 !important; }


/* ── Dark Differentiator Section (match demo) ── */
.section-dark {
  background: linear-gradient(180deg, #1A3328, #0F1F17) !important;
  color: #fff !important;
}
.section-dark .h2,
.section-dark .header-sub,
.section-dark .tag,
.section-dark .diff-name,
.section-dark th,
.section-dark td {
  color: #fff !important;
}
.section-dark .accent-text {
  color: var(--gold-light) !important;
}
.section-dark .header-sub {
  color: rgba(255,255,255,0.6) !important;
}
.section-dark .diff-table {
  border-color: rgba(255,255,255,0.1) !important;
}
.section-dark .diff-table th,
.section-dark .diff-table td {
  border-color: rgba(255,255,255,0.1) !important;
}
.section-dark .diff-highlight {
  background: rgba(184, 134, 11, 0.15) !important;
}
.section-dark .diff-table-wrap {
  background: rgba(255,255,255,0.03) !important;
  border-color: rgba(255,255,255,0.1) !important;
}
