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

:root {
  --bg:        #070710;
  --bg2:       #0D0D1E;
  --surface:   rgba(255,255,255,0.08);
  --surface-h: rgba(255,255,255,0.13);
  --border:    rgba(255,255,255,0.13);
  --border-h:  rgba(255,255,255,0.25);
  --lime:      #C8FF4D;
  --lime-glow: rgba(200,255,77,0.30);
  --lime-dk:   #A0D020;
  --text:      rgba(255,255,255,0.95);
  --muted:     rgba(255,255,255,0.50);
  --dim:       rgba(255,255,255,0.28);
  --r:         16px;
  --r-sm:      10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── AMBIENT BACKGROUND ORBS ── */
.bg-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: orb-drift 18s ease-in-out infinite alternate;
}

.orb-1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(130,80,255,0.28) 0%, transparent 70%);
  top: -200px; left: -200px;
  animation-duration: 22s;
}

.orb-2 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,200,160,0.22) 0%, transparent 70%);
  top: 20%; right: -150px;
  animation-duration: 18s;
  animation-delay: -8s;
}

.orb-3 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,255,77,0.14) 0%, transparent 70%);
  bottom: 10%; left: 30%;
  animation-duration: 26s;
  animation-delay: -4s;
}

.orb-4 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(50,120,255,0.18) 0%, transparent 70%);
  bottom: -100px; right: 10%;
  animation-duration: 20s;
  animation-delay: -12s;
}

@keyframes orb-drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, 30px) scale(1.05); }
  66%  { transform: translate(-20px, 50px) scale(0.97); }
  100% { transform: translate(30px, -20px) scale(1.03); }
}

/* ── GRAIN ── */
.grain {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: .04;
  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-size: 180px 180px;
}

/* ── CURSOR GLOW ── */
#cursor-glow {
  position: fixed; z-index: 9998;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,255,77,0.06) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
  mix-blend-mode: screen;
}

/* ── MAIN WRAPPER ── */
main { position: relative; z-index: 1; }

/* ── GLASS MIXIN ── */
.glass {
  background: var(--surface);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border);
}

/* ── NAV ── */
nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px 10px 20px;
  width: min(1100px, calc(100vw - 32px));
  border-radius: 50px;
  background: rgba(12,12,20,0.72);
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: background .3s;
}

.nav-wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 14px;
  letter-spacing: -.01em;
  color: var(--text);
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}

.nav-badge {
  background: var(--lime); color: #06060C;
  font-size: 9px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 20px;
}

.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}

.nav-links a {
  font-size: 13px; font-weight: 500;
  color: var(--muted); text-decoration: none;
  padding: 7px 14px; border-radius: 30px;
  transition: color .2s, background .2s;
}

.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.07); }

.nav-cta {
  background: var(--lime) !important;
  color: #06060C !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: 30px !important;
  font-size: 13px !important;
  transition: transform .2s, box-shadow .2s, background .2s !important;
}

.nav-cta:hover {
  background: #d8ff6a !important;
  transform: scale(1.03);
  box-shadow: 0 0 20px var(--lime-glow) !important;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-text {
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(24px);
  animation: spring-in 1s cubic-bezier(.34,1.56,.64,1) .1s forwards;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 28px;
}

.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime-glow);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 6px var(--lime-glow); }
  50% { box-shadow: 0 0 18px rgba(200,255,77,0.65); }
}

.hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(52px, 5.5vw, 88px);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -.04em;
  color: var(--text);
  margin-bottom: 28px;
  padding-bottom: 10px;
  position: relative; z-index: 1;
}

.hero-h1 em {
  font-style: italic; font-weight: 400;
  color: var(--muted);
}

.hero-lime-chip {
  display: inline-block;
  background: var(--lime);
  color: #06060C;
  padding: 4px 16px 8px;
  border-radius: 12px;
  position: relative;
}

.hero-lime-chip::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(200,255,77,0.4);
  pointer-events: none;
}

.hero-desc {
  font-size: 16px; color: var(--muted);
  line-height: 1.8; font-weight: 300;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--lime); color: #06060C;
  text-decoration: none; padding: 15px 28px;
  border-radius: 50px;
  font-size: 14px; font-weight: 700; letter-spacing: .02em;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1),
              box-shadow .25s ease;
  position: relative;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px var(--lime-glow), 0 0 0 1px rgba(200,255,77,.3);
}

.btn-primary:active { transform: scale(.98); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 15px 24px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.12);
  transition: color .2s, border-color .2s, background .2s;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.05);
}

.hero-stats {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
}

.hero-stat {
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }

.hero-stat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 28px; font-weight: 900;
  color: var(--text); line-height: 1;
  margin-bottom: 4px;
}

.hero-stat span {
  font-size: 11px; color: var(--muted);
  font-weight: 400; line-height: 1.4;
  display: block;
}

/* ── HERO VISUAL ── */
.hero-visual {
  position: relative; z-index: 1;
  opacity: 0; transform: translateX(24px);
  animation: slide-in-right 1s cubic-bezier(.34,1.56,.64,1) .35s forwards;
}

@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── TICKER ── */
.ticker {
  position: relative; z-index: 1;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  background: rgba(255,255,255,.02);
}

.ticker::before, .ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 120px; z-index: 2; pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.ticker::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.ticker-track {
  display: flex;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 0 28px;
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--dim);
}

.ticker-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--lime); flex-shrink: 0;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
section { padding: 120px 48px; position: relative; z-index: 1; }

.inner { max-width: 1280px; margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  display: block; width: 20px; height: 1px;
  background: var(--muted);
}

.display {
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--text); margin-bottom: 16px;
}

.display em { font-style: italic; font-weight: 400; color: var(--muted); }

.lead {
  font-size: 17px; color: var(--muted);
  line-height: 1.75; font-weight: 300;
  max-width: 500px; margin-bottom: 72px;
}

/* ── SERVICES ── */
.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end;
  margin-bottom: 56px;
}

/* Bento Grid */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.bento-card {
  border-radius: var(--r);
  padding: 36px 32px;
  position: relative; overflow: hidden;
  cursor: default;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1),
              box-shadow .4s ease,
              border-color .3s ease;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.11);
}

.bento-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, transparent 55%);
  pointer-events: none;
  border-radius: var(--r);
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5),
              0 1px 0 rgba(255,255,255,0.1) inset;
}

.bento-1 { grid-column: span 7; }
.bento-2 { grid-column: span 5; }
.bento-3 { grid-column: span 5; }
.bento-4 { grid-column: span 7; }

.bento-num {
  font-family: 'Fraunces', serif;
  font-size: 80px; font-weight: 900;
  line-height: 1; color: rgba(255,255,255,.05);
  position: absolute; top: 16px; right: 24px;
  transition: color .3s;
  pointer-events: none;
}

.bento-card:hover .bento-num { color: rgba(200,255,77,.1); }

.bento-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 24px;
  transition: background .3s, transform .3s cubic-bezier(.34,1.56,.64,1);
}

.bento-card:hover .bento-icon {
  background: rgba(200,255,77,.12);
  border-color: rgba(200,255,77,.25);
  transform: scale(1.08) rotate(-4deg);
}

.bento-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
}

.bento-desc {
  font-size: 14px; color: var(--muted);
  line-height: 1.7; font-weight: 300;
  max-width: 420px;
}

.bento-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 24px;
}

.tag {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  transition: background .2s, border-color .2s, color .2s;
}

.bento-card:hover .tag {
  background: rgba(200,255,77,.08);
  border-color: rgba(200,255,77,.2);
  color: rgba(200,255,77,.8);
}

.bento-arrow {
  position: absolute; bottom: 28px; right: 28px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .3s, transform .3s cubic-bezier(.34,1.56,.64,1),
              background .2s;
}

.bento-card:hover .bento-arrow {
  opacity: 1; transform: translateX(0);
}

.bento-arrow svg { width: 14px; height: 14px; color: var(--lime); }

/* ── MANIFESTO ── */
#manifesto {
  background: rgba(130,80,255,.04);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.manifesto-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px;
  align-items: center;
}

.manifesto-left .display { font-size: clamp(38px,4vw,56px); }

.manifesto-body {
  font-size: 16px; color: var(--muted);
  line-height: 1.8; font-weight: 300;
  margin-top: 20px;
}

.pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pillar {
  border-radius: 14px; padding: 24px 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: background .3s, border-color .3s, transform .3s cubic-bezier(.34,1.56,.64,1);
  cursor: default;
}

.pillar:hover {
  background: rgba(200,255,77,.05);
  border-color: rgba(200,255,77,.2);
  transform: translateY(-3px);
}

.pillar-icon {
  font-size: 26px; margin-bottom: 12px;
  display: block;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}

.pillar:hover .pillar-icon { transform: scale(1.15) rotate(-5deg); }

.pillar-title {
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--text); margin-bottom: 6px;
}

.pillar-desc {
  font-size: 13px; color: var(--muted); line-height: 1.6;
}

/* ── HOW ── */
.how-track {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 60px;
}

.how-card {
  border-radius: var(--r); padding: 36px 28px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative; overflow: hidden;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1),
              border-color .3s, box-shadow .4s;
  cursor: default;
}

.how-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.how-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 24px 48px rgba(0,0,0,.4);
}

.how-card:hover::after { opacity: 1; }

.how-step-num {
  font-family: 'Fraunces', serif;
  font-size: 56px; font-weight: 900;
  line-height: 1; color: rgba(255,255,255,.06);
  margin-bottom: 20px;
  transition: color .3s;
}

.how-card:nth-child(1):hover .how-step-num { color: rgba(200,255,77,.15); }
.how-card:nth-child(2):hover .how-step-num { color: rgba(130,200,255,.15); }
.how-card:nth-child(3):hover .how-step-num { color: rgba(200,130,255,.15); }
.how-card:nth-child(4):hover .how-step-num { color: rgba(0,220,170,.15); }

.how-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
}

.how-desc {
  font-size: 13px; color: var(--muted); line-height: 1.7;
}

/* ── CHANNELS ── */
#channels {
  background: rgba(0,200,160,.03);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.channels-layout {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 80px; align-items: start; margin-top: 60px;
}

.channels-sticky { position: sticky; top: 100px; }

.channels-sticky .display { font-size: clamp(32px,3.2vw,46px); }

.channels-sticky p {
  font-size: 15px; color: var(--muted); line-height: 1.75;
  font-weight: 300; margin-top: 14px;
}

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

.channel-card {
  border-radius: 14px; padding: 24px 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1),
              border-color .3s, background .3s;
  cursor: default;
}

.channel-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(200,255,77,.25);
  background: rgba(200,255,77,.04);
}

.channel-icon { font-size: 28px; margin-bottom: 10px; }

.channel-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--text);
  margin-bottom: 3px;
}

.channel-sub { font-size: 11px; color: var(--muted); }

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; margin-top: 60px;
}

.testi-card {
  border-radius: var(--r); padding: 36px 30px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1),
              border-color .3s, box-shadow .4s;
  position: relative;
}

.testi-card::before {
  content: '"';
  position: absolute; top: 16px; right: 24px;
  font-family: 'Fraunces', serif;
  font-size: 80px; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,.04);
  pointer-events: none;
}

.testi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}

.testi-stars {
  display: flex; gap: 4px; margin-bottom: 20px;
}

.star {
  width: 14px; height: 14px; fill: var(--lime);
}

.testi-quote {
  font-family: 'Fraunces', serif;
  font-size: 16px; font-style: italic;
  color: rgba(255,255,255,.75);
  line-height: 1.75; margin-bottom: 28px;
  font-weight: 300;
}

.testi-meta {
  display: flex; align-items: center; gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 13px; color: #06060C;
  flex-shrink: 0;
}

.testi-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--text);
}

.testi-role {
  font-size: 11px; color: var(--muted); margin-top: 2px;
}

/* ── PRICING ── */
#pricing { background: rgba(50,120,255,.04); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; margin-top: 60px;
}

.p-card {
  border-radius: var(--r); padding: 40px 36px;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative; overflow: hidden;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1),
              box-shadow .4s, border-color .3s;
}

.p-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}

.p-card.featured {
  background: rgba(200,255,77,.08);
  border-color: rgba(200,255,77,.3);
}

.p-card.featured:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,.5),
              0 0 60px rgba(200,255,77,.12);
  border-color: rgba(200,255,77,.5);
}

.p-featured-badge {
  position: absolute; top: -1px; left: 32px;
  background: var(--lime); color: #06060C;
  font-family: 'Syne', sans-serif;
  font-size: 9px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 14px;
  border-radius: 0 0 10px 10px;
}

.p-tier {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 20px;
}

.p-price {
  font-family: 'Fraunces', serif;
  font-size: 60px; font-weight: 900;
  color: var(--text); line-height: 1;
  margin-bottom: 4px; letter-spacing: -.03em;
}

.p-price sup {
  font-size: 24px; font-weight: 700;
  vertical-align: super;
  font-family: 'Inter', sans-serif;
}

.p-period {
  font-size: 12px; color: var(--muted); margin-bottom: 28px;
}

.p-divider {
  border: none; border-top: 1px solid rgba(255,255,255,.08);
  margin: 24px 0;
}

.p-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 36px;
}

.p-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--muted); line-height: 1.5;
}

.p-features li svg {
  width: 16px; height: 16px; flex-shrink: 0;
  margin-top: 1px; color: var(--lime);
}

.p-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; padding: 15px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
}

.p-btn-outline {
  border: 1px solid rgba(255,255,255,.15);
  color: var(--text);
}

.p-btn-outline:hover {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.07);
  transform: translateY(-2px);
}

.p-btn-lime {
  background: var(--lime); color: #06060C;
}

.p-btn-lime:hover {
  background: #d8ff6a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--lime-glow);
}

/* ── CTA ── */
#cta {
  padding: 80px 48px;
  position: relative; overflow: hidden;
}

.cta-glass {
  border-radius: 24px; padding: 72px 80px;
  background: rgba(200,255,77,.06);
  border: 1px solid rgba(200,255,77,.2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 60px;
  position: relative; overflow: hidden;
}

.cta-glass::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,255,77,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 3.5vw, 54px);
  font-weight: 900; line-height: 1.05;
  color: var(--text); letter-spacing: -.03em;
}

.cta-heading em { font-style: italic; color: var(--lime); }

.cta-sub {
  font-size: 16px; color: var(--muted); line-height: 1.7;
  margin-top: 14px; font-weight: 300;
}

.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }

.btn-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--lime); color: #06060C;
  text-decoration: none; padding: 18px 36px;
  border-radius: 50px; white-space: nowrap;
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
}

.btn-cta:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 12px 40px var(--lime-glow);
}

.cta-note {
  font-size: 12px; color: var(--muted); text-align: center;
}

/* ── CONTACT ── */
#contact {
  background: transparent;
  border-top: 1px solid rgba(255,255,255,.06);
}

.contact-layout {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
}

.contact-left .lead { margin-bottom: 40px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
}

.contact-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  transition: background .3s, border-color .3s;
}

.contact-item:hover .contact-icon {
  background: rgba(200,255,77,.1);
  border-color: rgba(200,255,77,.25);
}

.contact-item strong {
  display: block; font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 3px;
}

.contact-item span { font-size: 13px; color: var(--muted); }

.contact-form {
  border-radius: 20px; padding: 48px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.contact-form h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px; font-weight: 700;
  color: var(--text); margin-bottom: 32px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.fg {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 16px;
}

.fg label {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted);
}

.fg input, .fg select, .fg textarea {
  padding: 14px 16px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  font-size: 14px; font-family: 'Inter', sans-serif;
  color: var(--text); outline: none;
  transition: border-color .2s, background .2s;
}

.fg input::placeholder, .fg textarea::placeholder { color: var(--dim); }

.fg select option { background: #12121e; color: var(--text); }

.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: rgba(200,255,77,.4);
  background: rgba(200,255,77,.03);
}

.fg textarea { resize: vertical; min-height: 96px; }

.btn-submit {
  width: 100%; padding: 16px;
  border-radius: 50px; border: none;
  background: var(--lime); color: #06060C;
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; cursor: pointer;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--lime-glow);
}

.btn-submit:active { transform: scale(.98); }

/* ── FOOTER ── */
footer {
  position: relative; z-index: 1;
  padding: 60px 48px 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-inner { max-width: 1280px; margin: 0 auto; }

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 28px;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 16px; color: var(--text);
  margin-bottom: 12px; display: block;
}

.footer-brand span { color: var(--lime); }

.footer-desc {
  font-size: 14px; color: var(--muted); line-height: 1.7;
  max-width: 270px; margin-bottom: 22px; font-weight: 300;
}

.footer-socials { display: flex; gap: 8px; }

.fsoc {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none;
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  transition: background .2s, border-color .2s, color .2s;
}

.fsoc:hover {
  background: rgba(200,255,77,.15);
  border-color: rgba(200,255,77,.3);
  color: var(--lime);
}

.footer-col h5 {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.footer-col a {
  color: var(--muted); text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}

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

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}

.footer-bottom p { font-size: 13px; color: var(--muted); }

.footer-legal { display: flex; gap: 20px; }

.footer-legal a {
  color: var(--dim); font-size: 13px;
  text-decoration: none; transition: color .2s;
}

.footer-legal a:hover { color: var(--muted); }

/* ── SPRING ANIMATIONS ── */
@keyframes spring-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1),
              transform .7s cubic-bezier(.16,1,.3,1);
}

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

.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
.reveal-d5 { transition-delay: .40s; }

/* ── MAGNETIC BUTTON ── */
.magnetic { display: inline-block; }

/* ── FLOATING LABEL INPUTS ── */
.fg input:not(:placeholder-shown) + label,
.fg input:focus + label { color: var(--lime); }

/* ── SCROLL PROGRESS BAR ── */
#progress-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 9997;
  background: linear-gradient(90deg, var(--lime), #00e5c0);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .1s linear;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  section { padding: 80px 28px; }
  nav { width: calc(100vw - 24px); top: 10px; }

  .bento-1, .bento-2, .bento-3, .bento-4 { grid-column: span 12; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 40px; }
  .channels-layout { grid-template-columns: 1fr; gap: 40px; }
  .channels-sticky { position: static; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ── MOBILE NAV ── */
.nav-menu-btn {
  display: none;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  width: 38px; height: 38px;
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  padding: 0;
}

.nav-menu-btn span {
  display: block; width: 18px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 150;
  background: rgba(7,7,16,0.97);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Fraunces', serif;
  font-size: 42px; font-weight: 900;
  color: var(--muted); text-decoration: none;
  letter-spacing: -.03em;
  transition: color .2s, transform .2s;
  display: block; padding: 8px 24px;
}

.mobile-menu a:hover { color: var(--text); transform: translateX(8px); }

.mobile-menu .m-cta {
  background: var(--lime); color: #07070F !important;
  border-radius: 50px; padding: 14px 32px !important;
  font-size: 18px !important; margin-top: 16px;
}

.mobile-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; width: 42px; height: 42px;
  cursor: pointer; color: var(--text); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
}

@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; gap: 56px; padding: 120px 28px 64px; }
  .hero-visual { max-width: 560px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }

  #hero { padding: 100px 24px 56px; }
  section { padding: 72px 24px; }
  .hero-h1 { font-size: clamp(42px,10vw,68px); }
  .hero-visual { display: none; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { flex: 1 1 45%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 14px 16px; }
  .hero-stat:nth-child(1) { border-right: 1px solid rgba(255,255,255,.08); }
  .hero-stat:nth-child(3) { border-bottom: none; flex: 1 1 100%; }
  .how-track { grid-template-columns: 1fr 1fr; }
  .channel-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-glass { grid-template-columns: 1fr; padding: 36px 24px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-header { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .bento-num { font-size: 48px; }
}

@media (max-width: 480px) {
  .how-track { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}

/* ── SERVICE PAGE SPECIFICS ── */
.service-hero {
  padding: 180px 48px 100px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.service-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.service-hero p {
  font-size: 20px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 80px;
}

.service-image {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 16px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(200,255,77,0.1);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.feature-text h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
