/* ============================================================
   DRIFTR™ — Professional Dissociation for High Performers
   Design base: inhale.html (INHALE.EXHALE.PAY)
   Lime/clinical + carnival hypnotic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Outfit:wght@200;300;400;600&family=Space+Mono:wght@400;700&display=swap');

:root {
  --peach:         #F4A89A;
  --peach-light:   #FDDDD5;
  --lavender:      #C5B4E3;
  --lavender-light:#E8E0F0;
  --cream:         #FFF8F2;
  --cream-deep:    #FFF0E6;
  --rose:          #E8919A;
  --lime:          #C4F240;
  --lime-dim:      #8AB522;
  --text-primary:  #1E1A24;
  --text-secondary:#6B5E70;
  --text-whisper:  #B89A9E;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── BACKGROUND BREATHING BLOBS ── */
.bg-breath {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: bgBreathe 6s ease-in-out infinite;
}

.bg-blob-1 {
  width: min(70vw, 600px); height: min(70vw, 600px);
  top: -20%; left: -15%;
  background: radial-gradient(circle, var(--peach-light), transparent);
  animation-delay: 0s;
}

.bg-blob-2 {
  width: min(55vw, 500px); height: min(55vw, 500px);
  bottom: -25%; right: -15%;
  background: radial-gradient(circle, var(--lavender-light), transparent);
  animation-delay: -3s;
}

.bg-blob-3 {
  width: min(45vw, 400px); height: min(45vw, 400px);
  top: 45%; left: 55%;
  background: radial-gradient(circle, rgba(196, 242, 64, 0.18), transparent);
  animation-delay: -1.5s;
}

@keyframes bgBreathe {
  0%, 100% { transform: scale(1);    opacity: 0.5; }
  50%       { transform: scale(1.2); opacity: 0.85; }
}

/* ── PARTICLES ── */
.particles-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  50%  { transform: translateY(50vh) translateX(20px) scale(1); opacity: 0.4; }
  90%  { opacity: 0.1; }
  100% { transform: translateY(-10vh) translateX(-15px) scale(0.5); opacity: 0; }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: background 0.4s, backdrop-filter 0.4s;
}

nav.scrolled {
  background: rgba(255, 248, 242, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.nav-logo sup {
  font-family: 'Space Mono', monospace;
  font-size: 0.52rem;
  vertical-align: super;
  letter-spacing: 0;
  color: var(--lime-dim);
}

.nav-links {
  display: none;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--text-primary); }

/* ── SECTIONS ── */
section { position: relative; z-index: 2; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 100px;
  position: relative;
}

.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-whisper);
  margin-bottom: 40px;
  animation: fadeUp 1s ease 0.2s both;
}

/* ── HERO ORB (centered above headline) ── */
.hero-orb-wrap {
  position: relative;
  width: min(260px, 72vw);
  height: min(260px, 72vw);
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 1s ease 0.4s both;
}

.hero-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: orbRipple 2.2s ease-out infinite;
  pointer-events: none;
}

.hero-ring:nth-child(1) { border: 1.5px solid rgba(197,180,227,0.6);  animation-delay: 0s;    }
.hero-ring:nth-child(2) { border: 1px   solid rgba(244,168,154,0.45); animation-delay: 0.73s; }
.hero-ring:nth-child(3) { border: 1px   solid rgba(196,242,64,0.3);   animation-delay: 1.46s; }

@keyframes orbRipple {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(2.6); opacity: 0; }
}

.drift-orb {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.orb-blob {
  fill: url(#orbGradient);
  animation: orbMorph 3s ease-in-out infinite, orbBreathe 2s ease-in-out infinite;
  transform-origin: center;
  filter: url(#orbGlow);
}

.orb-blob-inner {
  fill: url(#orbGradientInner);
  animation: orbMorph 3s ease-in-out infinite reverse, orbBreathe 2s ease-in-out infinite;
  transform-origin: center;
  opacity: 0.5;
}

@keyframes orbBreathe {
  0%, 100% { transform: scale(0.9); }
  50%       { transform: scale(1.1); }
}

@keyframes orbMorph {
  0%, 100% { d: path("M160,50 C220,50 270,100 270,160 C270,220 220,270 160,270 C100,270 50,220 50,160 C50,100 100,50 160,50 Z"); }
  25%  { d: path("M160,55 C235,58 268,112 262,168 C255,228 210,268 154,270 C93,272 51,218 50,157 C48,92 88,52 160,55 Z"); }
  50%  { d: path("M168,46 C228,52 278,108 270,170 C262,233 215,278 155,272 C95,265 43,219 46,155 C49,88 104,40 168,46 Z"); }
  75%  { d: path("M154,52 C212,44 270,95 274,160 C278,228 228,272 163,274 C99,276 46,225 44,161 C42,95 93,60 154,52 Z"); }
}

/* sigh float from orb */
.orb-sigh {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--rose);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  z-index: 10;
}

.orb-sigh.visible {
  animation: sighFloat 2.8s ease forwards;
}

@keyframes sighFloat {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.85); }
  20%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  80%  { opacity: 1; transform: translate(-50%, -68%); }
  100% { opacity: 0; transform: translate(-50%, -80%) scale(0.9); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 9vw, 7rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 10px;
  animation: fadeUp 1s ease 0.6s both;
}

.hero-title em  { font-style: italic; color: var(--peach); }
.hero-title sup {
  font-family: 'Space Mono', monospace;
  font-size: 0.35em;
  vertical-align: super;
  color: var(--lime-dim);
  letter-spacing: 0;
}

.hero-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.95rem, 2.5vw, 1.3rem);
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 16px auto 36px;
  line-height: 1.7;
  animation: fadeUp 1s ease 0.9s both;
}

.hero-cta {
  display: inline-block;
  padding: 18px 44px;
  background: linear-gradient(135deg, var(--peach), var(--rose));
  color: white;
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 60px;
  animation: fadeUp 1s ease 1.1s both;
  box-shadow: 0 8px 32px rgba(244,168,154,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 48px rgba(244,168,154,0.5);
}

/* scroll hint — centered via left:50% transform:translateX(-50%) */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s ease 1.5s both;
  white-space: nowrap;
}

.scroll-hint span {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-whisper);
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.55); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--lime);
  padding: 13px 0;
  border-top: 2px solid rgba(0,0,0,0.07);
  border-bottom: 2px solid rgba(0,0,0,0.07);
}

.marquee-strip.reverse .marquee-track {
  animation-direction: reverse;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 20s linear infinite;
}

.marquee-track span {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 0 28px;
  white-space: nowrap;
  flex-shrink: 0;
}

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

/* ── SECTION COMMON ── */
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lime-dim);
  margin-bottom: 14px;
  display: block;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
}

.section-title em { font-style: italic; color: var(--peach); }

/* ── ORB SHOWCASE SECTION ── */
.orb-section {
  padding: 96px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.orb-showcase-wrap {
  position: relative;
  width: min(360px, 85vw);
  height: min(360px, 85vw);
  margin-bottom: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Same ring/orb CSS reused here at larger scale */
.orb-showcase-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: orbRipple 2.2s ease-out infinite;
  pointer-events: none;
}

.orb-showcase-ring:nth-child(1) { border: 1.5px solid rgba(197,180,227,0.55); animation-delay: 0s;    }
.orb-showcase-ring:nth-child(2) { border: 1px   solid rgba(244,168,154,0.4);  animation-delay: 0.73s; }
.orb-showcase-ring:nth-child(3) { border: 1px   solid rgba(196,242,64,0.28);  animation-delay: 1.46s; }

.orb-showcase-svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  overflow: visible;
}

/* same morph keyframes apply via class */
.orb-showcase-blob {
  fill: url(#orbGradient2);
  animation: orbMorph 3s ease-in-out infinite, orbBreathe 2s ease-in-out infinite;
  transform-origin: center;
  filter: url(#orbGlow2);
}

.orb-showcase-blob-inner {
  fill: url(#orbGradientInner2);
  animation: orbMorph 3s ease-in-out infinite reverse, orbBreathe 2s ease-in-out infinite;
  transform-origin: center;
  opacity: 0.52;
}

.orb-label {
  margin-top: -4px;
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-whisper);
}

.orb-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 18px;
  max-width: 680px;
}

.orb-section-body {
  font-size: clamp(0.88rem, 2vw, 1.05rem);
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.8;
}

/* ── MANIFESTO QUOTE ── */
.manifesto {
  padding: 80px 24px;
  display: flex;
  justify-content: center;
}

.manifesto-inner {
  max-width: 700px;
  text-align: center;
  position: relative;
}

.manifesto-inner::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: var(--peach-light);
  position: absolute;
  top: -52px; left: -12px;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.manifesto-quote em { color: var(--peach); font-style: italic; }

.manifesto-attr {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-whisper);
}

/* ── PROTOCOLS ── */
.protocols {
  padding: 80px 24px 96px;
}

.protocols-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}

.protocol-card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(244,168,154,0.12);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s, border-color 0.4s;
  position: relative;
  overflow: hidden;
}

.protocol-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--peach), var(--lavender), var(--lime));
  background-size: 200% 100%;
  animation: shimmer 3.5s ease-in-out infinite;
}

.protocol-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(244,168,154,0.1);
  border-color: rgba(196,242,64,0.22);
}

.protocol-duration {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 10px;
}

.protocol-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.protocol-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.72;
}

.protocol-mood {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(196,242,64,0.1);
  border: 1px solid rgba(196,242,64,0.28);
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lime-dim);
}

@keyframes shimmer {
  0%, 100% { background-position: 0%; }
  50%       { background-position: 100%; }
}

/* ── PRICING ── */
.pricing {
  padding: 80px 24px 96px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.price-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 44px 36px;
  text-align: center;
  border: 1px solid rgba(244,168,154,0.15);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--peach), var(--lavender), var(--lime));
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(244,168,154,0.14);
}

.price-card.featured {
  background: linear-gradient(160deg, rgba(255,255,255,0.88), rgba(253,221,213,0.28));
  border-color: rgba(244,168,154,0.28);
}

.price-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--lime);
  color: var(--text-primary);
  font-family: 'Space Mono', monospace;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 18px;
}

.price-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  margin-bottom: 6px;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--peach);
  line-height: 1;
  margin-bottom: 4px;
}

.price-per {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 1px;
  color: var(--text-whisper);
  margin-bottom: 28px;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.price-features li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(244,168,154,0.08);
  font-size: 0.87rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}

.price-features li::before {
  content: '·';
  color: var(--lime-dim);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 0.9;
  flex-shrink: 0;
}

.price-btn {
  display: block;
  width: 100%;
  padding: 15px 24px;
  border: 1.5px solid var(--peach);
  color: var(--peach);
  background: transparent;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s;
  text-decoration: none;
  text-align: center;
}

.price-btn:hover,
.price-card.featured .price-btn {
  background: linear-gradient(135deg, var(--peach), var(--rose));
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(244,168,154,0.3);
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 80px 24px 96px;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 32px;
  background: rgba(255,255,255,0.45);
  border-radius: 20px;
  border: 1px solid rgba(244,168,154,0.08);
  text-align: left;
  transition: transform 0.4s, box-shadow 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(197,180,227,0.12);
}

.testimonial-stars {
  font-size: 0.72rem;
  letter-spacing: 3px;
  color: var(--lime-dim);
  margin-bottom: 12px;
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.testimonial-author {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-whisper);
}

/* ── FINAL CTA ── */
.final-cta {
  padding: 120px 24px;
  text-align: center;
  position: relative;
}

.final-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 18px;
}

.final-cta-title em { font-style: italic; color: var(--peach); }

.final-cta-sub {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.final-cta-btn {
  display: inline-block;
  padding: 20px 52px;
  background: linear-gradient(135deg, var(--peach), var(--rose), var(--lavender));
  background-size: 200% 200%;
  animation: ctaShift 4s ease infinite;
  color: white;
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 60px;
  box-shadow: 0 12px 40px rgba(244,168,154,0.35);
  transition: transform 0.4s, box-shadow 0.4s;
}

.final-cta-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 20px 60px rgba(244,168,154,0.5);
}

@keyframes ctaShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* ── FOOTER ── */
footer {
  padding: 48px 24px;
  text-align: center;
  border-top: 1px solid rgba(244,168,154,0.12);
  position: relative;
  z-index: 2;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.footer-brand sup {
  font-family: 'Space Mono', monospace;
  font-size: 0.4em;
  vertical-align: super;
  color: var(--lime-dim);
  letter-spacing: 0;
}

.footer-sub {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-whisper);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-bottom: 24px;
}

.footer-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.56rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-whisper);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--peach); }

.footer-legal {
  font-size: 0.68rem;
  color: rgba(184,154,158,0.45);
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto;
}

/* ── DIVIDER DOTS ── */
.section-divider {
  display: flex;
  justify-content: center;
  padding: 24px 0;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.divider-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--peach-light);
  animation: dotPulse 3s ease-in-out infinite;
}

.divider-dot:nth-child(2) { animation-delay: 0.5s; background: var(--lavender-light); }
.divider-dot:nth-child(3) { animation-delay: 1s; }

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.6); opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (min-width: 768px) {
  nav { padding: 24px 48px; }
  .nav-links { display: flex; }
  .protocols-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  footer { padding: 56px 48px; }
}
