/* Nuvexa — Sentinel-inspired design system
   Dark charcoal + vivid green. Sora typeface. Sharp edges.
   Motion borrowed from Apple, Linear, Vercel, Framer. */

:root {
  --background: 0 0% 10%;
  --foreground: 0 0% 96%;
  --primary: 119 99% 46%;
  --primary-foreground: 0 0% 4%;
  --secondary: 0 0% 18%;
  --secondary-foreground: 0 0% 96%;
  --muted: 0 0% 16%;
  --muted-foreground: 0 0% 60%;
  --accent: 119 99% 46%;
  --accent-foreground: 0 0% 4%;
  --destructive: 0 84% 60%;
  --border: 0 0% 20%;
  --input: 0 0% 20%;
  --ring: 119 99% 46%;
  --nav-button: 0 0% 18%;
  --hero-bg: 0 0% 8%;
  --radius: 0.5rem;
}

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

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

body {
  font-family: 'Sora', -apple-system, system-ui, sans-serif;
  font-weight: 400;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
img, video, svg { display: block; max-width: 100%; }
ul { list-style: none; }

::selection { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }

.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
}

/* Keyframes */
@keyframes fade-up {
  0%   { opacity: 0; transform: translateY(20px); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
@keyframes fade-in {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.8); }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scroll-line {
  0%   { top: -100%; }
  60%  { top: 100%; }
  100% { top: 100%; }
}

.animate-fade-up {
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.animate-fade-in {
  opacity: 0;
  animation: fade-in 0.6s ease-out forwards;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section--tight { padding: clamp(60px, 8vw, 120px) 0; }

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: hsl(var(--primary));
}
.eyebrow--dot::before {
  width: 6px;
  height: 6px;
  background: hsl(var(--primary));
  border-radius: 999px;
  box-shadow: 0 0 10px hsl(var(--primary));
  animation: pulse-dot 1.6s ease-in-out infinite;
}

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

/* Scroll progress bar */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: hsl(var(--primary));
  z-index: 250;
  box-shadow: 0 0 10px hsl(var(--primary));
}

/* Cursor */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: hsl(var(--foreground));
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.3s cubic-bezier(0.16,1,0.3,1), height 0.3s cubic-bezier(0.16,1,0.3,1), background 0.2s ease;
}
.cursor.hover {
  width: 36px; height: 36px;
  background: transparent;
  border: 1.5px solid hsl(var(--primary));
  box-shadow: 0 0 18px hsla(119 99% 46% / 0.45), inset 0 0 8px hsla(119 99% 46% / 0.25);
  mix-blend-mode: normal;
}
@media (hover: none), (max-width: 900px) { .cursor { display: none; } }

/* ───────────── NAVIGATION ───────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px clamp(24px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.35s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: hsla(0 0% 8% / 0.7);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  padding: 14px clamp(24px, 4vw, 64px);
  border-bottom-color: hsl(var(--border));
}

.nav__brand {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.025em;
  color: hsl(var(--foreground));
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__brand-mark {
  width: 10px; height: 10px;
  background: hsl(var(--primary));
  border-radius: 2px;
  box-shadow: 0 0 12px hsl(var(--primary));
}

.nav__center {
  display: flex;
  gap: 40px;
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav__center a {
  color: hsl(var(--muted-foreground));
  transition: color 0.25s ease;
  position: relative;
  padding: 6px 0;
}
.nav__center a:hover,
.nav__center a.active { color: hsl(var(--foreground)); }
.nav__center a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 6px;
  height: 1px;
  background: hsl(var(--primary));
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__academy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 14px;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: hsl(var(--foreground));
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.nav__academy::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 999px;
  background: hsl(var(--primary));
  box-shadow: 0 0 8px hsl(var(--primary));
}
.nav__academy:hover {
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.nav__academy:hover::before { background: hsl(var(--primary-foreground)); box-shadow: none; }

.nav__cta {
  padding: 10px 20px;
  background: hsl(var(--nav-button));
  color: hsl(var(--foreground));
  border-radius: var(--radius);
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.2s ease;
}
.nav__cta:hover { background: hsla(0 0% 18% / 0.8); }
.nav__cta:active { transform: scale(0.97); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
}
.nav__burger span {
  width: 20px; height: 1.5px;
  background: hsl(var(--foreground));
  transition: transform 0.3s ease;
}

@media (max-width: 900px) {
  .nav__center, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__academy { font-size: 10px; padding: 9px 12px 9px 10px; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: hsl(var(--hero-bg));
  z-index: 49;
  display: flex;
  flex-direction: column;
  padding: 110px 28px 32px;
  transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
  gap: 2px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: 'Sora', sans-serif;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.03em;
  padding: 18px 0;
  border-bottom: 1px solid hsl(var(--border));
}
.mobile-menu a:last-child { color: hsl(var(--primary)); border-bottom: none; margin-top: 8px; }

/* ───────────── BUTTONS ───────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), background 0.25s ease, color 0.25s ease, border-color 0.25s ease, filter 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(0.97); }
.btn__arrow { transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); width: 14px; height: 14px; }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--primary { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.btn--primary:hover { filter: brightness(1.1); box-shadow: 0 0 32px hsla(119 99% 46% / 0.35); }
.btn--white { background: hsl(var(--foreground)); color: hsl(var(--background)); }
.btn--white:hover { filter: brightness(0.92); }
.btn--ghost { border-color: hsl(var(--border)); color: hsl(var(--foreground)); }
.btn--ghost:hover { border-color: hsl(var(--foreground)); background: hsla(0 0% 100% / 0.04); }

.btn--hero {
  padding: 16px 30px;
  font-size: 12px;
  border-radius: var(--radius);
}

/* ───────────── HERO ───────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: hsl(var(--hero-bg));
  overflow: hidden;
}

.hero__spline {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__spline spline-viewer {
  width: 100%;
  height: 100%;
  display: block;
}
.hero__3d {
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* Hide Spline logo/watermark where possible */
.hero__spline spline-viewer::part(logo) { display: none !important; }

.hero__fallback {
  position: absolute; inset: 0;
  background: hsl(var(--hero-bg));
  z-index: 0;
}
.hero__dark-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

/* Automation visual — 4th pinned service */
.v-motion { background: radial-gradient(circle at 50% 50%, hsla(119 99% 46% / 0.12), transparent 60%), hsl(var(--hero-bg)); }
.v-auto {
  position: relative; width: 78%; max-width: 420px;
  display: flex; flex-direction: column; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
}
.v-auto__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.v-auto__cell {
  height: 38px; border-radius: 6px;
  background: hsla(0 0% 100% / 0.05);
  border: 1px solid hsla(0 0% 100% / 0.08);
  display: flex; align-items: center; justify-content: center;
  color: hsl(var(--muted-foreground)); font-size: 12px;
}
.v-auto__cell.h { background: hsla(0 0% 100% / 0.1); color: hsl(var(--foreground)); font-weight: 600; }
.v-auto__cell.g {
  background: hsla(119 99% 46% / 0.2);
  border-color: hsla(119 99% 46% / 0.4);
  animation: autoPulse 2s ease-in-out infinite;
}
.v-auto__cell.g:nth-child(2) { animation-delay: 0.3s; }
.v-auto__cell.g:nth-child(3) { animation-delay: 0.6s; }
.v-auto__arrow {
  position: absolute; right: -56px; top: 50%; transform: translateY(-50%);
  font-size: 32px; color: hsl(var(--primary));
  animation: autoSlide 1.8s ease-in-out infinite;
}
.v-auto__bot {
  position: absolute; right: -108px; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: hsla(119 99% 46% / 0.15);
  border: 1px solid hsla(119 99% 46% / 0.5);
  color: hsl(var(--primary));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  animation: autoSpin 6s linear infinite;
}
@keyframes autoPulse { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }
@keyframes autoSlide { 0%,100% { transform: translate(0,-50%); } 50% { transform: translate(10px,-50%); } }
@keyframes autoSpin { to { transform: translateY(-50%) rotate(360deg); } }

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, hsla(0 0% 0% / 0.1), hsla(0 0% 0% / 0.55) 60%, hsla(0 0% 0% / 0.75)),
    radial-gradient(ellipse at 20% 80%, hsla(0 0% 0% / 0.5), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 90%;
  padding: 0 clamp(24px, 5vw, 64px) clamp(40px, 6vw, 80px);
  pointer-events: none;
}
@media (min-width: 640px) { .hero__content { max-width: 32rem; } }
@media (min-width: 1024px) { .hero__content { max-width: 56rem; } }

.hero__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: hsl(var(--foreground));
  margin-bottom: 16px;
}
.hero__title .accent { color: hsl(var(--primary)); }

.hero__sub {
  font-size: clamp(1.125rem, 2.6vw, 1.875rem);
  font-weight: 300;
  line-height: 1.25;
  color: hsla(0 0% 96% / 0.85);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero__desc {
  font-size: clamp(0.9rem, 1.4vw, 1.125rem);
  font-weight: 300;
  line-height: 1.55;
  color: hsl(var(--muted-foreground));
  margin-bottom: 32px;
  max-width: 60ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  pointer-events: none;
}
.hero__actions .btn { pointer-events: auto; }

.hero__trust {
  margin-top: 24px;
  font-size: 12px;
  font-weight: 300;
  color: hsla(0 0% 60% / 0.75);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__trust-dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: hsl(var(--primary));
  box-shadow: 0 0 8px hsl(var(--primary));
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.hero__scroll-hint {
  position: absolute;
  right: clamp(20px, 4vw, 64px);
  bottom: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsla(0 0% 96% / 0.6);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__scroll-hint-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, hsla(0 0% 96% / 0.4));
  position: relative;
  overflow: hidden;
}
.hero__scroll-hint-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: hsl(var(--primary));
  animation: scroll-line 2.2s ease-in-out infinite;
}
@media (max-width: 768px) { .hero__scroll-hint { display: none; } }

/* ───────────── TICKER MARQUEE ───────────── */
.ticker {
  padding: 26px 0;
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
  overflow: hidden;
  background: hsl(var(--hero-bg));
}
.ticker__track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  animation: ticker 38s linear infinite;
}
.ticker__track span { color: hsl(var(--foreground)); }
.ticker__track .sep { color: hsl(var(--primary)); }
.ticker__track em { color: hsl(var(--muted-foreground)); font-style: normal; }

/* ───────────── NEEDS PICKER ───────────── */
.needs {
  padding: clamp(80px, 12vw, 160px) 0;
  border-bottom: 1px solid hsl(var(--border));
  position: relative;
}
.needs__head {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .needs__head { grid-template-columns: 1fr; gap: 28px; } }

.needs__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.25rem, 5.5vw, 5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}
.needs__title .accent { color: hsl(var(--primary)); }

.needs__helper {
  color: hsl(var(--muted-foreground));
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 300;
  line-height: 1.55;
  max-width: 52ch;
}
.needs__helper strong { color: hsl(var(--foreground)); font-weight: 500; }

.needs__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(40px, 5vw, 64px);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: transparent;
  color: hsl(var(--foreground));
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s cubic-bezier(0.16,1,0.3,1);
  user-select: none;
}
.chip__mark {
  width: 16px; height: 16px;
  border-radius: 3px;
  border: 1.5px solid hsl(var(--muted-foreground));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}
.chip__mark svg { opacity: 0; transform: scale(0.5); transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.16,1,0.3,1); }
.chip:hover { border-color: hsl(var(--foreground)); transform: translateY(-1px); }
.chip.selected {
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.chip.selected .chip__mark {
  background: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary-foreground));
}
.chip.selected .chip__mark svg { opacity: 1; transform: scale(1); color: hsl(var(--primary)); }

.needs__footer {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 32px;
  border-top: 1px solid hsl(var(--border));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
@media (max-width: 700px) { .needs__footer { grid-template-columns: 1fr; } }

.needs__summary {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.needs__summary-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}
.needs__summary-value {
  font-family: 'Sora', sans-serif;
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.needs__submit {
  padding: 16px 28px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-radius: var(--radius);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.25s ease, filter 0.25s ease;
}
.needs__submit.active { opacity: 1; pointer-events: auto; }
.needs__submit.active:hover { transform: translateY(-1px); filter: brightness(1.1); box-shadow: 0 0 32px hsla(119 99% 46% / 0.3); }

/* ───────────── 100% YES BAND ───────────── */
.yes {
  padding: clamp(100px, 16vw, 200px) 0;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  position: relative;
  overflow: hidden;
}
.yes::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, hsla(0 0% 0% / 0.1) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}
.yes__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsla(0 0% 4% / 0.7);
  position: relative;
  z-index: 2;
}
.yes__eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: hsl(var(--primary-foreground));
}
.yes__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(3rem, 11vw, 11rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  margin-top: 28px;
  max-width: 16ch;
  position: relative;
  z-index: 2;
}
.yes__body {
  margin-top: clamp(60px, 8vw, 100px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) { .yes__body { grid-template-columns: 1fr; gap: 24px; } }
.yes__body p {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  color: hsla(0 0% 4% / 0.88);
  font-weight: 400;
  max-width: 52ch;
}
.yes__body p + p { margin-top: 18px; }
.yes__stats {
  margin-top: clamp(60px, 8vw, 100px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: hsla(0 0% 4% / 0.2);
  border: 1px solid hsla(0 0% 4% / 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) { .yes__stats { grid-template-columns: 1fr; } }
.yes__stat {
  background: hsl(var(--primary));
  padding: 36px 28px;
}
.yes__stat-num {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.yes__stat-label {
  margin-top: 10px;
  font-size: 13px;
  color: hsla(0 0% 4% / 0.7);
}

/* ───────────── SERVICES PINNED (Apple-style) ───────────── */
.services-pin {
  position: relative;
  background: hsl(var(--hero-bg));
}
.services-pin__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px) { .services-pin__sticky { grid-template-columns: 1fr; grid-template-rows: auto 55vh; height: auto; position: static; } }

.services-pin__left {
  padding: clamp(48px, 8vh, 120px) clamp(24px, 4vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid hsl(var(--border));
  position: relative;
}
@media (max-width: 900px) { .services-pin__left { border-right: none; border-bottom: 1px solid hsl(var(--border)); } }

.services-pin__counter {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.services-pin__counter-current {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: hsl(var(--primary));
  line-height: 1;
  letter-spacing: -0.03em;
}
.services-pin__counter-total {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: hsl(var(--muted-foreground));
}

.services-pin__slides {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  margin: 48px 0;
}
.services-pin__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.services-pin__slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.services-pin__slide .mono { color: hsl(var(--muted-foreground)); margin-bottom: 20px; display: block; }
.services-pin__slide h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.services-pin__slide h3 .accent { color: hsl(var(--primary)); }
.services-pin__slide p {
  margin-top: 28px;
  max-width: 52ch;
  color: hsl(var(--muted-foreground));
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
  font-weight: 300;
}
.services-pin__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.services-pin__tags span {
  padding: 6px 12px;
  border: 1px solid hsl(var(--border));
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: hsl(var(--muted-foreground));
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.services-pin__progress {
  display: flex;
  gap: 8px;
  margin-top: 40px;
}
.services-pin__progress-bar {
  flex: 1;
  height: 2px;
  background: hsl(var(--border));
  overflow: hidden;
  border-radius: 999px;
}
.services-pin__progress-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 0%;
  background: hsl(var(--primary));
  transition: width 0.4s ease;
}
.services-pin__progress-bar.active::after { width: 100%; }
.services-pin__progress-bar.done::after { width: 100%; background: hsla(119 99% 46% / 0.4); }

.services-pin__right {
  position: relative;
  overflow: hidden;
  background: hsl(var(--background));
}
.services-pin__visual {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s ease, transform 1.1s cubic-bezier(0.16,1,0.3,1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 64px);
}
.services-pin__visual.active { opacity: 1; transform: scale(1); }

/* Visual styles per service */
.v-web { background: radial-gradient(circle at 30% 40%, hsla(119 99% 46% / 0.12), transparent 60%), hsl(var(--hero-bg)); }
.v-web__frame {
  width: 100%;
  max-width: 520px;
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  background: hsla(0 0% 100% / 0.02);
  overflow: hidden;
  box-shadow: 0 40px 80px -20px hsla(0 0% 0% / 0.5), 0 0 0 1px hsla(119 99% 46% / 0.1);
}
.v-web__bar {
  height: 32px;
  background: hsl(var(--muted));
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-bottom: 1px solid hsl(var(--border));
}
.v-web__dot { width: 8px; height: 8px; border-radius: 999px; background: hsl(var(--border)); }
.v-web__body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.v-web__pill { height: 12px; border-radius: 999px; background: hsl(var(--muted)); }
.v-web__pill.w1 { width: 75%; }
.v-web__pill.w2 { width: 45%; }
.v-web__hero {
  height: 90px;
  border-radius: 8px;
  background: linear-gradient(135deg, hsla(119 99% 46% / 0.35), hsla(119 99% 46% / 0.05));
  position: relative;
  overflow: hidden;
}
.v-web__hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, hsla(0 0% 100% / 0.15), transparent);
  animation: shimmer 2.4s ease-in-out infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.v-web__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.v-web__card { aspect-ratio: 1; border-radius: 6px; background: hsl(var(--muted)); }

.v-app { background: radial-gradient(circle at 50% 50%, hsla(119 99% 46% / 0.1), transparent 60%), hsl(var(--hero-bg)); position: relative; }
.v-app__phone {
  width: 220px;
  aspect-ratio: 9/19;
  border: 1px solid hsl(var(--border));
  border-radius: 38px;
  background: hsl(var(--hero-bg));
  padding: 14px;
  position: relative;
  box-shadow: 0 50px 90px -20px hsla(0 0% 0% / 0.6), 0 0 0 1px hsla(119 99% 46% / 0.15);
}
.v-app__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 18px;
  background: hsl(var(--background));
  border-radius: 14px;
}
.v-app__screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: linear-gradient(180deg, hsl(var(--hero-bg)), hsl(var(--background)));
  padding: 36px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v-app__pill { height: 10px; border-radius: 999px; background: hsl(var(--muted)); }
.v-app__pill.w1 { width: 60%; }
.v-app__pill.w2 { width: 80%; }
.v-app__card {
  height: 80px;
  border-radius: 12px;
  background: linear-gradient(135deg, hsla(119 99% 46% / 0.25), hsla(119 99% 46% / 0.05));
  margin: 8px 0;
}
.v-app__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: auto; }
.v-app__tile { aspect-ratio: 1; border-radius: 8px; background: hsl(var(--muted)); }

.v-ads { background: radial-gradient(circle at 60% 50%, hsla(119 99% 46% / 0.1), transparent 60%), hsl(var(--hero-bg)); position: relative; }
.v-ads__stack {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 360px;
}
.v-ads__ad {
  position: absolute;
  width: 58%;
  aspect-ratio: 4/5;
  border: 1px solid hsl(var(--border));
  border-radius: 14px;
  background: linear-gradient(160deg, hsla(119 99% 46% / 0.18), hsla(0 0% 4% / 0.8));
  padding: 18px;
  box-shadow: 0 30px 60px -20px hsla(0 0% 0% / 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.v-ads__ad:nth-child(1) { top: 0; left: 0; transform: rotate(-6deg); }
.v-ads__ad:nth-child(2) { top: 15%; left: 35%; transform: rotate(3deg); z-index: 2; border-color: hsla(119 99% 46% / 0.35); }
.v-ads__ad:nth-child(3) { bottom: 0; right: 0; transform: rotate(5deg); }
.v-ads__ad-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: hsl(var(--primary));
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.v-ads__ad-title {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.v-ads__ad-cta {
  padding: 6px 10px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-radius: 4px;
  font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: start;
}

.v-motion { background: radial-gradient(circle at 50% 50%, hsla(119 99% 46% / 0.12), transparent 60%), hsl(var(--hero-bg)); }
.v-motion__bars {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 280px;
}
.v-motion__bars span {
  width: 14px;
  background: hsl(var(--primary));
  border-radius: 6px;
  box-shadow: 0 0 20px hsla(119 99% 46% / 0.4);
  animation: wave 1.8s ease-in-out infinite;
}
.v-motion__bars span:nth-child(1) { height: 30%; }
.v-motion__bars span:nth-child(2) { height: 55%; animation-delay: 0.1s; }
.v-motion__bars span:nth-child(3) { height: 40%; animation-delay: 0.2s; }
.v-motion__bars span:nth-child(4) { height: 80%; animation-delay: 0.3s; }
.v-motion__bars span:nth-child(5) { height: 60%; animation-delay: 0.4s; }
.v-motion__bars span:nth-child(6) { height: 90%; animation-delay: 0.5s; }
.v-motion__bars span:nth-child(7) { height: 50%; animation-delay: 0.6s; }
.v-motion__bars span:nth-child(8) { height: 70%; animation-delay: 0.7s; }
.v-motion__bars span:nth-child(9) { height: 35%; animation-delay: 0.8s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.8); opacity: 0.7; }
  50% { transform: scaleY(1.2); opacity: 1; }
}

/* ───────────── WORK ───────────── */
.work { padding: clamp(80px, 12vw, 160px) 0; }
.work__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 80px);
}
@media (max-width: 700px) { .work__head { grid-template-columns: 1fr; } }

.work__title {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.work__title .accent { color: hsl(var(--primary)); }

.work__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.work-card {
  position: relative;
  aspect-ratio: 4/3;
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  overflow: hidden;
  background: hsl(var(--muted));
}
.work-card:nth-child(4n+1), .work-card:nth-child(4n+4) { grid-column: span 7; }
.work-card:nth-child(4n+2), .work-card:nth-child(4n+3) { grid-column: span 5; }
@media (max-width: 800px) { .work-card, .work-card:nth-child(n) { grid-column: span 12; } }

.work-card__bg {
  position: absolute;
  inset: 0;
  transition: transform 1.4s cubic-bezier(0.16,1,0.3,1);
}
.work-card:hover .work-card__bg { transform: scale(1.08); }
.work-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, hsla(0 0% 4% / 0.85));
}
.work-card__meta {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  z-index: 2;
}
.work-card__kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: hsl(var(--primary));
  text-transform: uppercase;
  margin-bottom: 8px;
}
.work-card__title {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: hsl(var(--foreground));
}
.work-card__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid hsla(0 0% 100% / 0.18);
  background: hsla(0 0% 0% / 0.4);
  border-radius: 4px;
  backdrop-filter: blur(6px);
  color: hsl(var(--foreground));
  white-space: nowrap;
  flex-shrink: 0;
}

/* ───────────── PROCESS ───────────── */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: hsl(var(--border));
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  overflow: hidden;
  margin-top: clamp(40px, 6vw, 80px);
}
@media (max-width: 900px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .process { grid-template-columns: 1fr; } }

.process__step {
  background: hsl(var(--background));
  padding: 40px 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.3s ease;
}
.process__step:hover { background: hsl(var(--muted)); }
.process__step-num {
  font-family: 'JetBrains Mono', monospace;
  color: hsl(var(--primary));
  font-size: 12px;
  letter-spacing: 0.14em;
}
.process__step h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 26px;
  margin-top: 18px;
  letter-spacing: -0.02em;
}
.process__step p {
  color: hsl(var(--muted-foreground));
  font-size: 14px;
  line-height: 1.55;
  margin-top: 14px;
  font-weight: 300;
}

/* ───────────── STATS ───────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: clamp(60px, 8vw, 100px) 0;
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}
@media (max-width: 900px) { .stats { grid-template-columns: 1fr 1fr; gap: 28px; } }
.stat__num {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: hsl(var(--foreground));
}
.stat__num .accent { color: hsl(var(--primary)); }
.stat__label {
  margin-top: 16px;
  color: hsl(var(--muted-foreground));
  font-size: 13px;
  font-weight: 300;
  max-width: 200px;
}

/* ───────────── TESTIMONIALS ───────────── */
.testimonials { padding: clamp(80px, 12vw, 160px) 0; }
.testimonials__track {
  display: flex;
  gap: 18px;
  margin-top: clamp(40px, 6vw, 80px);
  padding-left: clamp(24px, 4vw, 64px);
}
.testimonial {
  flex: 0 0 clamp(320px, 36vw, 480px);
  padding: 40px 32px;
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  background: hsl(var(--muted));
}
.testimonial__quote {
  font-family: 'Sora', sans-serif;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.015em;
}
.testimonial__quote::before {
  content: '"';
  font-family: 'Sora', sans-serif;
  color: hsl(var(--primary));
  font-size: 48px;
  line-height: 0;
  position: relative;
  top: 12px;
  margin-right: 2px;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid hsl(var(--border));
}
.testimonial__avatar {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: hsl(var(--primary));
}
.testimonial__name { font-size: 14px; font-weight: 500; }
.testimonial__role { font-size: 12px; color: hsl(var(--muted-foreground)); margin-top: 2px; }

/* ───────────── ACADEMY (separate) ───────────── */
.academy {
  padding: clamp(80px, 12vw, 160px) 0;
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--hero-bg));
  position: relative;
  overflow: hidden;
}
.academy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, hsla(119 99% 46% / 0.1), transparent 55%);
  pointer-events: none;
}
.academy__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 900px) { .academy__grid { grid-template-columns: 1fr; gap: 40px; } }

.academy__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid hsl(var(--primary));
  background: hsla(119 99% 46% / 0.08);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: hsl(var(--primary));
}
.academy__kicker::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 999px;
  background: hsl(var(--primary));
  box-shadow: 0 0 8px hsl(var(--primary));
}
.academy__title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin-top: 28px;
}
.academy__title .accent { color: hsl(var(--primary)); }
.academy__desc {
  margin-top: 28px;
  max-width: 54ch;
  color: hsl(var(--muted-foreground));
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  font-weight: 300;
}
.academy__actions { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }

.academy__visual {
  aspect-ratio: 1;
  padding: 28px;
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  background: linear-gradient(160deg, hsla(119 99% 46% / 0.08), transparent 60%), hsla(0 0% 100% / 0.02);
  display: flex;
  align-items: center;
}
.academy__tools {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
}
.academy__tools span {
  padding: 14px 8px;
  border: 1px solid hsl(var(--border));
  background: hsla(0 0% 100% / 0.02);
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: center;
  color: hsl(var(--muted-foreground));
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.academy__tools span:hover {
  border-color: hsl(var(--primary));
  color: hsl(var(--foreground));
  transform: translateY(-1px);
}

/* ───────────── PAGE HEADER ───────────── */
.page-header {
  padding: 180px 0 80px;
  position: relative;
  border-bottom: 1px solid hsl(var(--border));
  background:
    radial-gradient(ellipse at 20% 80%, hsla(119 99% 46% / 0.1), transparent 55%),
    hsl(var(--hero-bg));
}
.page-header__kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(var(--primary));
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.page-header__kicker::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 999px;
  background: hsl(var(--primary));
}
.page-header__title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 11vw, 10rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  margin-top: 24px;
}
.page-header__title .accent { color: hsl(var(--primary)); }
.page-header__sub {
  margin-top: 28px;
  max-width: 60ch;
  color: hsl(var(--muted-foreground));
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  font-weight: 300;
}

/* ───────────── FOOTER ───────────── */
.footer {
  padding: clamp(80px, 10vw, 120px) 0 32px;
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--hero-bg));
}
.footer__huge {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(3.5rem, 15vw, 15rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  margin-bottom: 72px;
}
.footer__huge .accent { color: hsl(var(--primary)); }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
.footer__about {
  color: hsl(var(--muted-foreground));
  max-width: 340px;
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
}
.footer__col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  font-weight: 400;
}
.footer__col ul { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; transition: color 0.25s ease; }
.footer__col a:hover { color: hsl(var(--primary)); }
.footer__bottom {
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid hsl(var(--border));
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  flex-wrap: wrap;
  gap: 14px;
}

/* ───────────── CURRICULUM / FAQ (Courses) ───────────── */
.modules {
  border-top: 1px solid hsl(var(--border));
  margin-top: clamp(40px, 6vw, 80px);
}
.module {
  border-bottom: 1px solid hsl(var(--border));
  padding: clamp(22px, 3vw, 36px) 0;
  cursor: pointer;
}
.module__head {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 24px;
  align-items: center;
}
@media (max-width: 700px) { .module__head { grid-template-columns: 1fr auto; } .module__num { display: none; } }
.module__num {
  font-family: 'JetBrains Mono', monospace;
  color: hsl(var(--primary));
  font-size: 12px;
  letter-spacing: 0.14em;
}
.module__title {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 32px);
  letter-spacing: -0.02em;
}
.module__toggle {
  width: 44px; height: 44px;
  border-radius: 6px;
  border: 1px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), background 0.25s ease, border-color 0.25s ease;
}
.module.open .module__toggle {
  transform: rotate(45deg);
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.module__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.76, 0, 0.24, 1), margin-top 0.3s ease;
}
.module.open .module__body { max-height: 700px; margin-top: 22px; }
.module__body-inner {
  padding-left: 120px;
  color: hsl(var(--muted-foreground));
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.7;
  max-width: 820px;
  font-weight: 300;
}
@media (max-width: 700px) { .module__body-inner { padding-left: 0; } }
.module__body-inner ul { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.module__body-inner li { padding-left: 22px; position: relative; }
.module__body-inner li::before { content: '→'; position: absolute; left: 0; color: hsl(var(--primary)); }

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: clamp(40px, 6vw, 80px);
}
@media (max-width: 800px) { .pricing { grid-template-columns: 1fr; } }
.pricing-card {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  background: hsl(var(--muted));
  position: relative;
}
.pricing-card--hot {
  background:
    linear-gradient(160deg, hsla(119 99% 46% / 0.08), transparent 60%),
    hsl(var(--muted));
  border-color: hsla(119 99% 46% / 0.4);
}
.pricing-card__head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}
.pricing-card__tier {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}
.pricing-card__hot-tag {
  padding: 5px 10px;
  border-radius: 4px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pricing-card__price {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(44px, 6vw, 76px);
  letter-spacing: -0.045em;
  line-height: 1;
  margin-top: 24px;
}
.pricing-card__price small {
  font-size: 15px;
  color: hsl(var(--muted-foreground));
  font-weight: 300;
  margin-left: 8px;
  letter-spacing: 0;
}
.pricing-card__list { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.pricing-card__list li { padding-left: 26px; position: relative; color: hsl(var(--muted-foreground)); font-size: 14px; font-weight: 300; }
.pricing-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 14px;
  background: hsl(var(--primary));
  border-radius: 3px;
}

/* Tools grid (courses page) */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: clamp(40px, 6vw, 80px);
}
@media (max-width: 700px) { .tools-grid { grid-template-columns: repeat(2, 1fr); } }
.tool {
  padding: 16px 20px;
  border: 1px solid hsl(var(--border));
  border-radius: 6px;
  background: hsl(var(--muted));
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.tool__dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: hsl(var(--primary));
  flex-shrink: 0;
  box-shadow: 0 0 6px hsl(var(--primary));
}
.tool:hover { border-color: hsl(var(--primary)); transform: translateY(-1px); }

/* Team */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(40px, 6vw, 80px);
}
@media (max-width: 900px) { .team { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .team { grid-template-columns: 1fr; } }
.team-card {
  aspect-ratio: 4/5;
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  background: hsl(var(--muted));
}
.team-card__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, var(--c1, hsla(119 99% 46% / 0.3)), transparent 60%), hsl(var(--muted));
  opacity: 0.7;
}
.team-card__meta { position: absolute; bottom: 24px; left: 24px; right: 24px; z-index: 2; }
.team-card__name {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.team-card__role { font-size: 12px; color: hsl(var(--muted-foreground)); margin-top: 6px; font-weight: 300; }

/* Values */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: hsl(var(--border));
  margin-top: clamp(40px, 6vw, 80px);
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 900px) { .values { grid-template-columns: 1fr; } }
.value {
  background: hsl(var(--background));
  padding: 48px 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.value__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: hsl(var(--primary));
  letter-spacing: 0.14em;
}
.value h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.value p { color: hsl(var(--muted-foreground)); font-size: 14px; line-height: 1.55; font-weight: 300; }

/* Contact form */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: clamp(40px, 6vw, 80px);
}
@media (max-width: 700px) { .form { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 10px; }
.field--full { grid-column: span 2; }
@media (max-width: 700px) { .field--full { grid-column: span 1; } }
.field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}
.field input, .field textarea, .field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid hsl(var(--border));
  padding: 12px 0;
  color: hsl(var(--foreground));
  font: inherit;
  font-size: 16px;
  font-weight: 300;
  transition: border-color 0.3s ease;
  resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: hsl(var(--primary));
}
.field select option { background: hsl(var(--background)); }

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: hsl(var(--hero-bg));
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  overflow: hidden;
}
.preloader__inner span {
  display: inline-block;
  transform: translateY(110%);
}
.preloader__dot {
  width: 10px; height: 10px;
  border-radius: 2px;
  background: hsl(var(--primary));
  transform: scale(0);
  box-shadow: 0 0 16px hsl(var(--primary));
}

/* Utils */
.r-up { opacity: 0; transform: translateY(30px); filter: blur(4px); }
.r-in { opacity: 0; }

.hide-m { }
@media (max-width: 700px) { .hide-m { display: none !important; } }

/* Contact page */
.contact__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; gap: 32px; } }

.form {
  display: flex; flex-direction: column; gap: 20px;
  background: hsla(0 0% 100% / 0.02);
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  padding: 32px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form label {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: hsl(var(--muted-foreground));
}
.form__optional { color: hsl(var(--muted-foreground)); font-weight: 400; font-size: 11px; }
.form input, .form select, .form textarea {
  background: hsl(var(--hero-bg));
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  padding: 14px 16px;
  border-radius: 8px;
  font-family: inherit; font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  background: hsl(0 0% 12%);
}
.form textarea { resize: vertical; min-height: 120px; }
.form button { align-self: flex-start; }
.form__note { color: hsl(var(--muted-foreground)); font-size: 12px; margin-top: -4px; }

.contact__aside { display: flex; flex-direction: column; gap: 16px; }
.contact__card {
  background: hsla(0 0% 100% / 0.02);
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  padding: 24px;
}
.contact__card--accent { background: hsl(var(--primary)); border-color: hsl(var(--primary)); }
.contact__big {
  display: block; color: hsl(var(--foreground));
  font-size: clamp(15px, 1.6vw, 20px); font-weight: 500; margin: 12px 0 6px;
  text-decoration: none; word-break: break-all; line-height: 1.3;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.contact__big:hover {
  color: hsl(var(--primary));
  text-shadow: 0 0 12px hsla(119 99% 46% / 0.35);
}
.contact__link { color: hsl(var(--muted-foreground)); text-decoration: none; font-size: 14px; }
.contact__social { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-direction: column; gap: 8px; }
.contact__social a { color: hsl(var(--foreground)); text-decoration: none; }
.contact__social a:hover { color: hsl(var(--primary)); }

/* Global heading highlight — stronger presence for all major titles */
.page-header__title,
.work__title,
.footer__huge,
.hero__title,
.needs__title,
.academy__title,
.origin__title {
  text-shadow:
    0 1px 28px hsla(0 0% 0% / 0.6),
    0 0 1px hsla(0 0% 100% / 0.08);
}
.accent {
  position: relative;
  color: hsl(var(--primary));
  text-shadow:
    0 0 16px hsla(119 99% 46% / 0.55),
    0 0 32px hsla(119 99% 46% / 0.32),
    0 0 72px hsla(119 99% 46% / 0.18);
}
/* Bold under-shimmer on accent spans in major headings */
.page-header__title .accent::after,
.work__title .accent::after,
.footer__huge .accent::after,
.hero__title .accent::after,
.origin__title .accent::after,
.needs__title .accent::after,
.academy__title .accent::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: 0.02em;
  height: 0.11em;
  background: linear-gradient(90deg, transparent, hsl(var(--primary)) 20%, hsl(var(--primary)) 80%, transparent);
  border-radius: 999px;
  opacity: 0.85;
  filter: blur(0.5px);
  box-shadow: 0 0 18px hsla(119 99% 46% / 0.65);
  animation: accentShimmer 3s ease-in-out infinite;
}
@keyframes accentShimmer {
  0%, 100% { opacity: 0.55; transform: scaleX(0.82); }
  50% { opacity: 1; transform: scaleX(1.04); }
}
/* Smaller eyebrow/section headings get a soft pill-highlight */
.eyebrow {
  position: relative;
  display: inline-block;
  padding-left: 22px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 14px; height: 1.5px;
  background: hsl(var(--primary));
  box-shadow: 0 0 8px hsla(119 99% 46% / 0.7);
  transform: translateY(-50%);
}

/* Origin story */
.origin {
  display: grid; grid-template-columns: 1.1fr 1.4fr; gap: 80px;
  padding: 40px 0 20px; align-items: flex-start;
}
@media (max-width: 900px) { .origin { grid-template-columns: 1fr; gap: 36px; } }
.origin__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 600; letter-spacing: -0.035em;
  line-height: 1.02; margin-top: 18px;
}
.origin__body p {
  color: hsl(var(--muted-foreground));
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55; margin-bottom: 18px; max-width: 56ch;
}
.origin__pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.origin__pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px;
  background: hsla(0 0% 100% / 0.03);
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.02em;
}
.origin__pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: hsl(var(--primary));
  box-shadow: 0 0 10px hsla(119 99% 46% / 0.6);
}

/* Manifesto marquee */
.manifesto {
  overflow: hidden;
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
  padding: 28px 0; margin: 40px 0;
  background: hsla(0 0% 100% / 0.015);
}
.manifesto__track {
  display: flex; align-items: center; gap: 36px;
  white-space: nowrap; font-family: 'Sora', sans-serif;
  font-size: clamp(20px, 2.4vw, 36px); font-weight: 600;
  letter-spacing: -0.02em;
  animation: manifestoScroll 28s linear infinite;
  will-change: transform;
}
.manifesto__track span { color: hsl(var(--foreground)); }
.manifesto__sep {
  color: hsl(var(--primary)) !important;
  font-size: 0.6em; opacity: 0.7;
  text-shadow: 0 0 14px hsla(119 99% 46% / 0.55);
}
@keyframes manifestoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* New-studio promise */
.new-promise { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; margin-top: 56px; align-items: flex-start; }
@media (max-width: 900px) { .new-promise { grid-template-columns: 1fr; gap: 40px; } }
.new-promise__lead p { font-size: 18px; line-height: 1.55; color: hsl(var(--muted-foreground)); margin-bottom: 18px; }
.new-promise__hook { font-size: 24px !important; line-height: 1.35 !important; color: hsl(var(--foreground)) !important; font-weight: 500; padding-bottom: 18px; border-bottom: 1px solid hsl(var(--border)); margin-bottom: 24px !important; }
.new-promise__hook strong { color: hsl(var(--primary)); font-weight: 600; }
.page-header__title--xl { font-size: clamp(56px, 9.5vw, 140px) !important; letter-spacing: -0.035em; line-height: 0.96 !important; }

/* Creative team cards */
.team-lead { max-width: 720px; color: hsl(var(--muted-foreground)); font-size: 18px; line-height: 1.55; margin: 16px 0 48px; }
.team-creative { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .team-creative { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team-creative { grid-template-columns: 1fr; } }
.team-creative__card {
  background: hsla(0 0% 100% / 0.02);
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  padding: 28px 26px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.team-creative__card:hover { border-color: hsla(119 99% 46% / 0.4); transform: translateY(-4px); background: hsla(119 99% 46% / 0.03); }
.team-creative__emoji {
  display: inline-block; font-size: 28px; color: hsl(var(--primary)); margin-bottom: 16px;
  font-family: 'JetBrains Mono', monospace;
}
.team-creative__card h4 { font-size: 20px; font-weight: 600; margin-bottom: 10px; color: hsl(var(--foreground)); }
.team-creative__card p { color: hsl(var(--muted-foreground)); font-size: 14px; line-height: 1.55; }
.new-promise__lead strong { color: hsl(var(--foreground)); font-weight: 600; }
.new-promise__points { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 600px) { .new-promise__points { grid-template-columns: 1fr; } }
.new-promise__point {
  background: hsla(0 0% 100% / 0.02);
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.new-promise__point:hover { border-color: hsla(119 99% 46% / 0.4); transform: translateY(-4px); }
.new-promise__num { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: hsl(var(--primary)); letter-spacing: 0.08em; }
.new-promise__point h4 { font-size: 19px; font-weight: 600; margin: 12px 0 8px; color: hsl(var(--foreground)); }
.new-promise__point p { color: hsl(var(--muted-foreground)); font-size: 14px; line-height: 1.55; }

/* Explanatory service detail blocks on services page */
.svc-detail {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px;
  padding: 80px 0; border-top: 1px solid hsl(var(--border));
  align-items: flex-start;
}
@media (max-width: 900px) { .svc-detail { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; } }
.svc-detail__num { font-family: 'JetBrains Mono', monospace; color: hsl(var(--primary)); font-size: 13px; letter-spacing: 0.1em; }
.svc-detail__title { font-size: clamp(32px, 4vw, 48px); font-weight: 600; letter-spacing: -0.02em; margin: 16px 0 20px; line-height: 1.05; }
.svc-detail__lead { color: hsl(var(--muted-foreground)); font-size: 17px; line-height: 1.6; margin-bottom: 24px; }
.svc-detail__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.svc-detail__list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px;
  background: hsla(0 0% 100% / 0.02);
  border: 1px solid hsl(var(--border));
  border-radius: 10px;
  color: hsl(var(--foreground)); font-size: 14px; line-height: 1.5;
}
.svc-detail__list li strong { color: hsl(var(--primary)); font-weight: 500; }
.svc-detail__tick {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: hsla(119 99% 46% / 0.15); border: 1px solid hsla(119 99% 46% / 0.5);
  display: flex; align-items: center; justify-content: center;
  color: hsl(var(--primary)); font-size: 11px; font-weight: 700;
  margin-top: 2px;
}
