/* ======================================================
   DIAGNOSTICS AI – PREMIUM DESIGN SYSTEM
   ====================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Colors — Light Theme (Premium Luminous Slate) */
  --color-bg:            #fafafc;
  --color-bg-alt:        #ffffff;
  --color-surface:       rgba(255, 255, 255, 0.75);
  --color-surface-2:     rgba(240, 235, 250, 0.8);
  --color-border:        rgba(0, 0, 0, 0.08);
  --color-border-light:  rgba(0, 0, 0, 0.16);

  /* Brand */
  --color-primary:       #5c1430;
  --color-primary-light: #832247;
  --color-accent:        #e06b88;
  --color-accent-2:      #b64ad8;
  --color-warm:          #826550;

  /* Text */
  --color-text:          #0b090f;
  --color-text-muted:    rgba(11, 9, 15, 0.65);
  --color-text-dim:      rgba(11, 9, 15, 0.4);
  --color-text-dark:     #0b090f;
  --color-text-dark-muted: rgba(11, 9, 15, 0.65);

  /* Selection */
  --color-selection-bg:  var(--color-primary-light);
  --color-selection-text: #fff;

  /* Typography */
  --font-primary:   'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-secondary: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent:    'Playfair Display', Georgia, serif;
  --font-mono:      'SF Mono', 'Fira Code', monospace;

  --fs-xs:    clamp(0.6875rem, 0.6rem + 0.4vw, 0.8125rem);
  --fs-sm:    clamp(0.8125rem, 0.7rem + 0.5vw, 0.9375rem);
  --fs-base:  clamp(0.9375rem, 0.85rem + 0.4vw, 1.0625rem);
  --fs-md:    clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  --fs-lg:    clamp(1.5rem, 1.1rem + 1.5vw, 2.25rem);
  --fs-xl:    clamp(2rem, 1.2rem + 3vw, 3.75rem);
  --fs-2xl:   clamp(2.5rem, 1.2rem + 5vw, 5.5rem);
  --fs-hero:  clamp(3rem, 1rem + 7.5vw, 7.5rem);
  --fs-h4:    clamp(1.25rem, 1rem + 0.8vw, 1.75rem);

  --lh-tight:  1.05;
  --lh-snug:   1.2;
  --lh-normal: 1.55;
  --lh-loose:  1.75;

  --fw-light:    300;
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;

  --ls-tight:  -0.03em;
  --ls-normal:  0;
  --ls-wide:    0.06em;
  --ls-wider:   0.12em;

  /* Fluid Spacing */
  --space-xs:  clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
  --space-sm:  clamp(0.75rem, 0.65rem + 0.5vw, 1.25rem);
  --space-md:  clamp(1rem, 0.8rem + 1vw, 2rem);
  --space-lg:  clamp(1.5rem, 1.1rem + 2vw, 3rem);
  --space-xl:  clamp(2rem, 1.4rem + 3vw, 5rem);
  --space-2xl: clamp(3rem, 2rem + 5vw, 8rem);
  --space-3xl: clamp(4rem, 2.5rem + 7.5vw, 11rem);

  /* Layout */
  --container-max:   1320px;
  --container-narrow: 960px;
  --nav-height:      4.5rem;
  --border-radius:   0.75rem;
  --border-radius-md: 1rem;
  --border-radius-lg: 1.25rem;
  --border-radius-pill: 9999px;

  /* Transitions */
  --ease-smooth:  cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --duration-fast:   0.2s;
  --duration-normal: 0.4s;
  --duration-slow:   0.8s;

  /* Z-index scale */
  --z-gradient:  5;
  --z-nav:       100;
  --z-menu:      90;
  --z-hello-bar: 200;
  --z-modal:     300;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: var(--color-bg);
  scroll-behavior: auto; /* Lenis handles smooth scroll */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ======================================================
   LENIS SMOOTH SCROLL BOILERPLATE
   ====================================================== */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word; /* Prevent long words from breaking layouts on mobile */
  -webkit-hyphens: auto;
  hyphens: auto;
}

::selection {
  background-color: var(--color-selection-bg);
  color: var(--color-selection-text);
}

img, video, svg {
  display: block;
  max-width: 100%;
  height: auto; /* Prevent stretching */
  object-fit: cover; /* Fallback for intrinsic sizes */
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  font: inherit;
}

/* ---------- SKIP TO CONTENT (Accessibility) ---------- */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  transition: top 0.3s ease;
}

.skip-to-content:focus {
  top: 1rem;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ---------- TYPOGRAPHY UTILITIES ---------- */
.text-hero {
  font-size: var(--fs-hero);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

.text-h1 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

.text-h2 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
}

.text-h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
}

.text-h4 {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
}

.text-body {
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
}

.text-small {
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
}

.text-xs {
  font-size: var(--fs-xs);
  line-height: var(--lh-normal);
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
}

.text-accent-font {
  font-family: var(--font-accent);
  font-style: italic;
}

.text-muted {
  color: var(--color-text-muted);
}

.text-dim {
  color: var(--color-text-dim);
}

/* ---------- LAYOUT UTILITIES ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section-space {
  padding-block: var(--space-3xl);
}

.section-space--sm {
  padding-block: var(--space-2xl);
}

.max-w-16ch { max-width: 16ch; }
.max-w-20ch { max-width: 20ch; }
.max-w-30ch { max-width: 30ch; }
.max-w-40ch { max-width: 40ch; }
.max-w-50ch { max-width: 50ch; }

/* ---------- GRADIENT BLUR (BOTTOM VIEWPORT) ---------- */
.gradient-blur {
  position: fixed;
  z-index: var(--z-gradient);
  inset: auto 0 0 0;
  height: 5%;
  pointer-events: none;
  background: linear-gradient(to top, var(--color-bg) 0%, rgba(255, 255, 255, 0) 100%);
}

[data-theme="dark"] .gradient-blur {
  background: linear-gradient(to top, #0b090f 0%, rgba(11, 9, 15, 0) 100%);
}

.gradient-blur > div,
.gradient-blur::before,
.gradient-blur::after {
  display: none; /* Removed heavy backdrop-filter layers for scroll performance */
}

/* ======================================================
   ANNOUNCEMENT / HELLO BAR
   ====================================================== */
.hello-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-hello-bar);
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: saturate(120%) blur(10px);
  -webkit-backdrop-filter: saturate(120%) blur(10px);
  padding: 0.5rem 0.75rem;
  color: var(--color-text);
  transition: transform 0.3s var(--ease-smooth), opacity 0.3s var(--ease-smooth);
}

.hello-bar.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.hello-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hello-bar__mask {
  flex: 1 1 auto;
  overflow: hidden;
  min-width: 0;
}

.hello-bar__track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  will-change: transform;
  animation: hb-marquee 30s linear infinite;
}

.hello-bar:hover .hello-bar__track,
.hello-bar:focus-within .hello-bar__track {
  animation-play-state: paused;
}

.hello-bar__group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  font-size: var(--fs-xs);
}

.hello-bar__live {
  color: #FF3B30;
  font-weight: 700;
  animation: hb-pulse 1.5s ease-in-out infinite;
}

.hello-bar__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border-radius: var(--border-radius-pill);
  font-weight: var(--fw-medium);
  font-size: var(--fs-xs);
  background-color: var(--color-primary);
  color: #fff;
  border: 1px solid var(--color-primary);
  transition: background var(--duration-fast) ease, transform var(--duration-fast) ease;
  text-decoration: none;
}

.hello-bar__cta:hover {
  background-color: var(--color-primary-light);
}

.hello-bar__cta:active {
  transform: translateY(1px);
}

.hello-bar__sep {
  opacity: 0.4;
}

.hello-bar__close {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border-radius: var(--border-radius-pill);
  flex-shrink: 0;
  transition: background var(--duration-fast) ease;
}

.hello-bar__close:hover {
  background: rgba(255,255,255,0.1);
}

@keyframes hb-marquee {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-50%,0,0); }
}

@keyframes hb-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

/* Push body content down when hello-bar is visible */
body.hb-active {
  padding-top: var(--hb-height, 3rem);
}

/* ======================================================
   MOYRA NAVIGATION (Right Slide-in)
   ====================================================== */
.moyra-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: var(--z-nav);
  pointer-events: none; /* Let clicks pass through empty areas */
}

.moyra-header > * {
  pointer-events: auto;
}

.moyra-logo {
  font-family: var(--font-accent);
  font-size: 2rem; /* Significantly increased logo size */
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  font-style: italic;
  letter-spacing: var(--ls-tight);
  position: relative;
  z-index: 999999;
  transition: color 0.4s ease;
}

/* ======================================================
   MOYRA NAVIGATION - BOTTOM PILL & FULLSCREEN OVERLAY
   ====================================================== */

/* The Top Right Pill */
.moyra-pill {
  position: fixed;
  top: 2.5rem;
  right: 2.5rem;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 100px;
  padding: 0.5rem;
  z-index: 99999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0,0,0,0.05);
}

.moyra-pill__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: #0b090f;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 2;
  text-decoration: none;
  min-height: 44px; /* WCAG Touch Target */
  min-width: 44px; /* WCAG Touch Target */
}

.moyra-pill__dot {
  width: 6px;
  height: 6px;
  background: #0b090f;
  border-radius: 50%;
  display: block;
}

.moyra-pill__icon {
  width: 14px;
  height: 14px;
}

.moyra-pill__divider {
  width: 1px;
  height: 20px;
  background: rgba(0,0,0,0.1);
  margin: 0 0.25rem;
}

.moyra-pill__highlight {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  height: calc(100% - 1rem);
  width: 100px; /* dynamic via JS */
  background: rgba(0,0,0,0.06);
  border-radius: 50px;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.625, 0.05, 0, 1), width 0.4s cubic-bezier(0.625, 0.05, 0, 1);
}

/* Floating Card Menu Overlay */
.moyra-card {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99998; /* Just under the pill */
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none; /* Let clicks pass through when closed */
  padding: 2.5rem;
  padding-top: 6.5rem; /* Space for the pill above it */
  background: rgba(0, 0, 0, 0.4); /* Translucent dim */
  backdrop-filter: blur(12px); /* Strong glassmorphic blur */
  opacity: 0;
  transition: opacity 0.6s ease;
}

.moyra-card__inner {
  position: relative;
  width: 100%;
  max-width: 650px;
  height: 550px;
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  
  /* Initial state for animation */
  transform: translateY(20px) scale(0.95);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.moyra-card.is-open {
  pointer-events: auto;
  opacity: 1; /* Fade in the dimming overlay */
}

.moyra-card.is-open .moyra-card__inner {
  transform: translateY(0) scale(1);
}

/* Card Layout Grid */
.moyra-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.moyra-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.moyra-card__item {
  overflow: hidden;
}

.moyra-card__link {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #0b090f;
  text-decoration: none;
  line-height: 1.1;
  letter-spacing: -0.04em;
  transform: translateY(120%); /* JS Stagger starting position */
  transition: color 0.3s ease;
}

.moyra-card__link:hover {
  color: var(--color-primary);
}

.moyra-card__link.is-current-page {
  color: var(--color-primary);
  position: relative;
}

.moyra-card__link.is-current-page::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
}

.moyra-card__graphic {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 300px;
  height: 300px;
  pointer-events: none;
}

.moyra-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0; /* Revealed by JS */
  transform: scale(1.05);
}

.moyra-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  z-index: 10; /* Above graphic if it overlaps */
  opacity: 0; /* Revealed by JS */
  transform: translateY(20px);
}

.moyra-card__socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.moyra-card__socials a {
  color: #888;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.moyra-card__socials a:hover {
  color: #000;
}

.moyra-card__info {
  text-align: right;
  color: #0b090f;
  font-size: 0.85rem;
}

.moyra-card__info p {
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.moyra-card__email {
  color: #0b090f;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
}

/* Specific Pill Customizations for the Card vibe */
.moyra-pill {
  background: rgba(255, 255, 255, 0.98);
}
.moyra-pill__btn--cta {
  background: #0b090f;
  color: #fff;
}
.moyra-pill__btn--cta svg {
  stroke: #fff;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .moyra-card {
    padding: 1rem;
    padding-top: 5rem;
  }
  .moyra-pill {
    top: 1.5rem;
    right: 1.5rem;
  }
  .moyra-card__inner {
    border-radius: 30px;
    padding: 3rem 2rem;
  }
  .moyra-card__top {
    flex-direction: column;
  }
  .moyra-card__graphic {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    width: 200px !important;
    height: 200px !important;
    margin: 1rem auto 0 auto !important;
    display: block !important;
  }
  
  /* Kill the oval shadow behind the logo */
  .moyra-logo::before, .moyra-logo::after {
    display: none !important;
    opacity: 0 !important;
  }
  .ambient-glow {
    display: none !important; /* Hide ambient glow blobs on mobile that cause weird shadows */
  }
  .moyra-card__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .moyra-card__info {
    text-align: left;
  }
}

/* ======================================================
   HERO SECTION
   ====================================================== */
.hero--hupr {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
  color: #fff;
}

/* Background Slider */
.hero-slider--bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-slider .slider__item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slider .slider__item.is-active {
  opacity: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: var(--space-xl);
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
}

.hero__label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.hero__title {
  font-family: var(--font-primary);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  text-wrap: balance;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Marquee */
.hero-marquee__wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 3;
  overflow: hidden;
  white-space: nowrap;
}
.hero-marquee {
  display: flex;
  align-items: center;
}
.hero-marquee__content {
  display: flex;
  align-items: center;
  padding-right: 2rem;
}
.hero-marquee__text {
  font-size: clamp(4rem, 12vw, 15rem);
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 2rem;
  line-height: 1;
}

/* Inline Slider */
.hero-slider__inline-wrapper {
  display: inline-block;
  vertical-align: middle;
  width: clamp(150px, 20vw, 300px);
  height: clamp(80px, 12vw, 180px);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.hero-slider--inline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Floating Card */
.hero-card {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 90%;
  max-width: 400px;
  background: #fff;
  color: #000;
  z-index: 10;
  border-radius: 8px;
  overflow: hidden;
}
.hero-card__inner {
  padding: 2.5rem;
}
.hero-card__subtitle {
  font-family: var(--font-mono, monospace);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-card__divider {
  border: 0;
  border-top: 1px solid #ddd;
  margin-bottom: 1.5rem;
}
.hero-card__text {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}
.btn--primary {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0.8rem 1.5rem;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
.btn--primary:hover {
  transform: translateY(-2px);
}
@media (min-width: 1024px) {
  .hero-card {
    top: 50%;
    bottom: auto;
    right: auto;
    left: 5%;
    transform: translateY(-50%);
  }
}


/* ======================================================
   ABOUT / MISSION SECTION
   ====================================================== */
.about {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  overflow: hidden;
}

.about__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
}

.about__text {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  max-width: 20ch;
  margin-inline: auto;
}

.about__text.is-accent-font {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: var(--fw-regular);
}

.about__text .word {
  display: inline-block;
}

.about__svg-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.about__svg-ornament {
  width: clamp(18rem, 50vw, 40rem);
  height: auto;
  opacity: 0.15;
  transition: all 1s ease-in-out;
}

/* ======================================================
   FEATURES SECTION (Welcome / What Your Health Can Be)
/* ======================================================
   FEATURES SECTION (STICKY SCROLL REDESIGN)
   ====================================================== */
.features-sticky-wrap {
  position: relative;
  background: #0b090f; /* Dark theme to match */
  color: #fff;
}

.features-sticky-visual {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 50vw; /* Takes up left half */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-sticky-visual__inner {
  width: 80%;
  height: 80%;
  position: relative;
}

.features-sticky-visual__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,9,15,0) 0%, rgba(11,9,15,1) 100%);
  pointer-events: none;
}

.features-scroll-content {
  margin-top: -100vh; /* Pull content up to overlap the sticky section */
  margin-left: 50vw; /* Content on the right side */
  width: 50vw;
  position: relative;
  z-index: 2;
}

.features-scroll-block {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5vw;
}

.features-scroll-block__inner {
  max-width: 450px;
}

/* Intro card specific styles */
.features-intro-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.features-intro-card__glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top right, rgba(255,181,192,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.features-intro-card__eyebrow {
  font-family: var(--font-mono, monospace);
  font-size: var(--fs-xs);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.features-intro-card__title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 1.5rem;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-intro-card__desc {
  font-size: var(--fs-body);
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.features-intro-card__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
  margin-bottom: 1.5rem;
}

.features-intro-card__subdesc {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Feature block styles */
.features-scroll-block__icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.features-scroll-block__title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 1rem;
}

.features-scroll-block__text {
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* Mobile responsive */
@media (max-width: 991px) {
  .features-sticky-visual {
    width: 100vw;
    height: 60vh;
    position: sticky;
    top: 0;
    z-index: 1;
  }
  .features-sticky-visual__overlay {
    background: linear-gradient(to bottom, rgba(11,9,15,0) 0%, rgba(11,9,15,1) 100%);
  }
  .features-scroll-content {
    margin-top: 0;
    margin-left: 0;
    width: 100vw;
    background: #0b090f; /* Solid background so it slides over the sticky visual */
  }
  .features-scroll-block {
    min-height: 60vh;
    padding: 10vh 5vw;
  }
}

/* ======================================================
   JOURNEYS SECTION (Card Slider)
   ====================================================== */
.journeys {
  position: relative;
  background: var(--color-bg);
  overflow: hidden;
}

.journeys__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.journeys__eyebrow {
  display: inline-block;
  padding: 0.375rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-pill);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.journeys__title .text-accent-font {
  font-family: var(--font-accent);
  font-style: italic;
}

/* Slider Container */
.journeys__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-block: var(--space-md);
}

.journeys__slides {
  display: flex;
  flex-direction: row;
  width: max-content;
  gap: 2.5rem;
  padding-inline: 12vw;
  will-change: transform;
}

/* Individual Slide */
.journey-slide {
  position: relative;
  flex-shrink: 0;
  width: 480px;
  aspect-ratio: 1.45;
  perspective: 1200px;
  cursor: pointer;
  will-change: transform;
}

/* Journeys Progress Bar */
.journeys__progress-container {
  margin-top: var(--space-xl);
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.journeys__progress-bar {
  width: 240px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.journeys__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));
  will-change: width;
}

.journey-slide__front,
.journey-slide__back {
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  backface-visibility: hidden;
  transition: transform 0.6s var(--ease-smooth);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.journey-slide__front {
  background: var(--color-surface);
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  height: 100%;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.02);
}

.journey-slide__back {
  background: linear-gradient(160deg, var(--color-surface-2) 0%, var(--color-surface) 100%);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-lg);
}

.journey-slide:hover .journey-slide__front {
  transform: rotateY(180deg);
}

.journey-slide:hover .journey-slide__back {
  transform: rotateY(0deg);
}

.journey-slide__img {
  width: 48% !important;
  height: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.journey-slide__svg {
  width: 50%;
  height: auto;
  transition: transform 0.8s var(--ease-smooth), opacity 0.8s ease;
}

.journey-slide:hover .journey-slide__svg {
  transform: scale(1.15) rotate(8deg);
}

.journey-slide__info {
  width: 52%;
  height: 100%;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.journey-slide__num-tag {
  font-family: monospace;
  font-size: 0.68rem;
  color: var(--color-accent-2);
  letter-spacing: var(--ls-wider);
  margin-bottom: 0.25rem;
  opacity: 0.8;
}

.journey-slide__name {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: #ffffff;
}

.journey-slide__tagline {
  font-size: 0.68rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.journey-slide__plus {
  position: absolute;
  bottom: var(--space-sm);
  left: var(--space-lg);
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-light);
  border-radius: 50%;
  font-size: 0.85rem;
  color: var(--color-text-dim);
}

/* Back card content */
.journey-slide__back-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: 0.25rem;
}

.journey-slide__back-tagline {
  font-size: var(--fs-sm);
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.journey-slide__back-desc {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-loose);
}

/* Marquee */
.journeys__marquee-wrap {
  display: flex;
  overflow: hidden;
  margin-top: var(--space-xl);
  padding-block: var(--space-sm);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.journeys__marquee {
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: marquee-scroll 50s linear infinite;
  white-space: nowrap;
}

.journeys__marquee-text {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  font-weight: var(--fw-medium);
}

.journeys__marquee-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.3;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% - 1rem)); }
}

/* ======================================================
   HOW IT WORKS SECTION
   ====================================================== */
.how-works {
  background: var(--color-bg);
  position: relative;
}

.how-works__title {
  margin-bottom: var(--space-lg);
}

.how-works__line {
  width: 100%;
  height: 1px;
  background: var(--color-border);
  margin-bottom: var(--space-2xl);
}

.how-works__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.how-works__step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.how-works__step.is-reversed {
  direction: rtl;
}

.how-works__step.is-reversed > * {
  direction: ltr;
}

.how-works__step-img-wrap {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.how-works__step-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
}

.how-works__step-number {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--color-text-dim);
  font-size: var(--fs-xs);
}

.how-works__step-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.how-works__step-title {
  max-width: 12ch;
}

.how-works__step-desc {
  color: var(--color-text-muted);
  max-width: 40ch;
  line-height: var(--lh-loose);
}

/* Dropdown / Accordion */
.how-works__dropdown {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-sm);
}

.how-works__dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 0;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-text-muted);
  cursor: pointer;
}

.how-works__dropdown-icon {
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  transition: transform 0.3s var(--ease-smooth);
}

.how-works__dropdown-icon::before,
.how-works__dropdown-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: 50%;
}

.how-works__dropdown-icon::before {
  width: 0.75rem;
  height: 1px;
  transform: translate(-50%, -50%);
}

.how-works__dropdown-icon::after {
  width: 1px;
  height: 0.75rem;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease-smooth), opacity 0.3s ease;
}

.how-works__dropdown.is-open .how-works__dropdown-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.how-works__dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-smooth);
}

.how-works__dropdown.is-open .how-works__dropdown-content {
  max-height: 12rem;
}

.how-works__dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: var(--space-sm) 0;
}

.how-works__dropdown-item {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.how-works__dropdown-item:last-child {
  border-bottom: none;
}

/* ======================================================
   COMPANION / AI SECTION
   ====================================================== */
.companion {
  position: relative;
  background: var(--color-bg);
  overflow: hidden;
}

.companion__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.companion__eyebrow {
  display: inline-block;
  padding: 0.375rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-pill);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

/* Tabs Container */
.companion__tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-2xl);
  width: 100%;
}

.companion__tabs {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--color-border);
  padding: 4px;
  border-radius: var(--border-radius-pill);
  position: relative;
  overflow-x: auto;
  max-width: 100%;
  scrollbar-width: none;
}
.companion__tabs::-webkit-scrollbar { display: none; }

.companion__tabs-pill {
  position: absolute;
  height: calc(100% - 8px);
  background: var(--color-primary);
  border-radius: var(--border-radius-pill);
  z-index: 1;
  will-change: transform, width;
}

.companion__tab {
  padding: 0.625rem 1.5rem;
  border-radius: var(--border-radius-pill);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.companion__tab.active {
  color: #ffffff !important;
}

/* Dashboard Grid Layout */
.companion__dashboard {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 1.2fr;
  gap: var(--space-lg);
  align-items: center;
  max-width: 1050px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

/* Interactive Cards */
.companion__card {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.companion__card-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.15;
  filter: blur(40px);
  z-index: 0;
  transition: opacity 0.4s ease;
}

.companion__card--human .companion__card-glow {
  background: #ffa050;
  top: -100px;
  left: -100px;
}

.companion__card--ai .companion__card-glow {
  background: var(--color-accent-2);
  bottom: -100px;
  right: -100px;
}

.companion__card:hover {
  transform: translateY(-6px);
  border-color: rgba(182, 74, 216, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06), 0 0 20px rgba(182, 74, 216, 0.03);
}

.companion__card--human:hover {
  border-color: rgba(255, 160, 80, 0.3);
  box-shadow: 0 10px 40px rgba(255, 160, 80, 0.05);
}

.companion__card--ai:hover {
  border-color: rgba(247, 131, 255, 0.3);
  box-shadow: 0 10px 40px rgba(247, 131, 255, 0.05);
}

.companion__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.companion__card-status {
  font-size: 0.65rem;
  letter-spacing: var(--ls-wider);
  color: var(--color-text-dim);
  text-transform: uppercase;
}

.companion__card-body {
  position: relative;
  z-index: 1;
  margin-top: var(--space-lg);
}

.companion__card-title {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.companion__card-desc {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-loose);
  min-height: 90px;
}

/* Center Synapse */
.companion__synapse {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.companion__synapse-core {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 30px 10px rgba(255, 255, 255, 0.2);
  z-index: 2;
  transition: background 0.8s ease, box-shadow 0.8s ease;
}

.companion__synapse-svg {
  width: 100%;
  height: 100%;
  color: var(--color-text-dim);
}

/* Synapse dot animations */
.synapse-dot {
  animation: synapse-flow 3s linear infinite;
  filter: drop-shadow(0 0 4px currentColor);
}

.synapse-dot--left {
  animation-delay: 0s;
}

.synapse-dot--right {
  animation-delay: 1.5s;
}

@keyframes synapse-flow {
  0% {
    cx: 50;
    cy: 100;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    cx: 100;
    cy: 100;
    r: 4px;
  }
  90% {
    opacity: 1;
  }
  100% {
    cx: 150;
    cy: 100;
    opacity: 0;
  }
}

/* Outcome Banner */
.companion__outcome {
  text-align: center;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-lg);
  max-width: 600px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.companion__outcome-label {
  font-size: var(--fs-xs);
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
}

.companion__outcome-text {
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: #ffffff;
  font-family: var(--font-accent);
  font-style: italic;
}

/* ======================================================
   HEALTH ALIGNMENT SECTION
   ====================================================== */
.health {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

/* ======================================================
   TESTIMONIALS SECTION
   ====================================================== */
.testimonials {
  position: relative;
  background: #fafaf8;
  color: var(--color-text-dark);
}

.testimonials__title {
  margin-bottom: var(--space-2xl);
  color: var(--color-text-dark);
}

.testimonials__title .text-accent-font {
  font-family: var(--font-accent);
  font-style: italic;
}

.testimonials__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.testimonial-card {
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 22rem;
  position: relative;
  will-change: transform;
}

.testimonial-card--rose {
  background: linear-gradient(145deg, #fef0f0 0%, #fdf5f0 100%);
}

.testimonial-card--blue {
  background: linear-gradient(145deg, #eef3ff 0%, #f0f5ff 100%);
}

.testimonial-card--amber {
  background: linear-gradient(145deg, #fff8ee 0%, #fff5e6 100%);
}

.testimonial-card--maroon {
  background: linear-gradient(145deg, #f5eef0 0%, #f0e8ec 100%);
}

.testimonial-card__quote-icon {
  width: 2.5rem;
  height: auto;
  opacity: 0.1;
  margin-bottom: var(--space-md);
}

.testimonial-card__text {
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
  color: var(--color-text-dark-muted);
  max-width: 45ch;
  flex: 1;
}

.testimonial-card__author {
  margin-top: var(--space-lg);
}

.testimonial-card__name {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--color-text-dark);
}

.testimonial-card__role {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-text-dark-muted);
  margin-top: 0.25rem;
}

/* ======================================================
   TEAM SECTION
   ====================================================== */
.team {
  position: relative;
  background: #fafaf8;
  color: var(--color-text-dark);
  overflow: hidden;
}

.team__title {
  margin-bottom: var(--space-2xl);
  max-width: 30ch;
}

.team__carousel-wrap {
  position: relative;
  overflow: hidden;
}

.team__carousel {
  display: flex;
  gap: var(--space-md);
  width: 100%;
  overflow-x: auto;
  padding-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.team__carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.team-card {
  flex: 0 0 auto;
  width: clamp(12rem, 18vw, 16rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-card__img-wrap {
  aspect-ratio: 3/4;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: #e8e5e0;
}

.team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.team-card:hover .team-card__img {
  transform: scale(1.05);
}

.team-card__name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text-dark);
}

.team-card__role {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-text-dark-muted);
}

.team-card__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--fs-xs);
  color: var(--color-text-dark-muted);
  transition: color var(--duration-fast) ease;
}

.team-card__linkedin:hover {
  color: #0077b5;
}

.team-card__linkedin svg {
  width: 1rem;
  height: 1rem;
}

@keyframes team-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - var(--space-md) / 2)); }
}

/* Gradient overlays for carousel edges */
.team__carousel-wrap::before,
.team__carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8rem;
  pointer-events: none;
  z-index: 10;
  z-index: 2;
  pointer-events: none;
}

.team__carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fafaf8, transparent);
}

.team__carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fafaf8, transparent);
}

/* Decorative SVG */
.team__decoration {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20rem;
  opacity: 0.04;
  pointer-events: none;
}

/* ======================================================
   CTA / BLUEPRINT SECTION
   ====================================================== */
.cta-section {
  position: relative;
  background: var(--color-bg);
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(66,11,32,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 30% 60%, rgba(247,131,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 70% 40%, rgba(255,181,192,0.1) 0%, transparent 60%);
}

.cta-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.cta-section__title {
  margin-bottom: var(--space-md);
}

.cta-section__desc {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  max-width: 30ch;
  margin-inline: auto;
  line-height: var(--lh-loose);
}

/* ======================================================
   FOOTER (CHAINBLK STYLE LUXURY)
   ====================================================== */
.footer-chain {
  background: #0a080e; /* Deep purple vibe color */
  padding-top: var(--space-3xl);
  padding-bottom: 80px; /* Ensure footer clears the fixed bottom pill nav */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-secondary);
}

.footer-chain__top {
  margin-bottom: var(--space-3xl);
}

.footer-chain__title {
  font-family: var(--font-primary);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: var(--fw-bold);
  font-style: italic;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: var(--ls-tight);
}

.footer-chain__mid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: var(--space-2xl);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-chain__newsletter {
  padding-right: var(--space-xl);
}

.footer-chain__newsletter-title {
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
  color: #ffffff;
  margin-bottom: var(--space-md);
}

.footer-chain__form {
  display: flex;
  margin-bottom: var(--space-sm);
}

.footer-chain__input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.2rem;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 1rem;
  border-right: none;
  transition: background 0.3s ease;
}

.footer-chain__input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.06);
}

.footer-chain__btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 1.2rem;
  cursor: pointer;
  color: #ffffff;
  transition: background 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-chain__btn:hover {
  background: #ffffff;
  color: var(--color-bg);
}

.footer-chain__btn svg {
  width: 20px;
  height: 20px;
}

.footer-chain__disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.footer-chain__links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.footer-chain__col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-chain__heading {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.footer-chain__col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-chain__col a:hover {
  color: #ffffff;
}

.footer-chain__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-chain__logo-wrap {
  margin-bottom: var(--space-sm);
}

.footer-chain__huge-logo {
  font-family: var(--font-primary);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}

.footer-chain__legal {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-chain__legal a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-chain__legal a:hover {
  color: #ffffff;
}

.footer-chain__dot {
  font-size: 0.5rem;
}

/* Responsive Footer */
@media screen and (max-width: 992px) {
  .footer-chain__mid {
    grid-template-columns: 1fr;
  }
  .footer-chain__newsletter {
    padding-right: 0;
    margin-bottom: var(--space-xl);
  }
}

@media screen and (max-width: 768px) {
  .footer-chain__links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
  .footer-chain__legal {
    flex-wrap: wrap;
  }
}


/* Toggle body visibility for gradient blur */
body.footer-visible .gradient-blur {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* ======================================================
   REVEAL ANIMATION UTILITIES
   ====================================================== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
}

.reveal-fade.is-visible {
  opacity: 1;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ======================================================
   RESPONSIVE
   ====================================================== */

/* Tablet */
@media (max-width: 991px) {
  .how-works__step {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .how-works__step.is-reversed {
    direction: ltr;
  }

  .companion__dashboard {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .companion__synapse {
    height: 100px;
    width: 100px;
    margin-inline: auto;
    order: 2;
  }

  .companion__card--human {
    order: 1;
  }

  .companion__card--ai {
    order: 3;
  }

  .journey-slide {
    width: clamp(12rem, 40vw, 18rem);
  }

  /* Responsive megamenu */
  .nav__menu-container {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding-top: var(--space-3xl);
  }

  .nav__menu-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 0;
    padding-bottom: var(--space-lg);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 3.5rem;
  }

  .nav__link {
    display: none;
  }

  .gradient-blur {
    height: 10%;
  }

  .hero {
    padding-top: 8rem;
    padding-bottom: 6rem;
    min-height: auto;
  }

  .features__pointer {
    display: none;
  }

  .testimonials__cards {
    gap: var(--space-md);
  }

  .testimonial-card {
    min-height: auto;
    padding: var(--space-lg);
  }

  .companion__synapse {
    display: none;
  }

  .journeys__slider {
    height: 50vh;
    min-height: 350px;
  }

  .team-card {
    width: clamp(10rem, 50vw, 14rem);
  }

  /* Responsive megamenu mobile */
  .nav__menu {
    padding-block: var(--space-3xl) var(--space-md);
  }
  
  .nav__menu-container {
    gap: var(--space-md);
  }

  .nav__menu-brand-desc {
    display: none;
  }

  .nav__menu-stats {
    gap: var(--space-lg);
  }

  .nav__menu-item a {
    font-size: var(--fs-md);
  }
  
  .nav__menu-sub {
    font-size: var(--fs-xs);
  }
}

@media (max-width: 480px) {
  .journey-slide {
    width: clamp(10rem, 60vw, 14rem);
  }

  .companion__tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hello-bar__track {
    animation: none;
  }

  .journeys__marquee {
    animation: none;
  }

  .team__carousel {
    animation: none;
  }
}

/* ======================================================
   🎨 CREATIVE ENHANCEMENTS — PREMIUM LAYER
   ====================================================== */

/* ---------- AMBIENT GLOWS ---------- */
.ambient-glows {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15; /* Increased slightly to compensate for blur removal */
  mix-blend-mode: screen;
  will-change: transform;
  animation: drift 25s ease-in-out infinite alternate;
}

.ambient-glow--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #5C1430 0%, transparent 80%);
  top: -150px;
  left: -100px;
  animation-delay: 0s;
}

.ambient-glow--2 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #211a3b 0%, transparent 80%);
  bottom: -250px;
  right: -150px;
  animation-delay: -5s;
  animation-duration: 35s;
}

.ambient-glow--3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #FFB5C0 0%, transparent 80%);
  top: 35%;
  left: 45%;
  animation-delay: -10s;
  animation-duration: 30s;
}

@keyframes drift {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  100% { transform: translate(8%, -6%) scale(1.1) rotate(15deg); }
}

/* ---------- CUSTOM CURSOR ---------- */
/* Custom Adaptive Dot Cursor */
.cursor-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  mix-blend-mode: difference;
  opacity: 0;
}

.cursor-dot.is-visible { opacity: 1; }

.cursor-dot.is-hovering {
  width: 30px; 
  height: 30px;
}

.cursor-dot.is-clicking { 
  width: 6px; 
  height: 6px; 
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-light);
}

@media (pointer: fine) {
  body.custom-cursor, body.custom-cursor * { cursor: none !important; }
}

/* ---------- ULTRA-PREMIUM ZOOM-IN PRELOADER ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #ffffff; /* Start entirely solid white */
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: transform, opacity;
  transform-origin: center;
}

.preloader__brand {
  position: relative;
  z-index: 2;
  will-change: transform, opacity;
  opacity: 0;
  transform: scale(0.9);
}

.preloader__logo {
  width: 140px;
  height: auto;
}

.preloader__logo--base path {
  fill: #e6e6e6; /* Light gray base logo */
}

.preloader__logo--shine {
  position: absolute;
  top: 0;
  left: 0;
  clip-path: inset(0 100% 0 0); /* Hidden from the right side initially */
  -webkit-clip-path: inset(0 100% 0 0);
  will-change: clip-path;
}

.preloader__logo--shine path {
  fill: #111111; /* Dark luxury shine logo */
}

/* ---------- SCROLL PROGRESS BAR ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; width: 0%; height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-accent-2));
  z-index: 9997; will-change: width;
}

/* ---------- NOISE / GRAIN OVERLAY ---------- */
.noise-overlay {
  position: fixed; inset: 0; z-index: 9990;
  pointer-events: none; opacity: 0.03; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 180px;
}

/* ---------- FLOATING PARTICLES ---------- */
.particles-container {
  position: absolute; inset: 0; overflow: hidden;
  pointer-events: none; z-index: 1;
}
.particle {
  position: absolute; border-radius: 50%; opacity: 0;
  animation: particle-float linear infinite;
}
.particle--sm { width: 2px; height: 2px; background: rgba(255,181,192,0.4); }
.particle--md { width: 3px; height: 3px; background: rgba(247,131,255,0.25); }
.particle--lg {
  width: 5px; height: 5px; background: rgba(255,255,255,0.08);
  box-shadow: 0 0 10px 2px rgba(255,181,192,0.15);
}
@keyframes particle-float {
  0%   { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-20vh) translateX(var(--drift, 50px)) scale(1); opacity: 0; }
}

/* ---------- GLOWING BORDER ON TESTIMONIAL CARDS ---------- */
@property --glow-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.testimonial-card {
  position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease-smooth), box-shadow 0.5s ease;
}
.testimonial-card::before {
  content: ''; position: absolute; inset: -2px;
  border-radius: calc(var(--border-radius-lg) + 2px);
  background: conic-gradient(from var(--glow-angle, 0deg),
    transparent 0%, rgba(255,181,192,0.4) 10%, transparent 20%, transparent 100%);
  opacity: 0; transition: opacity 0.5s ease; z-index: -1;
}
.testimonial-card:hover::before { opacity: 1; animation: glow-rotate 3s linear infinite; }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
@keyframes glow-rotate { from { --glow-angle: 0deg; } to { --glow-angle: 360deg; } }

/* ---------- STATS / COUNTER SECTION ---------- */
.stats {
  position: relative; background: var(--color-bg);
  border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.stat-card {
  text-align: center; padding: var(--space-xl) var(--space-md); position: relative;
}
.stat-card::after {
  content: ''; position: absolute; right: 0; top: 25%; height: 50%;
  width: 1px; background: var(--color-border);
}
.stat-card:last-child::after { display: none; }
.stat-card__number {
  font-size: var(--fs-2xl); font-weight: var(--fw-bold); line-height: 1;
  letter-spacing: var(--ls-tight); margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-card__label {
  font-size: var(--fs-xs); text-transform: uppercase;
  letter-spacing: var(--ls-wider); color: var(--color-text-dim);
}
.stat-card__sublabel {
  font-size: var(--fs-xs); color: var(--color-text-muted); margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2)::after { display: none; }
}

/* ---------- SECTION DIVIDER ---------- */
.section-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,181,192,0.3) 20%,
    rgba(247,131,255,0.2) 50%, rgba(255,181,192,0.3) 80%, transparent 100%);
  position: relative;
}
.section-divider::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%); width: 6px; height: 6px;
  border-radius: 50%; background: var(--color-accent);
  box-shadow: 0 0 15px 3px rgba(255,181,192,0.3);
}

/* ---------- BUTTON RIPPLE EFFECT ---------- */
.btn .ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: scale(0); animation: btn-ripple 0.6s ease-out forwards;
  pointer-events: none;
}
@keyframes btn-ripple { to { transform: scale(4); opacity: 0; } }

/* ---------- TEXT GRADIENT & SHIMMER ---------- */
.text-gradient {
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent) 50%, var(--color-accent-2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-shimmer {
  background: linear-gradient(120deg, var(--color-text) 0%, var(--color-text) 40%,
    var(--color-accent) 50%, var(--color-text) 60%, var(--color-text) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: text-shimmer 4s ease-in-out infinite;
}
@keyframes text-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ---------- ENHANCED NAV SCROLL STATE ---------- */
.nav.is-scrolled {
  background: rgba(10, 8, 14, 0.75) !important;
  backdrop-filter: saturate(140%) blur(20px) !important;
  -webkit-backdrop-filter: saturate(140%) blur(20px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: var(--space-xs) !important;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ---------- ENHANCED CARD GLASS ---------- */
.journey-slide__front {
  box-shadow: 0 4px 30px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
}
.journey-slide__back {
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.journey-slide__front::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--border-radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.journey-slide:hover .journey-slide__front::after { opacity: 1; }

/* ---------- CTA PULSE RINGS ---------- */
.cta-section { min-height: 60vh; display: flex; align-items: center; }
.cta-section__pulse-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,181,192,0.08);
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  animation: cta-pulse 3s ease-in-out infinite; pointer-events: none;
}
.cta-section__pulse-ring:nth-child(2) { width: 300px; height: 300px; animation-delay: 0.5s; }
.cta-section__pulse-ring:nth-child(3) { width: 400px; height: 400px; animation-delay: 1s; }
.cta-section__pulse-ring:nth-child(4) { width: 500px; height: 500px; animation-delay: 1.5s; }
@keyframes cta-pulse {
  0%, 100% { opacity: 0.15; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 0.4; transform: translate(-50%, -50%) scale(1.06); }
}

@keyframes scroll-line-drop {
  0%   { top: -100%; opacity: 0; }
  30%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ---------- TEAM CARD OVERLAY ---------- */
.team-card__img-wrap { position: relative; overflow: hidden; }
.team-card__img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s ease;
}
.team-card:hover .team-card__img-wrap::after { opacity: 1; }


/* ======================================================
   🎨 DIAGNOSTICS PREMIUM OVERRIDES
   ====================================================== */



/* ---------- PREMIUM GRADIENTS (NO BLACK BACKGROUNDS) ---------- */
.hero {
  background: radial-gradient(ellipse at 50% 50%, #f3ebfc 0%, #fafafc 100%) !important;
}
.about {
  background: radial-gradient(circle at 50% 50%, #fff0f5 0%, #fafafc 100%) !important;
}
.features {
  background: radial-gradient(circle at 10% 25%, #eefbf7 0%, #fafafc 100%) !important;
}
.journeys {
  /* Removed overriding light background so dark theme applies correctly */
}
.how-works {
  background: radial-gradient(circle at 20% 70%, #f0f7ff 0%, #fafafc 100%) !important;
}
.companion {
  background: radial-gradient(circle at 50% 50%, #f9f0fc 0%, #fafafc 100%) !important;
}
.health {
  background: radial-gradient(circle at 80% 80%, #eefdf4 0%, #fafafc 100%) !important;
}
.cta-section {
  background: linear-gradient(135deg, #fafafc 0%, #fbf0fb 50%, #edf4fa 100%) !important;
}
/* Footer background handled in main style block */



.hero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius);
  padding: var(--space-xs) var(--space-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  z-index: 5;
  pointer-events: none;
  transition: box-shadow 0.3s ease;
  will-change: transform;
}

.hero-floating-card--1 {
  top: 15%;
  right: -25px;
  width: 170px;
}

.hero-floating-card--2 {
  bottom: 22%;
  left: -40px;
  width: 160px;
  padding: var(--space-sm);
}

.hero-floating-card--3 {
  bottom: -10px;
  right: 15px;
  width: 150px;
  text-align: center;
  padding: var(--space-sm) var(--space-md);
}

/* Floating Card internal components */
.hero-floating-card__header {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.25rem;
}

.hero-floating-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34c759;
  box-shadow: 0 0 8px rgba(52, 199, 89, 0.6);
  animation: hb-pulse 1.5s ease-in-out infinite;
}

.hero-floating-card__tag {
  font-family: monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: var(--ls-wide);
  color: var(--color-text-muted);
}

.hero-floating-card__val {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
}

.hero-floating-card__lbl {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.hero-floating-card__graph {
  margin-top: 0.25rem;
  width: 100%;
}

@media (max-width: 767px) {
  .hero-floating-card {
    display: none;
  }
}

.hero-dashboard {
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
  perspective: 1000px;
}

.hero-dashboard__glass {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.06);
}

.hero-dashboard__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-md);
}

.hero-dashboard__status-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-dashboard__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-2);
  box-shadow: 0 0 10px var(--color-accent-2);
  animation: hb-pulse 1.5s infinite;
}

.hero-dashboard__status {
  font-family: monospace;
  font-size: 0.65rem;
  letter-spacing: var(--ls-wider);
  color: var(--color-text-muted);
}

.hero-dashboard__ver {
  font-family: monospace;
  font-size: 0.65rem;
  color: var(--color-text-dim);
}

.hero-dashboard__svg {
  width: 100%;
  height: auto;
}

.dashboard-scanner-line {
  will-change: transform;
  transform-origin: center;
  animation: scanner-sweep-vertical 4s ease-in-out infinite alternate;
}

@keyframes scanner-sweep-vertical {
  0% {
    transform: translateY(0);
    opacity: 0.3;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(240px);
    opacity: 0.3;
  }
}

.dashboard-orbit-dot {
  transform-origin: 200px 140px;
  animation: orbit 10s linear infinite;
}

.dashboard-orbit-dot-2 {
  transform-origin: 200px 140px;
  animation: orbit 14s linear infinite reverse;
}

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

.hero-dashboard__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: var(--space-md);
  margin-top: var(--space-md);
  text-align: center;
}

.hero-dashboard__stat {
  display: flex;
  flex-direction: column;
}

.hero-dashboard__lbl {
  font-family: monospace;
  font-size: 0.55rem;
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.hero-dashboard__val {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: #ffffff;
  margin-top: 0.15rem;
}

/* ---------- REDESIGNED HOW IT WORKS GRID ---------- */
.how-works__steps {
  display: none !important; /* Hide old steps structure */
}

.how-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.how-works__card {
  background: rgba(25, 17, 33, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.how-works__card:hover {
  transform: translateY(-10px);
}

#hwCard1:hover {
  border-color: rgba(255, 181, 192, 0.4) !important;
  box-shadow: 0 16px 40px rgba(255, 181, 192, 0.08);
}

#hwCard2:hover {
  border-color: rgba(247, 131, 255, 0.4) !important;
  box-shadow: 0 16px 40px rgba(247, 131, 255, 0.08);
}

#hwCard3:hover {
  border-color: rgba(255, 160, 80, 0.4) !important;
  box-shadow: 0 16px 40px rgba(255, 160, 80, 0.08);
}

.how-works__card-num {
  font-family: monospace;
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  opacity: 0.15;
  margin-bottom: 0.5rem;
}

.how-works__card-title {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
  color: #ffffff;
}

.how-works__card-visual {
  height: 100px;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius);
  margin-block: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm);
}

.how-works__card-visual svg {
  width: 100%;
  height: 100%;
}

.how-works-radar {
  transform-origin: 100px 60px;
  animation: radar-sweep 4s linear infinite;
}

.how-works-card-scanner {
  will-change: transform;
  transform-origin: center;
  animation: card-scanner-sweep 2.5s ease-in-out infinite alternate;
}

@keyframes card-scanner-sweep {
  0% {
    transform: translateY(0);
    opacity: 0.3;
  }
  10% {
    opacity: 0.85;
  }
  90% {
    opacity: 0.85;
  }
  100% {
    transform: translateY(40px);
    opacity: 0.3;
  }
}

@keyframes radar-sweep {
  to { transform: rotate(360deg); }
}

.how-works__card-desc {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-normal);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.how-works__card-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: var(--space-md);
}

.how-works__card-feature {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  position: relative;
  padding-left: 1rem;
}

.how-works__card-feature::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent-2);
  font-weight: bold;
}

/* ---------- AUDITED JOURNEYS SECTION CONTRAST & VISIBILITY ---------- */
.journey-slide__front {
  background: rgba(28, 22, 38, 0.96) !important;
  border: 1px solid var(--journey-border-dim) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
}

.journey-slide__back {
  background: linear-gradient(160deg, rgba(38, 28, 52, 0.98) 0%, rgba(22, 16, 32, 0.98) 100%) !important;
  border: 1px solid var(--journey-border-dim) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.journey-slide__name {
  color: #ffffff;
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
}

.journey-slide__tagline {
  color: var(--journey-border);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
}

.journey-slide[data-slide="0"] { --journey-glow: rgba(255, 181, 192, 0.5); --journey-border: #FFB5C0; --journey-border-dim: rgba(255, 181, 192, 0.25); }
.journey-slide[data-slide="1"] { --journey-glow: rgba(120, 200, 180, 0.5); --journey-border: #78C8B4; --journey-border-dim: rgba(120, 200, 180, 0.25); }
.journey-slide[data-slide="2"] { --journey-glow: rgba(100, 150, 255, 0.5); --journey-border: #6496FF; --journey-border-dim: rgba(100, 150, 255, 0.25); }
.journey-slide[data-slide="3"] { --journey-glow: rgba(255, 160, 80, 0.5); --journey-border: #FFA050; --journey-border-dim: rgba(255, 160, 80, 0.25); }
.journey-slide[data-slide="4"] { --journey-glow: rgba(180, 130, 255, 0.5); --journey-border: #B482FF; --journey-border-dim: rgba(180, 130, 255, 0.25); }
.journey-slide[data-slide="5"] { --journey-glow: rgba(80, 220, 160, 0.5); --journey-border: #50DCA0; --journey-border-dim: rgba(80, 220, 160, 0.25); }

.journey-slide:hover {
  box-shadow: 0 16px 40px -10px var(--journey-glow) !important;
}

.journey-slide:hover .journey-slide__front,
.journey-slide:hover .journey-slide__back {
  border-color: var(--journey-border) !important;
}

.journey-slide__meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.journey-slide__meta-item {
  display: flex;
  flex-direction: column;
}

.journey-slide__meta-lbl {
  font-family: monospace;
  font-size: 0.6rem;
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
}

.journey-slide__meta-val {
  font-size: 0.8rem;
  font-weight: var(--fw-semibold);
  color: var(--journey-border, #ffffff);
  margin-top: 0.15rem;
}


.health {
  min-height: 100vh;
  width: 100%;
  padding-block: var(--space-3xl);
  display: flex;
  align-items: center;
  position: relative;
  background: #ffffff; /* Light background */
  color: #111111;
}

.health__container {
  display: grid;
  grid-template-columns: 1.12fr 1.88fr;
  gap: var(--space-3xl);
  align-items: center;
  height: 100%;
  width: 100%;
}

.health__intro {
  display: flex;
  flex-direction: column;
  z-index: 10;
}

.health__eyebrow {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.health__title {
  margin-bottom: var(--space-md);
  color: #111111;
}

.health__subtitle {
  font-size: var(--fs-base);
  color: #555555;
  line-height: var(--lh-loose);
}

.health__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  height: 100%;
  align-items: center;
  position: relative;
}

.health__column {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  will-change: transform;
}

.health-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease, border-color 0.6s ease;
}

.health-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.15);
}

/* Remove glows */
.health-card__glow { display: none; }

.health-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 1;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.health-card__num {
  font-family: var(--font-mono, monospace);
  font-size: var(--fs-xs);
  opacity: 0.5;
  color: #111111;
}

.health-card__title {
  font-size: var(--fs-md);
  font-weight: 400;
  color: #111111;
}

.health-card__visual {
  height: 120px;
  width: 100%;
  background: #f8f8f8;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.05);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  margin-bottom: var(--space-md);
}

.health-card__visual svg {
  width: 100%;
  height: 100%;
  max-width: 250px;
}

.health-card__desc {
  font-size: var(--fs-sm);
  color: #333333;
  line-height: var(--lh-normal);
  z-index: 1;
  font-weight: 400;
}

/* ---------- REDESIGNED LUXURY BRONZE-GOLD TESTIMONIALS ---------- */
.testimonials {
  background: radial-gradient(circle at 50% 50%, #140d22 0%, #06040a 100%) !important;
}

.testimonials__title {
  margin-bottom: var(--space-2xl);
  color: #ffffff !important;
}

@media (min-width: 992px) {
  .testimonials__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    width: 100%;
  }
  .testimonial-card {
    position: relative;
    width: 100%;
  }
}

.testimonial-card {
  background: rgba(22, 16, 33, 0.8) !important;
  border: 1px solid rgba(255, 181, 192, 0.12) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45) !important;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  will-change: transform;
  transition: transform 0.4s var(--ease-smooth), border-color 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card__header-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed rgba(255, 181, 192, 0.12);
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-md);
}

.testimonial-card__id {
  font-family: monospace;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: var(--ls-wide);
}

.testimonial-card__metric {
  font-family: monospace;
  font-size: 0.65rem;
  font-weight: var(--fw-bold);
  color: var(--color-accent);
}

.testimonial-card__body-wrap {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  flex: 1;
}

.testimonial-card__quote-icon {
  width: 2.2rem;
  height: auto;
  color: var(--color-accent);
  opacity: 0.25;
  flex-shrink: 0;
}

.testimonial-card__text {
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
  color: rgba(255, 255, 255, 0.85);
  max-width: 48ch;
}

.testimonial-card__author {
  border-top: 1px solid rgba(255, 181, 192, 0.08);
  padding-top: var(--space-md);
  margin-top: var(--space-lg);
}

.testimonial-card__name {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: #ffffff;
}

.testimonial-card__role {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* Override testimonial glowing border style */
.testimonial-card::before {
  display: none !important;
}

.testimonial-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(255, 181, 192, 0.4) !important;
  box-shadow: 0 20px 48px rgba(255, 181, 192, 0.08) !important;
}



/* ======================================================
   HOW IT WORKS (Sticky Layout Redesign)
/* ======================================================
   THE METHOD (TIMELINE REDESIGN)
   ====================================================== */
.method-timeline-section {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

.method-timeline__header {
  margin-bottom: 5rem;
}

.method-timeline__eyebrow {
  font-family: var(--font-mono, monospace);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--fs-xs);
  color: var(--color-accent);
  display: block;
  margin-bottom: 1rem;
}

.method-zigzag {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 8rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  position: relative;
}

.method-line-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.method-line-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.method-line-path {
  fill: none;
  stroke: url(#method-line-gradient);
  stroke-width: 4px;
  stroke-linecap: round;
  /* Removed drop-shadow for scroll performance optimization */
  stroke-dasharray: 1; /* For GSAP drawSVG equivalent */
  stroke-dashoffset: 1;
}

.method-line-path--mobile {
  display: none;
}

.method-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(200, 255, 220, 0.08) 100%);
  box-shadow: 0 20px 40px rgba(0,0,0,0.03);
  border: 1px solid rgba(0, 200, 100, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.method-row:hover {
  transform: scale(1.02);
  box-shadow: 0 40px 80px rgba(0, 200, 100, 0.08);
}

.method-row__content {
  padding: 2rem 0;
}

.method-row__num {
  font-family: var(--font-mono, monospace);
  font-size: var(--fs-2xl);
  color: #111111;
  opacity: 0.8;
  margin-bottom: 1rem;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.method-row:hover .method-row__num {
  opacity: 1;
  transform: translateX(15px);
}

.method-row__title {
  margin-bottom: 1.5rem;
  color: #111111;
}

.method-row__desc {
  margin-bottom: 2.5rem;
  max-width: 45ch;
  font-size: 1.1rem;
  color: #444444;
}

.method-row__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.method-row__feature {
  font-family: var(--font-mono, monospace);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.2rem;
  background: rgba(0,0,0,0.04);
  border-radius: 100px;
  border: 1px solid rgba(0,0,0,0.08);
  color: #111111;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.method-row:hover .method-row__feature {
  background: rgba(0, 200, 100, 0.08);
  border-color: rgba(0, 200, 100, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 200, 100, 0.15);
}

.method-row__visual {
  aspect-ratio: 16/9;
  background: #0b090f;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.8s ease, border-color 0.8s ease;
}

.method-row:hover .method-row__visual {
  transform: translateY(-15px) scale(1.04) rotateY(3deg) rotateX(2deg);
  box-shadow: 0 80px 120px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,181,192,0.4) inset;
  border-color: rgba(255,181,192,0.3);
}

/* Ensure SVG inside scales on hover */
.method-row__visual svg {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.method-row:hover .method-row__visual svg {
  transform: scale(1.15) translateY(-5px);
}

/* Mobile responsive */
@media (max-width: 991px) {
  .method-line-path--desktop { display: none; }
  .method-line-path--mobile { display: block; }
  
  .method-zigzag {
    gap: 4rem;
    padding: 2rem 1rem;
  }
  .method-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
  }
  .method-row:hover {
    background: none;
    transform: none;
  }
  .method-row--right .method-row__visual {
    order: -1;
  }
  .method-row__visual {
    padding: 2rem;
  }
}

/* =========================================
   RIVAL JOURNEYS SECTION (GALLERY VIBE)
========================================= */

.accordion-journeys {
  background-color: #0b090f; /* Dark background */
  color: #fff;
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.accordion-journeys__header {
  padding: 5vh 5vw;
  flex-shrink: 0;
  z-index: 10;
}

.accordion-journeys__title {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0;
}

.accordion-journeys__eyebrow {
  font-family: var(--font-mono, monospace);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--fs-xs);
  opacity: 0.5;
  margin-top: 1rem;
}

.accordion-wrapper {
  display: flex;
  flex: 1;
  width: 100vw;
  overflow: hidden;
}

.accordion-panel {
  position: relative;
  flex: 1;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
  cursor: pointer;
}

.accordion-panel:last-child {
  border-right: none;
}

.accordion-panel:hover {
  flex: 4;
}

.accordion-panel__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1; /* Keep fully opaque and crisp at all times */
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.accordion-panel:hover .accordion-panel__bg {
  /* No opacity or contrast changes on hover, just a subtle scale effect if desired, or remove it entirely. Let's keep it static to be safe */
  transform: scale(1.05); 
}

.accordion-panel__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  /* Very subtle shadow just for text legibility, doesn't tint the whole panel */
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 80%);
}

.accordion-panel__num {
  font-family: var(--font-mono, monospace);
  font-size: var(--fs-xs);
  opacity: 0.5;
}

.accordion-panel__name {
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 400;
  margin: 0;
  white-space: nowrap;
}

.accordion-panel__tagline {
  font-size: var(--fs-sm);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  white-space: nowrap;
}

.accordion-panel:hover .accordion-panel__tagline {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 991px) {
  .accordion-journeys {
    height: auto;
    min-height: 100vh;
  }
  .accordion-wrapper {
    flex-direction: column;
    min-height: 80vh;
  }
  .accordion-panel {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    min-height: 10vh;
  }
  .accordion-panel:last-child {
    border-bottom: none;
  }
  .accordion-panel__name {
    font-size: 1.5rem;
  }
  .accordion-panel:hover {
    flex: 3;
    min-height: 40vh;
  }
}

/* =========================================
   THE DIAGNOSTICS STANDARD REDESIGN
========================================= */
.diagnostics-standard {
  background-color: #ffffff; /* White background */
  color: #111111;
  padding: 1.5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.diagnostics-standard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              scale 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: translate, rotate, scale, transform, filter;
}

.diagnostics-standard::before {
  background: 
    radial-gradient(circle at 80% 15%, rgba(37, 99, 235, 1) 0%, transparent 30%),
    radial-gradient(circle at 10% 40%, rgba(59, 130, 246, 0.95) 0%, transparent 35%),
    radial-gradient(circle at 60% 80%, rgba(37, 99, 235, 0.9) 0%, transparent 30%),
    radial-gradient(circle at 20% 90%, rgba(96, 165, 250, 0.8) 0%, transparent 25%),
    radial-gradient(circle at 90% 60%, rgba(59, 130, 246, 0.85) 0%, transparent 32%),
    radial-gradient(circle at 40% 10%, rgba(37, 99, 235, 0.95) 0%, transparent 28%);
  animation: wind-flow-slow 10s ease-in-out infinite alternate;
}

.diagnostics-standard::after {
  display: none;
}

/* Removed hover transitions so gradient brightness stays consistent */

@keyframes wind-flow-slow {
  0% { translate: 0 0; rotate: 0deg; scale: 1; }
  33% { translate: -8% 12%; rotate: 6deg; scale: 1.1; }
  66% { translate: 12% -8%; rotate: -6deg; scale: 0.95; }
  100% { translate: 0 0; rotate: 0deg; scale: 1; }
}

.diagnostics-standard__header {
  margin-bottom: 2.4rem;
  position: relative;
  z-index: 2;
}

.diagnostics-standard__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  color: #111111;
}

.diagnostics-standard__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.diagnostics-standard__left,
.diagnostics-standard__right {
  flex: 1;
}

.diagnostics-standard__left {
  text-align: left;
}

.diagnostics-standard__right {
  text-align: left;
}

.diagnostics-standard__text {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
  color: #333333;
  margin: 0;
  transition: transform 0.4s ease, color 0.4s ease;
}

.diagnostics-standard__left:hover .diagnostics-standard__text,
.diagnostics-standard__right:hover .diagnostics-standard__text {
  transform: translateY(-4px);
  color: #000000;
}

.diagnostics-standard__center {
  flex: 0 0 auto;
  position: relative;
  width: min(420px, 45vw);
  height: min(680px, 70vh);
  transform: translateY(-3.5rem);
}

.diagnostics-standard__arch-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  overflow: hidden;
}

.diagnostics-standard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.diagnostics-standard__center:hover .diagnostics-standard__img {
  transform: scale(1.08);
}

.diagnostics-standard__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 10;
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.diagnostics-standard__badge-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.diagnostics-standard__badge--dark {
  background-color: #3b1827; /* Dark plum */
  color: #ffffff;
  top: 20%;
  right: -25%;
}

.diagnostics-standard__badge--light {
  background-color: #ebe1d7;
  color: #3b1827;
  bottom: 10%;
  left: -30%;
}

@media (max-width: 991px) {
  .diagnostics-standard__container {
    flex-direction: column;
  }
  
  .diagnostics-standard__left,
  .diagnostics-standard__right {
    text-align: center;
    order: 2;
  }
  
  .diagnostics-standard__center {
    order: 1;
    width: 320px;
    height: 440px;
    margin-bottom: 3rem;
  }
  
  .diagnostics-standard__badge--dark {
    right: -5%;
  }
}

/* Fix overlapping scroll background transparency */
#journeys {
  background-color: #0b090f;
  position: relative;
  z-index: 2;
}

/* ========================================= */
/* PAGE TRANSITION OVERLAY                   */
/* ========================================= */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #0b090f; /* Diagnostics Dark Theme bg */
  z-index: 99999;
  pointer-events: none;
  transform: translateY(100%); /* Hidden by default at bottom */
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* If navigating via internal link, the script in <head> adds this class instantly, 
   covering the screen BEFORE the page renders, completely eliminating the 1-frame flash! */
html.is-transitioning .page-transition {
  transform: translateY(0%);
}

.page-transition__logo {
  color: #fff;
  font-family: var(--font-accent);
  font-size: 2rem;
  letter-spacing: -0.02em;
  opacity: 0;
}

/* ========================================= */
/* CASE STUDIES PAGE                         */
/* ========================================= */
.profiles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.profile-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.profile-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
}

.profile-card__img-wrap {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.profile-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.profile-card:hover .profile-card__img {
  transform: scale(1.05);
}

.profile-card__content {
  padding: 2.5rem;
}

.profile-card__meta {
  font-family: var(--font-accent);
  color: var(--color-primary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.profile-card__title {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.profile-card__stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.profile-card__stats li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-text-muted);
  font-size: 1rem;
}

.stat-val {
  color: #00C864;
  font-weight: 600;
  font-size: 1.25rem;
}

.impact-quote {
  padding: 10rem 0;
  background: linear-gradient(to bottom, rgba(11, 9, 15, 0.7), rgba(20, 17, 24, 0.9)), url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?auto=format&fit=crop&q=80&w=1600') center/cover no-repeat;
  background-attachment: fixed;
  color: #ffffff;
}

/* =========================================
   TEAM SECTION
   ========================================= */
.team {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  overflow: hidden;
  position: relative;
}

.team__title {
  margin-bottom: 4rem;
  max-width: 25ch;
}

.team__carousel-wrap {
  width: 100%;
  padding-left: max(5%, calc((100vw - 1200px) / 2)); /* Start inside container, bleed right */
}

.team__carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-right: 5%; /* End padding */
  padding-bottom: 2rem;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  /* For JS drag-to-scroll */
  cursor: grab;
  scroll-behavior: auto !important; /* Disable CSS smooth scroll which conflicts with JS drag */
  user-select: none; /* Prevent text highlighting while dragging */
  -webkit-user-select: none;
}

.team__carousel:active {
  cursor: grabbing;
}

.team__carousel::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.team-card {
  flex: 0 0 300px;
  user-select: none;
}

.team-card__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background-color: #eee;
  pointer-events: none; /* Prevent image dragging to allow touch/drag on container */
}

.team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.team-card:hover .team-card__img {
  transform: scale(1.05);
}

.team-card__name {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  pointer-events: none;
}

.team-card__role {
  font-family: var(--font-base);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  pointer-events: none;
}

@media (max-width: 768px) {
  .team__carousel-wrap {
    padding-left: 5%;
  }
  .team-card {
    flex: 0 0 260px;
  }
}

/* ============================================================
   CONTACT PAGE PREMIUM STYLES
   ============================================================ */

.contact-section {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  background-color: var(--color-bg);
  color: var(--color-text);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.contact-card {
  background: var(--color-surface-1);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  will-change: transform;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  border-color: rgba(255, 255, 255, 0.1);
}

.contact-card__icon {
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  width: 32px;
  height: 32px;
}

.contact-card__title {
  margin-bottom: 0.5rem;
  font-family: var(--font-secondary);
  font-size: var(--fs-h3);
}

.contact-card__desc {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.contact-card__link {
  font-weight: var(--fw-medium);
  color: var(--color-primary);
  display: block;
  margin-bottom: 0.25rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card__link:hover {
  color: #fff;
}

/* Form Styles */
.contact-form-wrap {
  background: var(--color-surface-2);
  padding: var(--space-2xl);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--color-border-light);
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  opacity: 0.5;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.form-group--row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

.form-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.form-control {
  padding: 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  background: rgba(255,255,255,0.02);
  color: var(--color-text);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-control:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.form-control:focus {
  border-color: var(--color-primary);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 4px rgba(230, 222, 213, 0.05); /* very subtle glow using primary color hue */
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   MOBILE RESPONSIVENESS FIXES
   ============================================================ */

@media (max-width: 800px) {
  /* 1. Navbar & Logo Overlap Fix (Logo Left, Menu Right, Hide CTA) */
  .moyra-header {
    flex-direction: row !important;
    justify-content: space-between !important;
    padding: var(--space-sm) var(--space-md) !important;
    align-items: center !important;
  }
  
  .moyra-pill {
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
  }

  .moyra-pill__btn--cta,
  .moyra-pill__divider,
  .moyra-pill__highlight {
    display: none !important; /* Hide Let's Talk button and sliding pill */
  }

  /* 2. Hero Section Mobile Optimization (Full Screen, Centered Banner, Floating Card) */
  .hero--hupr {
    height: 100vh !important;
    min-height: 100vh !important;
    position: relative !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .hero-card {
    position: absolute !important;
    bottom: var(--space-xl) !important;
    left: var(--space-md) !important;
    top: auto !important;
    right: auto !important;
    margin: 0 !important;
    max-width: 280px !important; /* Increased size of content card */
    width: 90% !important;
    z-index: 20 !important;
  }

  .hero-marquee__wrapper {
    position: absolute !important;
    top: 35% !important; /* Shifted upwards to clear the floating card */
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100vw !important;
    display: flex !important;
    justify-content: center !important;
    z-index: 10 !important;
  }

  .hero-marquee__text {
    font-size: 18vw !important; /* Significantly increased banner size */
    text-align: center !important;
    line-height: 1 !important;
  }
  .hero-slider--inline {
    width: 25vw !important;
    height: 12vw !important;
  }

  .hero--hupr {
    min-height: auto !important;
    padding-top: 100px !important; /* Reduced top padding */
    padding-bottom: var(--space-xl) !important; /* Drastically reduced to prevent massive gap above Peace of Mind */
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  /* 3. Welcome to Peace of Mind Optimization (Premium Mobile Layout) */
  .diagnostics-standard {
    padding-top: 20px !important; /* Reduced to shift everything UP */
    padding-bottom: var(--space-2xl) !important;
  }

  .diagnostics-standard__header {
    flex-direction: column !important;
    align-items: center !important;
    gap: var(--space-xs) !important;
    text-align: center !important;
    margin-bottom: var(--space-md) !important;
  }

  .diagnostics-standard__title {
    font-size: 2.5rem !important;
    font-family: var(--font-accent) !important;
    font-style: italic !important;
    line-height: 1.1 !important;
    background: linear-gradient(135deg, var(--color-primary), #6e2e4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .diagnostics-standard__container {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important; /* Rely on specific element margins for perfect rhythm */
  }

  .diagnostics-standard__left {
    order: 1 !important;
    text-align: center !important;
    max-width: 90% !important;
    margin-bottom: 2rem !important; /* Perfect gap above image */
  }

  .diagnostics-standard__center {
    order: 2 !important;
    margin: 2rem auto 1rem auto !important; /* Moved image up by ~5% (reduced top margin from 4rem) */
    width: 320px !important; /* Restore large original size */
    height: 440px !important; /* Restore large original size */
    position: relative !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12) !important;
    border-radius: 1000px 1000px 0 0 !important;
  }

  .diagnostics-standard__right {
    order: 3 !important;
    text-align: center !important;
    max-width: 90% !important;
    margin-top: -2rem !important; /* Pulled up by an additional ~10% via negative margin */
  }

  .diagnostics-standard__text {
    font-size: var(--fs-base) !important;
    color: var(--color-text-muted) !important;
    text-align: center !important;
    margin: 0 !important;
    line-height: 1.4 !important;
  }
  
  .diagnostics-standard__badge {
    transform: scale(0.85) !important;
  }

  .diagnostics-standard__badge--dark {
    top: auto !important;
    left: auto !important;
    right: -10% !important;
    bottom: -5% !important; 
  }

  .diagnostics-standard__badge--light {
    bottom: auto !important;
    right: auto !important;
    top: 20% !important; /* perfectly intersecting the arch curve */
    left: -10% !important;
  }

  .info-hero {
    grid-template-columns: 1fr !important;
    gap: var(--space-md) !important; /* Tighter gap */
  }
  
  .info-hero__large-img {
    height: 50vw !important;
    width: 100% !important;
  }

  /* 4. Smart Reports / Companion Tabs Optimization (Flex Wrap Layout) */
  .companion__tabs {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: var(--space-md) !important;
    white-space: normal !important;
    overflow: visible !important;
    border-radius: 24px !important; /* Proper rounded rectangle instead of a broken pill */
    background: rgba(0,0,0,0.02) !important; /* Softer background */
    border: 1px solid rgba(0,0,0,0.05) !important; /* Softer border */
  }

  /* Hide the javascript floating pill on mobile since grid layout breaks its math */
  .companion__tabs-pill {
    display: none !important;
  }

  .companion__tab {
    flex: 0 1 auto !important; /* Let them size naturally based on content */
    width: auto !important; /* Reset rigid width */
    padding: 10px 16px !important;
    font-size: 11px !important;
    text-align: center !important;
    white-space: nowrap !important; /* Prevent awkward word breaks */
    line-height: 1.2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: var(--border-radius-pill) !important;
  }

  /* Provide a fallback active state since the floating pill is hidden */
  .companion__tab.active {
    background-color: var(--color-primary) !important;
    color: var(--color-bg) !important;
    box-shadow: 0 4px 12px rgba(59, 24, 39, 0.2) !important; /* Premium active shadow */
  }

  /* 5. Clinical Accuracy / Advanced Diagnostics Optimization (Side by side) */
  .health__container {
    grid-template-columns: 1fr !important; /* Stack text on top, cards below */
    padding: 0 var(--space-sm) !important;
    overflow: hidden !important; /* Prevent page blowout */
    gap: var(--space-lg) !important;
  }

  .health__columns {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; /* Cards side by side */
    gap: var(--space-sm) !important;
    width: 100% !important;
  }

  .health__column {
    min-width: 0 !important; /* CRITICAL FIX: Prevent grid blowout */
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  .health-card {
    padding: var(--space-md) !important; /* Restore premium padding */
    min-width: 0 !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .health-card__visual {
    padding: var(--space-sm) !important; 
    height: auto !important; /* Let SVG breathe naturally */
    min-height: 80px !important;
    margin-bottom: var(--space-md) !important;
  }

  .health-card__title {
    font-size: var(--fs-base) !important; /* Restore legible size */
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-bottom: 4px !important;
  }

  .health-card__desc {
    font-size: var(--fs-sm) !important; /* Restore legible size */
    line-height: 1.4 !important;
    color: var(--color-text-muted) !important;
  }

  .health__title {
    font-size: var(--fs-h3) !important;
  }

  .health__subtitle {
    font-size: var(--fs-sm) !important;
  }

  /* 6. Footer Optimization (Shorter mobile footer) */
  .footer-chain__links-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* 2 columns instead of 1 */
    gap: var(--space-md) !important;
  }
}

/* ============================================================
   TUNNELWIZ CREDITS
   ============================================================ */
.tunnelwiz-credit {
  text-align: center;
  padding: var(--space-md) 0;
  background-color: var(--color-bg-dark);
  color: var(--color-text-dim);
  font-size: var(--fs-xs);
  font-family: var(--font-primary);
}
.tunnelwiz-credit a {
  color: inherit;
  text-decoration: none;
  font-weight: var(--fw-bold);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.tunnelwiz-credit a:hover {
  color: #00ff66; /* Vibrant Green */
  text-shadow: 0 0 10px rgba(0, 255, 102, 0.5), 0 0 20px rgba(0, 255, 102, 0.3);
}
