/* =========================================
   SIRENWAVE STUDIOS — MAIN STYLESHEET
   ========================================= */

/* === TOKENS === */
:root {
  --bg-black: #05090B;
  --deep-ocean: #07191D;
  --ocean-teal: #0D3D44;
  --siren-teal: #2A7C86;
  --sea-glass: #62C6C8;
  --moon-ivory: #F3E9D2;
  --soft-silver: #B8C7C9;
  --muted-gold: #B78A4A;
  --danger-rose: #7E2C44;
  --accent-glow: rgba(98, 198, 200, 0.15);
  --card-border: rgba(98, 198, 200, 0.12);
  --card-bg: rgba(7, 25, 29, 0.7);
  --bio-magenta: #9A5FB0;
  --bio-magenta-glow: rgba(154, 95, 176, 0.22);
  --chrome-a: #dfe7e8;
  --chrome-b: #7d8f92;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-label: 'Cinzel', serif;

  --header-height: 72px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition-fast: 180ms ease;
  --transition-med: 320ms ease;
  --transition-slow: 600ms ease;

  --max-width: 1200px;
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-black);
  color: var(--moon-ivory);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }

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

/* === UTILITIES === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.cinzel { font-family: var(--font-label); letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.7rem; }
.body-large { font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.75; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.05);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.btn:hover::after { opacity: 1; }
.btn:focus-visible {
  outline: 2px solid var(--sea-glass);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--siren-teal), var(--ocean-teal));
  color: var(--moon-ivory);
  border: 1px solid var(--siren-teal);
  box-shadow: 0 0 20px rgba(42, 124, 134, 0.3);
}
.btn-primary:hover {
  box-shadow: 0 0 30px rgba(98, 198, 200, 0.4);
  border-color: var(--sea-glass);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--sea-glass);
  border: 1px solid var(--siren-teal);
}
.btn-outline:hover {
  background: rgba(42, 124, 134, 0.15);
  border-color: var(--sea-glass);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--soft-silver);
  border: 1px solid rgba(184, 199, 201, 0.25);
}
.btn-ghost:hover {
  border-color: var(--soft-silver);
  color: var(--moon-ivory);
}

.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.8rem; }
.btn-lg { padding: 0.9rem 2rem; font-size: 0.95rem; }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(5, 9, 11, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(98, 198, 200, 0.08);
  transition: background var(--transition-med);
}
.site-header.scrolled {
  background: rgba(5, 9, 11, 0.97);
  border-bottom-color: rgba(98, 198, 200, 0.15);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: contain;
  transition: filter var(--transition-med), transform var(--transition-med);
  filter: drop-shadow(0 0 0 rgba(98, 198, 200, 0));
}
.logo-link:hover .logo-img {
  filter: drop-shadow(0 0 10px rgba(98, 198, 200, 0.55));
  transform: scale(1.04);
}
.logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--moon-ivory);
  letter-spacing: 0.04em;
}
.logo-studios { color: var(--soft-silver); font-weight: 300; }

.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 0.15rem; }
.nav-list li { flex-shrink: 0; }
.nav-link {
  display: inline-block;
  white-space: nowrap;
  padding: 0.4rem 0.65rem;
  color: var(--soft-silver);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color var(--transition-fast);
  border-radius: var(--radius-sm);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--sea-glass);
  transition: width var(--transition-fast);
}
.nav-link:hover, .nav-link.active { color: var(--moon-ivory); }
.nav-link:hover::after, .nav-link.active::after { width: 60%; }

.header-ctas { display: flex; gap: 0.6rem; flex-shrink: 0; }
.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
.hamburger-line {
  width: 22px;
  height: 1.5px;
  background: var(--soft-silver);
  transition: all var(--transition-fast);
  transform-origin: center;
}
.mobile-nav { display: none; }

/* === HERO === */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--header-height);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(13, 61, 68, 0.5) 0%, transparent 60%),
              radial-gradient(ellipse 40% 40% at 80% 70%, rgba(42, 124, 134, 0.1) 0%, transparent 50%),
              var(--bg-black);
}
.constellation-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}
.hero-mist {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--bg-black) 0%, transparent 100%);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(5,9,11,0.7) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 5rem;
}
.hero-content { max-width: 640px; }
.hero-eyebrow {
  color: var(--sea-glass);
  font-size: 0.65rem;
  margin-bottom: 1.5rem;
  display: block;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--moon-ivory);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--soft-silver);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-orb {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-orb::before {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 124, 134, 0.35) 0%, transparent 68%);
  filter: blur(24px);
  z-index: 1;
}
.hero-orb-inner {
  width: 260px;
  height: 260px;
  z-index: 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(42, 124, 134, 0.45));
  animation: emblem-breathe 7s ease-in-out infinite;
}
@keyframes emblem-breathe {
  0%, 100% { filter: drop-shadow(0 0 24px rgba(42, 124, 134, 0.35)); }
  50% { filter: drop-shadow(0 0 42px rgba(98, 198, 200, 0.5)); }
}
.hero-orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(98, 198, 200, 0.15);
}
.ring-1 { inset: 10px; animation: orbit-pulse 6s ease-in-out infinite; }
.ring-2 { inset: -20px; animation: orbit-pulse 8s ease-in-out infinite reverse; border-color: rgba(98, 198, 200, 0.08); }
.ring-3 { inset: -50px; animation: orbit-pulse 12s ease-in-out infinite; border-color: rgba(98, 198, 200, 0.05); }

@keyframes orbit-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.03); opacity: 1; }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--siren-teal));
  margin: 0 auto;
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* === SECTIONS === */
.section { padding: clamp(4rem, 8vw, 8rem) 0; }

.section-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-eyebrow { color: var(--sea-glass); margin-bottom: 0.75rem; display: block; }
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--moon-ivory);
  line-height: 1.2;
}
.section-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--siren-teal), transparent);
  margin: 1.25rem auto 0;
}
.section-intro {
  margin-top: 1.25rem;
  color: var(--soft-silver);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* === WHAT WE BUILD === */
.what-we-build { background: var(--deep-ocean); }
.what-we-build-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.what-we-build-text { padding-top: 0.5rem; }
.what-we-build-text p { color: var(--soft-silver); }
.what-we-build-text .body-large { color: var(--moon-ivory); margin-bottom: 1.25rem; }
.what-we-build-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.pillar {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: border-color var(--transition-med), background var(--transition-med);
}
.pillar:hover {
  border-color: rgba(98, 198, 200, 0.25);
  background: rgba(13, 61, 68, 0.4);
}
.pillar-icon {
  color: var(--sea-glass);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--moon-ivory);
  margin-bottom: 0.4rem;
}
.pillar-desc { font-size: 0.85rem; color: var(--soft-silver); line-height: 1.6; }

/* === FEATURE CARDS === */
.featured-paths { background: var(--deep-ocean); }
.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all var(--transition-med);
  backdrop-filter: blur(8px);
}
.feature-card:hover {
  border-color: rgba(98, 198, 200, 0.3);
  transform: translateY(-4px);
}
.feature-card--primary {
  background: linear-gradient(145deg, rgba(13, 61, 68, 0.6), rgba(7, 25, 29, 0.8));
  border-color: rgba(98, 198, 200, 0.2);
}
.feature-card-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--siren-teal), transparent);
  opacity: 0;
  transition: opacity var(--transition-med);
}
.feature-card:hover .feature-card-glow { opacity: 1; }
.feature-card-inner { padding: 2rem; }
.feature-card-icon {
  color: var(--sea-glass);
  margin-bottom: 1.25rem;
  opacity: 0.8;
}
.feature-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--moon-ivory);
  margin-bottom: 0.75rem;
}
.feature-card-desc { color: var(--soft-silver); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.feature-card-link {
  color: var(--sea-glass);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: gap var(--transition-fast), opacity var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.feature-card-link:hover { opacity: 0.75; gap: 0.65rem; }

/* === WHY GHOSTLIGHT === */
.why-ghostlight {
  background: linear-gradient(to bottom, var(--deep-ocean), var(--bg-black));
}
.why-ghostlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.why-ghostlight-text .section-heading { text-align: left; }
.why-ghostlight-text .section-divider { margin-left: 0; }
.why-ghostlight-text p { color: var(--soft-silver); margin-top: 1.25rem; }
.ghostlight-features { display: flex; flex-direction: column; gap: 1.25rem; padding-top: 1rem; }
.ghostlight-feature {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(7, 25, 29, 0.5);
  border: 1px solid var(--card-border);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.ghostlight-feature:hover {
  border-color: rgba(98, 198, 200, 0.2);
  background: rgba(13, 61, 68, 0.3);
}
.gf-marker {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sea-glass);
  flex-shrink: 0;
  margin-top: 0.55rem;
  box-shadow: 0 0 8px rgba(98, 198, 200, 0.6);
}
.ghostlight-feature strong { color: var(--moon-ivory); display: block; margin-bottom: 0.3rem; font-weight: 500; font-size: 0.95rem; }
.ghostlight-feature p { color: var(--soft-silver); font-size: 0.85rem; line-height: 1.6; margin: 0; }

/* === CTA SECTIONS === */
.cta-section { overflow: hidden; }
.cta-patreon { background: var(--deep-ocean); }
.cta-kofi { background: var(--bg-black); }
.cta-inner {
  position: relative;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(13, 61, 68, 0.4), rgba(7, 25, 29, 0.6));
  border: 1px solid var(--card-border);
  overflow: hidden;
}
.cta-inner--alt {
  background: linear-gradient(135deg, rgba(7, 25, 29, 0.6), rgba(13, 61, 68, 0.3));
}
.cta-ambient {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 124, 134, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--moon-ivory);
  margin: 0.75rem 0 1.25rem;
  position: relative;
  z-index: 1;
}
.cta-desc {
  color: var(--soft-silver);
  max-width: 500px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

/* === FREEBIES TEASER === */
.freebies-teaser { background: var(--deep-ocean); }
.freebie-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.freebie-teaser-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--transition-med);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.freebie-teaser-card:hover {
  border-color: rgba(183, 138, 74, 0.3);
  background: rgba(13, 61, 68, 0.3);
}
.freebie-label { color: var(--muted-gold); font-size: 0.6rem; }
.freebie-teaser-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--moon-ivory);
}
.freebie-teaser-card p { font-size: 0.85rem; color: var(--soft-silver); flex: 1; }

/* === FOOTER === */
.site-footer {
  background: var(--deep-ocean);
  border-top: 1px solid rgba(98, 198, 200, 0.08);
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo-link { display: inline-block; }
.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  object-fit: contain;
  transition: filter var(--transition-med);
}
.footer-logo-link:hover .footer-logo { filter: drop-shadow(0 0 10px rgba(98, 198, 200, 0.4)); }
.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--soft-silver);
  font-style: italic;
  font-weight: 300;
}
.ghost-signal-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(98, 198, 200, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-med);
  margin-top: 0.5rem;
}
.ghost-signal-btn:hover {
  border-color: rgba(98, 198, 200, 0.4);
  box-shadow: 0 0 12px rgba(98, 198, 200, 0.2);
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-content: end;
}
.footer-nav-heading { color: var(--sea-glass); margin-bottom: 1rem; font-size: 0.6rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a {
  color: var(--soft-silver);
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}
.footer-nav a:hover { color: var(--moon-ivory); }
.footer-bottom {
  border-top: 1px solid rgba(98, 198, 200, 0.06);
  padding: 1.5rem var(--gutter);
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.footer-legal { font-size: 0.75rem; color: rgba(184, 199, 201, 0.5); max-width: 600px; line-height: 1.6; }
.footer-copy { font-size: 0.75rem; color: rgba(184, 199, 201, 0.4); flex-shrink: 0; }

/* === EASTER EGGS === */
.easter-egg-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
}
.easter-egg-modal.is-open { opacity: 1; pointer-events: auto; }
.ghost-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 9, 11, 0.85);
  backdrop-filter: blur(8px);
}
.ghost-modal-inner {
  position: relative;
  z-index: 2;
  background: linear-gradient(145deg, var(--ocean-teal), var(--deep-ocean));
  border: 1px solid rgba(98, 198, 200, 0.25);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 80px rgba(42, 124, 134, 0.3);
  transform: scale(0.95);
  transition: transform var(--transition-med);
}
.easter-egg-modal.is-open .ghost-modal-inner { transform: scale(1); }
.ghost-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--soft-silver);
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  transition: color var(--transition-fast);
}
.ghost-modal-close:hover { color: var(--moon-ivory); }
.ghost-modal-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.ghost-modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--moon-ivory);
  margin-bottom: 0.5rem;
}
.ghost-modal-subtitle { color: var(--soft-silver); font-size: 0.85rem; margin-bottom: 1.5rem; }
.ghost-modal-prompt {
  background: rgba(5, 9, 11, 0.5);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: left;
}
.ghost-prompt-label { color: var(--sea-glass); margin-bottom: 0.75rem; display: block; font-size: 0.6rem; }
#ghost-prompt-text { font-size: 0.88rem; color: var(--soft-silver); line-height: 1.65; }

.logo-echo {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  background: rgba(13, 61, 68, 0.9);
  border: 1px solid rgba(98, 198, 200, 0.3);
  color: var(--moon-ivory);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-med);
  z-index: 999;
  white-space: nowrap;
}
.logo-echo.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: 4rem;
  background: linear-gradient(to bottom, var(--deep-ocean), var(--bg-black));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--siren-teal), transparent);
}
.page-hero-eyebrow { display: block; color: var(--sea-glass); margin-bottom: 1rem; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--moon-ivory);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero-sub {
  color: var(--soft-silver);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* === PRODUCT CARDS === */
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--siren-teal), transparent);
  opacity: 0;
  transition: opacity var(--transition-med);
}
.product-card:hover { border-color: rgba(98, 198, 200, 0.25); transform: translateY(-4px); }
.product-card:hover::before { opacity: 1; }
.product-card-badge {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sea-glass);
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(98, 198, 200, 0.25);
  border-radius: 2rem;
  display: inline-block;
  width: fit-content;
}
.product-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--moon-ivory);
}
.product-card-desc { color: var(--soft-silver); font-size: 0.9rem; line-height: 1.7; flex: 1; }
.product-card-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: auto; }
.product-card-disclaimer {
  font-size: 0.78rem;
  color: rgba(184, 199, 201, 0.5);
  line-height: 1.6;
  padding: 1rem;
  border-top: 1px solid var(--card-border);
  margin-top: 0.5rem;
}

/* === BLOG CARDS === */
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-med);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: rgba(98, 198, 200, 0.25); transform: translateY(-3px); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.blog-card-category { color: var(--sea-glass); font-size: 0.6rem; font-family: var(--font-label); letter-spacing: 0.12em; text-transform: uppercase; }
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--moon-ivory);
  line-height: 1.3;
}
.blog-card-excerpt { color: var(--soft-silver); font-size: 0.85rem; line-height: 1.65; flex: 1; }
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--card-border);
  margin-top: auto;
}
.blog-card-date { font-size: 0.75rem; color: rgba(184, 199, 201, 0.5); }
.blog-read-more { font-size: 0.8rem; color: var(--sea-glass); font-weight: 500; }

/* === FREEBIE CARDS === */
.freebie-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--transition-med);
  position: relative;
}
.freebie-card:hover { border-color: rgba(183, 138, 74, 0.25); transform: translateY(-3px); }
.freebie-card-badge { color: var(--muted-gold); font-size: 0.6rem; }
.freebie-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--moon-ivory);
}
.freebie-card-desc { color: var(--soft-silver); font-size: 0.85rem; line-height: 1.6; flex: 1; }
.freebie-card-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.5rem; }
.freebie-coming-soon {
  font-size: 0.75rem;
  color: rgba(184, 199, 201, 0.4);
  font-style: italic;
  margin-top: 0.5rem;
}
.freebie-patreon-cta {
  font-size: 0.78rem;
  color: var(--muted-gold);
  border-top: 1px solid var(--card-border);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}
.freebie-patreon-cta a { color: var(--muted-gold); text-decoration: underline; text-underline-offset: 3px; }

/* === DISCLAIMER BOX === */
.disclaimer-box {
  background: rgba(126, 44, 68, 0.08);
  border: 1px solid rgba(126, 44, 68, 0.2);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  color: rgba(243, 233, 210, 0.7);
  font-size: 0.83rem;
  line-height: 1.65;
}

/* === TWO-COL LAYOUT === */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.two-col-grid--asymm {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

/* === INFO SECTIONS === */
.info-block {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.info-block h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--moon-ivory);
  margin-bottom: 1rem;
}
.info-list { display: flex; flex-direction: column; gap: 0.6rem; }
.info-list li {
  display: flex;
  gap: 0.75rem;
  color: var(--soft-silver);
  font-size: 0.87rem;
  line-height: 1.55;
}
.info-list li::before {
  content: '◈';
  color: var(--sea-glass);
  flex-shrink: 0;
  margin-top: 0.1rem;
  opacity: 0.6;
  font-size: 0.8rem;
}

/* === CONTACT BLOCK === */
.contact-block {
  background: linear-gradient(145deg, rgba(13, 61, 68, 0.4), rgba(7, 25, 29, 0.8));
  border: 1px solid rgba(98, 198, 200, 0.2);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
}
.contact-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--moon-ivory);
  margin-bottom: 1rem;
}
.contact-email {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--sea-glass);
  font-style: italic;
  margin: 1.5rem 0;
  display: block;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .header-ctas { display: none; }
  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
  }
  .mobile-nav {
    display: block;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(5, 9, 11, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(98, 198, 200, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition-med);
    pointer-events: none;
    z-index: 999;
  }
  .mobile-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-nav-list { padding: 1.5rem var(--gutter); display: flex; flex-direction: column; gap: 0.25rem; }
  .mobile-nav-list .nav-link { display: block; white-space: normal; padding: 0.75rem 0; color: var(--soft-silver); font-size: 1rem; border-bottom: 1px solid rgba(98, 198, 200, 0.06); }
  .mobile-cta-group { display: flex; gap: 0.75rem; padding-top: 1.25rem; flex-wrap: wrap; }

  .hero-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-content { order: 2; }
  .hero-visual { order: 1; }
  .hero-orb { width: 220px; height: 220px; }
  .hero-orb-inner { width: 180px; height: 180px; }
  .ring-3 { display: none; }

  .what-we-build-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .what-we-build-pillars { grid-template-columns: 1fr 1fr; }
  .feature-card-grid { grid-template-columns: 1fr; }
  .why-ghostlight-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .freebie-teaser-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .two-col-grid { grid-template-columns: 1fr; }
  .three-col-grid { grid-template-columns: 1fr; }
  .two-col-grid--asymm { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .what-we-build-pillars { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* =========================================
   DASHBOARD SHOWCASE + LIGHTBOX
   ========================================= */

.showcase {
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(42, 124, 134, 0.14) 0%, transparent 65%),
    var(--deep-ocean);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.shot {
  position: relative;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--deep-ocean);
  cursor: zoom-in;
  transition: border-color var(--transition-med), transform var(--transition-med), box-shadow var(--transition-med);
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
}
.shot:hover, .shot:focus-visible {
  border-color: rgba(98, 198, 200, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 18px 50px -20px rgba(42, 124, 134, 0.55);
}
.shot:focus-visible { outline: 2px solid var(--sea-glass); outline-offset: 3px; }

.shot-img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform var(--transition-slow), filter var(--transition-med);
  filter: saturate(0.95);
}
.shot:hover .shot-img { transform: scale(1.02); filter: saturate(1.05); }

.shot-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 9, 11, 0.92) 0%, rgba(5, 9, 11, 0.35) 38%, transparent 70%);
  pointer-events: none;
}

.shot-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: none;
}
.shot-caption-text { min-width: 0; }
.shot-panels {
  color: var(--sea-glass);
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}
.shot-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--moon-ivory);
  line-height: 1.25;
  margin-bottom: 0.3rem;
}
.shot-desc {
  font-size: 0.8rem;
  color: rgba(184, 199, 201, 0.75);
  line-height: 1.55;
  max-width: 42ch;
}
.shot-expand {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(98, 198, 200, 0.3);
  background: rgba(7, 25, 29, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sea-glass);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}
.shot:hover .shot-expand {
  border-color: var(--sea-glass);
  box-shadow: 0 0 14px rgba(98, 198, 200, 0.35);
}

.showcase-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: rgba(184, 199, 201, 0.45);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

/* Home page preview strip */
.preview-strip { background: var(--bg-black); }
.preview-frame {
  position: relative;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--deep-ocean);
  box-shadow: 0 40px 90px -40px rgba(42, 124, 134, 0.5);
}
.preview-frame img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center top;
}
.preview-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 9, 11, 0.75) 0%, transparent 45%);
  pointer-events: none;
}
.preview-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.preview-overlay-text { max-width: 460px; }
.preview-overlay h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 400;
  color: var(--moon-ivory);
  margin-bottom: 0.4rem;
}
.preview-overlay p { font-size: 0.85rem; color: var(--soft-silver); line-height: 1.6; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(5, 9, 11, 0.94);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox-figure {
  position: relative;
  max-width: 1500px;
  width: 100%;
  transform: scale(0.97);
  transition: transform var(--transition-med);
}
.lightbox.is-open .lightbox-figure { transform: scale(1); }
.lightbox-img {
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid rgba(98, 198, 200, 0.18);
  box-shadow: 0 30px 100px -30px rgba(42, 124, 134, 0.5);
}
.lightbox-caption {
  text-align: center;
  margin-top: 1.25rem;
  color: var(--soft-silver);
  font-size: 0.85rem;
}
.lightbox-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--moon-ivory);
  margin-bottom: 0.3rem;
}
.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(98, 198, 200, 0.25);
  color: var(--soft-silver);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.lightbox-close:hover { color: var(--moon-ivory); border-color: var(--sea-glass); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(98, 198, 200, 0.2);
  background: rgba(7, 25, 29, 0.7);
  backdrop-filter: blur(6px);
  color: var(--sea-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
}
.lightbox-nav:hover { border-color: var(--sea-glass); box-shadow: 0 0 16px rgba(98, 198, 200, 0.3); }
.lightbox-prev { left: -3.5rem; }
.lightbox-next { right: -3.5rem; }

@media (max-width: 900px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .shot-desc { display: none; }
  .lightbox { padding: 1rem; }
  .lightbox-prev { left: 0.25rem; }
  .lightbox-next { right: 0.25rem; }
  .lightbox-close { top: -2.75rem; right: 0.25rem; }
  .preview-overlay { flex-direction: column; align-items: flex-start; }
}

/* =========================================
   GOTHIC LUXURY ENHANCEMENTS
   ========================================= */

/* Film grain overlay, whole site */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Chrome filigree divider — ornamental variant */
.section-divider--ornate {
  width: 140px;
  height: 14px;
  margin: 1.25rem auto 0;
  position: relative;
  background:
    linear-gradient(to right, transparent, var(--chrome-b) 30%, var(--chrome-a) 50%, var(--chrome-b) 70%, transparent),
    linear-gradient(to right, transparent, var(--siren-teal), transparent);
  background-size: 100% 1px, 100% 1px;
  background-position: center top, center bottom;
  background-repeat: no-repeat;
}
.section-divider--ornate::before {
  content: '◈';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 0.7rem;
  color: var(--sea-glass);
  opacity: 0.8;
}

/* Chrome-bordered card treatment */
.chrome-border {
  border-image: linear-gradient(135deg, rgba(223,231,232,0.35), rgba(125,143,146,0.05), rgba(223,231,232,0.25)) 1;
}

/* Bioluminescent magenta accent glow, used sparingly */
.glow-magenta { box-shadow: 0 0 40px var(--bio-magenta-glow); }
.text-magenta { color: var(--bio-magenta); }

/* =========================================
   COMPARISON TABLE (Ghostlight Basic vs Plus+)
   ========================================= */
.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  background: var(--card-bg);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.compare-table th, .compare-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--card-border);
  font-size: 0.88rem;
  color: var(--soft-silver);
}
.compare-table thead th {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--moon-ivory);
  padding-top: 1.5rem;
  border-bottom: 1px solid rgba(98,198,200,0.2);
}
.compare-table thead th:first-child { color: var(--soft-silver); font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }
.compare-table th.plan-plus { background: linear-gradient(180deg, rgba(154,95,176,0.08), transparent); position: relative; }
.compare-table th.plan-plus::after {
  content: 'Full System';
  position: absolute;
  top: 0.35rem;
  right: 1.5rem;
  font-family: var(--font-label);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: var(--bio-magenta);
}
.compare-table td:first-child { color: var(--moon-ivory); font-weight: 500; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: rgba(13, 61, 68, 0.25); }
.compare-check { color: var(--sea-glass); font-size: 1rem; }
.compare-dash { color: rgba(184, 199, 201, 0.3); }

/* =========================================
   PROCESS STEPS (Custom Builds)
   ========================================= */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.process-step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  position: relative;
  transition: all var(--transition-med);
}
.process-step:hover { border-color: rgba(98, 198, 200, 0.3); transform: translateY(-3px); }
.process-step-num {
  counter-increment: step;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--sea-glass);
  opacity: 0.55;
  margin-bottom: 0.5rem;
}
.process-step-num::before { content: counter(step, decimal-leading-zero); }
.process-step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--moon-ivory);
  margin-bottom: 0.4rem;
}
.process-step-desc { font-size: 0.82rem; color: var(--soft-silver); line-height: 1.6; }
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -0.9rem;
  width: 0.6rem;
  height: 1px;
  background: linear-gradient(to right, var(--siren-teal), transparent);
  display: none;
}
@media (min-width: 1025px) { .process-step:not(:last-child)::after { display: block; } }

/* =========================================
   FIELD NOTES ARCHIVE OPENING SOON
   ========================================= */
.field-notes-soon {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, var(--bio-magenta-glow) 0%, transparent 60%),
    linear-gradient(145deg, rgba(13, 61, 68, 0.5), rgba(7, 25, 29, 0.85));
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}
.field-notes-soon-eyebrow { color: var(--sea-glass); margin-bottom: 1rem; }
.field-notes-soon h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--moon-ivory);
  margin-bottom: 1rem;
}
.field-notes-soon p { color: var(--soft-silver); max-width: 560px; margin: 0 auto 2rem; line-height: 1.75; }

.category-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.category-preview-card {
  background: rgba(5, 9, 11, 0.4);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: left;
  transition: all var(--transition-med);
}
.category-preview-card:hover { border-color: rgba(98, 198, 200, 0.3); background: rgba(13, 61, 68, 0.3); }
.category-preview-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--moon-ivory);
  margin-bottom: 0.4rem;
}
.category-preview-card p { font-size: 0.8rem; color: var(--soft-silver); margin: 0; line-height: 1.55; }

/* =========================================
   PRODUCT CARD META (Problem / Included / Best For)
   ========================================= */
.product-meta {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 0.25rem 0;
}
.product-meta-row { font-size: 0.85rem; line-height: 1.6; color: var(--soft-silver); }
.product-meta-label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sea-glass);
  margin-bottom: 0.3rem;
}
.product-meta-row.is-magenta .product-meta-label { color: var(--bio-magenta); }
.product-card-cover {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  background:
    radial-gradient(ellipse at 30% 20%, var(--bio-magenta-glow) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(98,198,200,0.16) 0%, transparent 55%),
    linear-gradient(155deg, rgba(13,61,68,0.7), rgba(5,9,11,0.9));
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.25rem;
}
.product-card-cover .cover-glyph {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft-silver);
  opacity: 0.6;
}
.product-card-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%);
}

/* Bundle upsell banner */
.bundle-upsell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 1.5rem 2rem;
  margin-top: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(154, 95, 176, 0.25);
  background: linear-gradient(135deg, rgba(154,95,176,0.08), rgba(7,25,29,0.6));
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--moon-ivory);
  flex-wrap: wrap;
}

/* Featured product section */
.featured-product {
  background: radial-gradient(ellipse 70% 60% at 50% 0%, var(--bio-magenta-glow) 0%, transparent 60%), var(--bg-black);
}
.featured-product-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
}
.featured-product-cover {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(154, 95, 176, 0.25);
  background:
    radial-gradient(ellipse at 50% 30%, var(--bio-magenta-glow) 0%, transparent 60%),
    linear-gradient(160deg, rgba(13,61,68,0.6), rgba(5,9,11,0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 90px -40px var(--bio-magenta-glow);
}
.featured-product-cover-label {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bio-magenta);
}
.featured-product-cover-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--moon-ivory);
  margin-top: 0.75rem;
  line-height: 1.3;
}
.featured-product-eyebrow { color: var(--bio-magenta); margin-bottom: 0.75rem; display: block; }
.featured-product-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--soft-silver);
  margin: 0.75rem 0 1.5rem;
}
.featured-product-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.75rem 0;
}
.featured-product-cols h4 {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sea-glass);
  margin-bottom: 0.6rem;
}
.featured-product-cols ul { display: flex; flex-direction: column; gap: 0.45rem; }
.featured-product-cols li { font-size: 0.85rem; color: var(--soft-silver); line-height: 1.55; padding-left: 1rem; position: relative; }
.featured-product-cols li::before { content: '◈'; position: absolute; left: 0; color: var(--sea-glass); font-size: 0.7rem; opacity: 0.7; }

@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .category-preview-grid { grid-template-columns: 1fr 1fr; }
  .featured-product-grid { grid-template-columns: 1fr; }
  .featured-product-cols { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .process-steps { grid-template-columns: 1fr; }
  .category-preview-grid { grid-template-columns: 1fr; }
  .compare-table th, .compare-table td { padding: 0.85rem 1rem; }
}

/* =========================================
   BUY-GATE SAFETY DISCLAIMER MODAL
   ========================================= */
.buy-gate-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
}
.buy-gate-modal.is-open { opacity: 1; pointer-events: auto; }
.buy-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 9, 11, 0.88);
  backdrop-filter: blur(8px);
}
.buy-gate-inner {
  position: relative;
  z-index: 2;
  background: linear-gradient(145deg, var(--ocean-teal), var(--deep-ocean));
  border: 1px solid rgba(98, 198, 200, 0.25);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 0 80px rgba(42, 124, 134, 0.3);
  transform: scale(0.96);
  transition: transform var(--transition-med);
}
.buy-gate-modal.is-open .buy-gate-inner { transform: scale(1); }
.buy-gate-eyebrow { color: var(--bio-magenta); margin-bottom: 0.75rem; display: block; }
.buy-gate-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--moon-ivory);
  margin-bottom: 0.9rem;
  line-height: 1.3;
}
.buy-gate-body {
  font-size: 0.85rem;
  color: var(--soft-silver);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.buy-gate-body strong { color: var(--moon-ivory); }
.buy-gate-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  background: rgba(5, 9, 11, 0.4);
  margin-bottom: 1.5rem;
  cursor: pointer;
}
.buy-gate-check input {
  margin-top: 0.2rem;
  width: 16px;
  height: 16px;
  accent-color: var(--sea-glass);
  flex-shrink: 0;
  cursor: pointer;
}
.buy-gate-check span { font-size: 0.83rem; color: var(--soft-silver); line-height: 1.55; }
.buy-gate-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.buy-gate-continue:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.buy-gate-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--soft-silver);
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  transition: color var(--transition-fast);
}
.buy-gate-close:hover { color: var(--moon-ivory); }

/* =========================================
   NEWSLETTER SIGNUP
   ========================================= */
.newsletter-band {
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(98, 198, 200, 0.1) 0%, transparent 60%),
    var(--deep-ocean);
}
.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner p.section-intro { margin-bottom: 2rem; }
.newsletter-form-slot { text-align: left; }

/* Footer compact variant */
.newsletter-band--footer {
  background: none;
  margin-top: 1.25rem;
  text-align: left;
}
.newsletter-band--footer .newsletter-inner { text-align: left; margin: 0; max-width: none; }
.newsletter-band--footer .newsletter-footer-heading {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sea-glass);
  margin-bottom: 0.6rem;
  display: block;
}
.newsletter-band--footer .newsletter-footer-desc {
  font-size: 0.8rem;
  color: var(--soft-silver);
  margin-bottom: 0.75rem;
  max-width: 320px;
}

/* Best-effort restyle of MailerLite's own embedded-form markup so it
   inherits the Sirenwave look. MailerLite's class names below are part
   of their documented embedded-form output and are stable across forms. */
.newsletter-form-slot .ml-form-embedWrapper,
.newsletter-form-slot .ml-form-embedWrapper.embedDefault { background: transparent !important; }
.newsletter-form-slot .ml-form-embedBody { padding: 0 !important; }
.newsletter-form-slot .ml-form-fieldRow input {
  background: rgba(5, 9, 11, 0.5) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--moon-ivory) !important;
  font-family: var(--font-body) !important;
}
.newsletter-form-slot .ml-form-embedSubmit button {
  background: linear-gradient(135deg, var(--siren-teal), var(--ocean-teal)) !important;
  border: 1px solid var(--siren-teal) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--moon-ivory) !important;
  font-family: var(--font-body) !important;
}
.newsletter-form-slot .ml-form-successBody { color: var(--soft-silver) !important; }

@media (max-width: 640px) {
  .newsletter-band--footer .newsletter-footer-desc { max-width: none; }
}
