/* START GROW FAST AI AGENTS — styles */

:root {
  --bg: #0a0a0b;
  --bg-2: #0f0f12;
  --surface: #141418;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --fg: #f5f5f7;
  --fg-dim: rgba(245,245,247,0.62);
  --fg-dimmer: rgba(245,245,247,0.4);
  --accent: #0891B2;
  --accent-2: #22D3EE;
  --accent-deep: #164E63;
  --warn: #FF4D2E;
  --ok: #22d98a;
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1440px;
  --pad: clamp(20px, 4vw, 56px);
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --display: "Inter", Helvetica, sans-serif;
  --serif: "Instrument Serif", "Playfair Display", "Times New Roman", serif;
}

:root[data-theme="editorial"] {
  --bg: #ece9e2;
  --bg-2: #e3dfd6;
  --surface: #ffffff;
  --line: rgba(10,10,11,0.1);
  --line-2: rgba(10,10,11,0.2);
  --fg: #0a0a0b;
  --fg-dim: rgba(10,10,11,0.62);
  --fg-dimmer: rgba(10,10,11,0.4);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body { scroll-behavior: smooth; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

img { max-width: 100%; display: block; }

::selection { background: var(--accent); color: #fff; }

/* Typography */
.h-display {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-wrap: balance;
}

.h-display.italic-part em {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.mono {
  font-family: var(--mono);
  letter-spacing: 0.02em;
  font-size: 11px;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--accent);
}

/* Layout */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

section {
  padding: clamp(80px, 10vw, 160px) 0;
  position: relative;
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 64px;
  align-items: end;
}

.section-header .side { display: flex; flex-direction: column; gap: 12px; }

.section-header h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 72px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}

.section-header p {
  color: var(--fg-dim);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.45;
  max-width: 52ch;
  margin: 0;
}

@media (max-width: 860px) {
  .section-header { grid-template-columns: 1fr; gap: 20px; }
}

/* Nav */
.nav {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.nav-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 16px;
  background: rgba(10,10,11,0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  max-width: calc(100vw - 28px);
}

:root[data-theme="editorial"] .nav-inner {
  background: rgba(236,233,226,0.78);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.01em;
  padding-right: 10px;
  border-right: 1px solid var(--line);
  margin-right: 4px;
  white-space: nowrap;
}

.nav-logo img { height: 22px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  padding: 8px 12px;
  font-size: 13px;
  color: var(--fg-dim);
  border-radius: 999px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

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

.nav-right { display: flex; align-items: center; gap: 6px; margin-left: 4px; }

.lang-toggle {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--fg-dim);
  border-radius: 999px;
  padding: 6px 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  display: inline-flex;
  gap: 6px;
}

.lang-toggle span { padding: 2px 4px; border-radius: 6px; }
.lang-toggle .active { background: var(--fg); color: var(--bg); }

.nav-cta {
  background: var(--fg);
  color: var(--bg);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform .2s, background .2s;
}
.nav-cta:hover { transform: translateY(-1px); }
.nav-cta svg { width: 12px; height: 12px; }

@media (max-width: 920px) {
  .nav-links { display: none; }
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  padding: 120px 0 60px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 20%, transparent 78%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 80vw;
  max-width: 1200px;
  max-height: 1200px;
  background: radial-gradient(circle at center, rgba(8,145,178,0.32), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  align-items: center;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(34,217,138,0.15);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-marquee-pre {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-marquee-pre::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero-headline {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(44px, 9vw, 148px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin: 28px 0 0;
  text-wrap: balance;
}

.hero-headline .pre {
  display: block;
  color: var(--fg-dim);
  font-weight: 500;
}

.hero-headline .main {
  display: block;
  background: linear-gradient(180deg, var(--fg) 0%, var(--fg) 60%, rgba(245,245,247,0.5) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-headline .accent {
  color: var(--accent);
  background: none;
  -webkit-text-fill-color: var(--accent);
}

.hero-bottom {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: end;
}

.hero-sub {
  color: var(--fg-dim);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.45;
  max-width: 56ch;
  margin: 0 0 28px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .2s, color .2s, border-color .2s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 40px -12px rgba(8,145,178,0.7);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--accent-2); }

.btn-secondary {
  background: transparent;
  color: var(--fg);
  border-color: var(--line-2);
}
.btn-secondary:hover { background: rgba(255,255,255,0.05); border-color: var(--fg); }

.btn-primary svg, .btn-secondary svg, .btn-ghost svg { width: 16px; height: 16px; }

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.hero-metrics .m {
  padding: 20px 16px 0 0;
  border-right: 1px solid var(--line);
}
.hero-metrics .m:last-child { border-right: none; }

.hero-metrics .n {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-metrics .l {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-top: 8px;
}

@media (max-width: 860px) {
  .hero-bottom { grid-template-columns: 1fr; gap: 36px; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); }
  .hero-metrics .m:nth-child(2) { border-right: none; }
}

/* Hero variant arrows visual */
.hero-arrows {
  position: absolute;
  right: -5%;
  top: 18%;
  width: 55vw;
  height: 70vh;
  pointer-events: none;
  opacity: 0.12;
  z-index: 1;
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  background: var(--bg-2);
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 56px;
  padding-left: 56px;
  animation: marquee 40s linear infinite;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 38px);
  letter-spacing: -0.02em;
}

.marquee-track span { display: inline-flex; align-items: center; gap: 56px; color: var(--fg); }
.marquee-track .dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

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

/* Logos grid (communities / tools) */
.logos-band { padding: clamp(64px, 8vw, 120px) 0; border-top: 1px solid var(--line); }

.logos-band .section-header { margin-bottom: 40px; }

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.logo-cell {
  aspect-ratio: 3 / 1;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: var(--fg-dim);
  transition: color .25s, background .25s;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(14px, 1.4vw, 20px);
  letter-spacing: -0.01em;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.logo-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(8,145,178,0.12) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}

.logo-cell:hover { color: var(--fg); background: rgba(255,255,255,0.03); }
.logo-cell:hover::after { transform: translateX(100%); }

@media (max-width: 860px) {
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Services / value ladder */
.services { background: var(--bg); border-top: 1px solid var(--line); }

.ladder {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.ladder-row {
  display: grid;
  grid-template-columns: 56px 90px 1.1fr 2fr 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  border-left: 3px solid transparent;
  padding-left: 16px;
  align-items: center;
  transition: background .35s, border-color .35s, box-shadow .35s;
  cursor: default;
  position: relative;
}
.ladder-row:hover {
  border-left-color: var(--srv-color, var(--accent));
  background: rgba(255,255,255,0.012);
  box-shadow: inset 3px 0 32px -20px var(--srv-color, var(--accent));
}

/* Service icon column */
.srv-icon-col {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity .35s, transform .35s;
}
.srv-icon-col svg { width: 48px; height: 48px; }
.ladder-row:hover .srv-icon-col { opacity: 1; transform: scale(1.08); }

.ladder-row .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--srv-color, var(--fg-dimmer));
  padding-top: 0;
  opacity: 0.7;
  transition: opacity .3s;
}
.ladder-row:hover .tag { opacity: 1; }

.ladder-row .name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(24px, 2.8vw, 38px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 10px;
}

.ladder-row .promise {
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.45;
  margin: 0;
  max-width: 40ch;
}

.ladder-row ul {
  list-style: none;
  margin: 0;
  padding: 6px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.ladder-row li {
  font-size: 14px;
  color: var(--fg-dim);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}

.ladder-row li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--mono);
}

.ladder-row .price-block { text-align: right; }
.ladder-row .price {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.ladder-row .cycle {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dimmer);
  margin-top: 6px;
}

@media (max-width: 980px) {
  .ladder-row { grid-template-columns: 1fr; gap: 14px; padding: 28px 0; padding-left: 20px; }
  .ladder-row .price-block { text-align: left; }
  .srv-icon-col { display: none; }
}

/* How it works */
.how { background: var(--bg-2); border-top: 1px solid var(--line); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.step-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .3s;
  position: relative;
  overflow: hidden;
}

.step-card:hover { background: rgba(255,255,255,0.02); }

.step-card .n {
  font-family: var(--display);
  font-weight: 500;
  font-size: 48px;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}

.step-card .t {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

.step-card .d {
  color: var(--fg-dim);
  font-size: 14.5px;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 860px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* Niches */
.niches { background: var(--bg); }

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

.niche-card {
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.niche-card:hover {
  background: #0891B2 !important;
  color: #ffffff !important;
  transform: translateY(-6px) scale(1.02) !important;
  border-color: #0891B2 !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}
.niche-card:hover .num,
.niche-card:hover .t,
.niche-card:hover .d {
  color: #ffffff !important;
}
.niche-card:hover svg {
  color: #ffffff !important;
}

.niche-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(8,145,178,0.1), transparent 50%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}

.niche-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.niche-card:hover::before { opacity: 1; }

.niche-card .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--fg-dimmer);
}

.niche-card .t {
  font-family: var(--display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 8px 0 12px;
}

.niche-card .d {
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 860px) { .niches-grid { grid-template-columns: 1fr; } }

/* Cases */
.cases { background: var(--bg-2); border-top: 1px solid var(--line); }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.case-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
  transition: all 0.4s ease !important;
}
.case-card:hover {
  background: rgba(8, 145, 178, 0.15) !important;
  border-color: rgba(8, 145, 178, 0.5) !important;
  box-shadow: 0 0 30px rgba(8, 145, 178, 0.2) !important;
}

.case-svg-wrap svg {
  width: 100%;
  height: 100%;
}

.case-card .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.case-card .r {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(44px, 5vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
  margin: auto 0 0;
}

.case-card .l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.case-card .d {
  color: var(--fg-dim);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) { .cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cases-grid { grid-template-columns: 1fr; } }

/* Manifesto */
.manifesto {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.manifesto-lines {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(36px, 6vw, 96px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.manifesto-line {
  display: block;
  color: var(--fg-dimmer);
  transition: color .5s;
  padding: 2px 0;
  text-wrap: balance;
}

.manifesto-line.on { color: var(--fg); }
.manifesto-line.accent { color: var(--accent); }

.manifesto-sub {
  margin-top: 40px;
  color: var(--fg-dim);
  font-size: clamp(16px, 1.4vw, 20px);
  max-width: 52ch;
  line-height: 1.5;
}

/* Showcase */
.showcase { background: var(--bg); border-top: 1px solid var(--line); }

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

.show-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  aspect-ratio: 4/5;
  position: relative;
  display: flex;
  align-items: flex-end;
  transition: transform .3s;
}

.show-card[data-r="9/16"] { aspect-ratio: 9/16; }
.show-card[data-r="1/1"] { aspect-ratio: 1/1; }
.show-card[data-r="16/9"] { aspect-ratio: 16/9; grid-column: span 2; }

.show-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 14px);
}

.show-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(8,145,178,0.12), transparent 60%);
}

.show-card:hover { transform: scale(1.01); }

.show-card .meta {
  position: relative;
  z-index: 1;
  padding: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6));
}

.show-card .t {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.show-card .f {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

@media (max-width: 980px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .show-card[data-r="16/9"] { grid-column: span 2; }
}

/* FAQ */
.faq { background: var(--bg-2); border-top: 1px solid var(--line); }

.faq-list { border-top: 1px solid var(--line); }

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--fg);
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  cursor: pointer;
}

.faq-q .plus {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: background .3s, border-color .3s;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--fg);
  transform: translate(-50%, -50%);
  transition: transform .3s;
}
.faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-q .plus { background: var(--accent); border-color: var(--accent); }
.faq-item.open .faq-q .plus::after { transform: translate(-50%, -50%) rotate(0); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .5s cubic-bezier(.2,.8,.2,1);
}
.faq-a-inner {
  padding: 0 0 28px;
  color: var(--fg-dim);
  font-size: 16px;
  line-height: 1.55;
  max-width: 60ch;
}
.faq-item.open .faq-a { max-height: 400px; }

/* Blog */
.blog { background: var(--bg); border-top: 1px solid var(--line); }

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

.blog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .3s, border-color .3s;
}

.blog-card:hover { transform: translateY(-4px); border-color: var(--line-2); }

.blog-card .img {
  aspect-ratio: 4/3;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 14px);
  background-color: var(--bg-2);
  border-bottom: 1px solid var(--line);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.blog-card .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(8,145,178,0.18), transparent 60%);
}

.blog-card .tag {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(10,10,11,0.5);
  backdrop-filter: blur(8px);
}

.blog-card .body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
}

.blog-card .d { color: var(--fg-dim); font-size: 14px; line-height: 1.5; margin: 0; }

.blog-card .foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

@media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr; } }

/* Contact */
.contact { background: var(--bg-2); border-top: 1px solid var(--line); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-left h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 64px);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 12px 0 18px;
  text-wrap: balance;
}

.contact-left .sub { color: var(--fg-dim); font-size: 17px; line-height: 1.5; max-width: 48ch; }

.contact-channels {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.contact-channels .row {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-channels .row .k { color: var(--fg-dim); }

.contact-cal {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fg);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 4px;
  font-size: 15px;
}
.contact-cal:hover { border-bottom-color: var(--accent); color: var(--accent); }

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.field input, .field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--fg);
  padding: 14px;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { min-height: 120px; resize: vertical; }

.form-submit {
  margin-top: 8px;
  background: var(--fg);
  color: var(--bg);
  border: none;
  padding: 16px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .2s, background .2s;
}
.form-submit:hover { transform: translateY(-1px); background: var(--accent); color: #fff; }

@media (max-width: 980px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .form .row2 { grid-template-columns: 1fr; }
}

/* Big CTA block */
.big-cta {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.big-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(8,145,178,0.22), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(8,145,178,0.12), transparent 50%);
  pointer-events: none;
}
.big-cta-inner {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
  text-align: center;
}
.big-cta h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(48px, 10vw, 160px);
  letter-spacing: -0.05em;
  line-height: 0.88;
  margin: 0 auto;
  max-width: 14ch;
  text-wrap: balance;
}
.big-cta h2 em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.big-cta p { color: var(--fg-dim); margin: 24px auto 32px; max-width: 52ch; font-size: 17px; line-height: 1.5; }

/* Footer */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
}

.footer.footer-white {
  background: #ffffff !important;
  color: #0a0a0b !important;
  border-top: 1px solid rgba(10,10,11,0.06);
}

.footer.footer-white .footer-logo p {
  color: rgba(10,10,11,0.65);
}

.footer.footer-white .footer-col h4 {
  color: rgba(10,10,11,0.42);
}

.footer.footer-white .footer-col a {
  color: rgba(10,10,11,0.7);
}

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

.footer.footer-white .footer-bottom {
  border-top: 1px solid rgba(10,10,11,0.06);
  color: rgba(10,10,11,0.42);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo img { height: 160px; width: auto; object-fit: contain; }
.footer-logo p { color: var(--fg-dim); font-size: 14px; line-height: 1.5; max-width: 32ch; }

.footer-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin: 0 0 14px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  padding: 4px 0;
  color: var(--fg);
  font-size: 14px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* Reveal animation on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1); }
.reveal.on { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* Scroll-driven rotating cursor ring (decor) */
.spin-ring {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  box-shadow: 0 14px 40px -10px rgba(8,145,178,0.6);
  transition: transform .3s;
}
.spin-ring:hover { transform: scale(1.07); }
.spin-ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 12s linear infinite;
}
.spin-ring .core {
  position: relative;
  width: 20px; height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 640px) {
  .spin-ring { width: 76px; height: 76px; right: 16px; bottom: 16px; }
}

/* Section divider label */
.section-index {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* Utility */
.row { display: flex; align-items: center; gap: 12px; }
.flex-end { justify-content: flex-end; }

/* ============================================================
   v2 — Premium hero, alternating sections, new components
   ============================================================ */

/* Alternating section backgrounds: dark / light / dark / light */
:root {
  --bg-light: #f3f1ea;
  --bg-light-2: #e9e6de;
  --fg-on-light: #0a0a0b;
  --fg-dim-on-light: rgba(10,10,11,0.65);
  --fg-dimmer-on-light: rgba(10,10,11,0.42);
  --line-on-light: rgba(10,10,11,0.1);
  --line-2-on-light: rgba(10,10,11,0.2);
}

/* Invert section (light card inside dark site) */
.section-invert {
  background: var(--bg-light) !important;
  color: var(--fg-on-light);
}
.section-invert .eyebrow { color: var(--fg-dim-on-light); }
.section-invert .section-header h2,
.section-invert h2,
.section-invert h3,
.section-invert h4 { color: var(--fg-on-light); }
.section-invert .section-header p,
.section-invert p { color: var(--fg-dim-on-light); }
.section-invert .section-index { color: var(--fg-dim-on-light); border-bottom-color: var(--line-on-light); }

/* Alternate: services = light */
.services.section-invert { border-top: 1px solid var(--line-on-light); }
.services.section-invert .ladder { border-top-color: var(--line-on-light); }
.services.section-invert .ladder-row { border-bottom-color: var(--line-on-light); }
.services.section-invert .ladder-row:hover { background: var(--srv-color) !important; }
.services.section-invert .ladder-row .tag { color: var(--fg-dimmer-on-light); }
.services.section-invert .ladder-row .promise { color: var(--fg-dim-on-light); }
.services.section-invert .ladder-row li { color: var(--fg-dim-on-light); }

/* Niches = light */
.niches.section-invert { border-top: 1px solid var(--line-on-light); background: var(--bg-light); }
.niches.section-invert .niche-card {
  background: #fff;
  border-color: var(--line-on-light);
}
.niches.section-invert .niche-card .num { color: var(--fg-dimmer-on-light); }
.niches.section-invert .niche-card .d { color: var(--fg-dim-on-light); }
.niches.section-invert .niche-card:hover { border-color: var(--line-2-on-light); }

/* Showcase = light */
.showcase.section-invert { border-top: 1px solid var(--line-on-light); background: var(--bg-light-2); }
.showcase.section-invert .show-card {
  background: #fff;
  border-color: var(--line-on-light);
}
.showcase.section-invert .show-card .f { color: var(--fg-dim-on-light); }
.showcase.section-invert .show-card .meta { background: linear-gradient(180deg, transparent, rgba(0,0,0,0.18)); color: var(--fg-on-light); }

/* Blog = light */
.blog.section-invert { border-top: 1px solid var(--line-on-light); background: var(--bg-light); }
.blog.section-invert .blog-card {
  background: #fff;
  border-color: var(--line-on-light);
}
.blog.section-invert .blog-card .img { background-color: var(--bg-light-2); border-bottom-color: var(--line-on-light); }
.blog.section-invert .blog-card .d { color: var(--fg-dim-on-light); }
.blog.section-invert .blog-card .foot { color: var(--fg-dim-on-light); border-top-color: var(--line-on-light); }
.blog.section-invert .blog-card .tag { background: rgba(10,10,11,0.05); color: var(--fg-on-light); border-color: var(--line-on-light); }

/* ============ PREMIUM HERO ============ */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 25% 30%, color-mix(in srgb, var(--accent) 35%, transparent), transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(6, 182, 212, 0.22), transparent 70%),
    radial-gradient(ellipse 70% 60% at 50% 100%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: aurora 18s ease-in-out infinite alternate;
}

@keyframes aurora {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(3%, -2%) scale(1.08); }
  100% { transform: translate(-2%, 2%) scale(0.96); }
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.hero-grid-new {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 0%, transparent 80%);
  pointer-events: none;
}

:root[data-theme="editorial"] .hero-grid-new {
  background-image:
    linear-gradient(rgba(10,10,11,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,11,0.06) 1px, transparent 1px);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin: 0 auto 36px;
}
.hero-eyebrow .eyebrow-sep { opacity: 0.4; }
.hero-eyebrow .eyebrow-aux { color: var(--fg-dimmer); }

.hero-headline-new {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 auto;
  max-width: 20ch;
  text-wrap: balance;
}

.hero-headline-new .pre {
  display: block;
  color: var(--fg-dim);
  font-weight: 500;
  font-size: 0.55em;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  font-family: var(--sans);
  line-height: 1.3;
}

.hero-headline-new .main {
  display: block;
}

.hero-headline-new .gradient-text {
  background: linear-gradient(180deg, var(--fg) 0%, var(--fg) 55%, color-mix(in srgb, var(--fg) 55%, transparent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-headline-new .accent.italic {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, var(--accent), color-mix(in srgb, var(--accent) 70%, #fff 30%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding-right: 0.05em;
}

.hero-sub-new {
  color: var(--fg-dim);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.45;
  max-width: 58ch;
  margin: 36px auto 0;
  text-wrap: pretty;
}

.hero-cycle {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  font-family: var(--display);
  font-size: 18px;
}
.hero-cycle .cycle-label { color: var(--fg-dim); font-size: 11px; }

.text-cycle {
  position: relative;
  display: inline-block;
  min-width: 150px;
  height: 1.3em;
  vertical-align: middle;
  overflow: hidden;
  text-align: left;
}

.text-cycle .tc-word {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .6s cubic-bezier(.2,.8,.2,1), transform .6s cubic-bezier(.2,.8,.2,1);
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}
.text-cycle .tc-word.on {
  opacity: 1;
  transform: translateY(0);
}

.hero .hero-ctas {
  margin-top: 44px;
  justify-content: center;
}

.hero-metrics-new {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  max-width: 960px;
  border-top: 1px solid var(--line);
}
.hero-metrics-new .m {
  padding: 22px 16px 0;
  border-right: 1px solid var(--line);
  text-align: center;
}
.hero-metrics-new .m:last-child { border-right: none; }
.hero-metrics-new .n {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-metrics-new .l {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-top: 8px;
}

@media (max-width: 860px) {
  .hero-metrics-new { grid-template-columns: repeat(2, 1fr); }
  .hero-metrics-new .m:nth-child(2) { border-right: none; }
}

.hero-bottom-bar {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  padding: 0 var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--fg-dim);
  font-size: 10px;
  z-index: 3;
}
.hero-bottom-bar-center {
  flex: 1;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  color: var(--fg-dimmer);
}

/* Sparkles */
.sparkles { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.sparkles .spark {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  animation: twinkle linear infinite;
  box-shadow: 0 0 6px rgba(255,255,255,0.8);
}
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 0.9; transform: scale(1); }
}

/* Shine on primary button */
.btn-primary.shiny-wrap {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary.shiny-wrap .shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shine 3.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shine {
  0% { left: -60%; }
  60% { left: 130%; }
  100% { left: 130%; }
}

/* ============ Services ladder: cycle-block (no prices) ============ */
.ladder-row {
  grid-template-columns: 90px 1.2fr 2fr 1fr;
}
.ladder-row .cycle-block {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.ladder-row .cycle-block .cycle-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dimmer);
}
.services.section-invert .ladder-row .cycle-block .cycle-label { color: var(--fg-dimmer-on-light); }

.ladder-row .cycle-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 12px;
  color: var(--fg);
  transition: background .2s, border-color .2s, color .2s;
}
.ladder-row .cycle-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.services.section-invert .ladder-row .cycle-cta {
  border-color: var(--line-2-on-light);
  color: var(--fg-on-light);
}
.services.section-invert .ladder-row .cycle-cta:hover { color: #fff; }

.ladder-footnote {
  margin-top: 28px;
  color: var(--fg-dim);
  font-size: 13.5px;
  font-family: var(--mono);
  letter-spacing: 0.02em;
  text-transform: none;
  max-width: 72ch;
  line-height: 1.5;
}
.services.section-invert .ladder-footnote { color: var(--fg-dim-on-light); }

@media (max-width: 980px) {
  .ladder-row .cycle-block { text-align: left; align-items: flex-start; }
}

/* ============ Orbital timeline ============ */
.orbital {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 32px 0;
  position: relative;
}
.orbital-rail {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0 32px;
}
.orbital-rail::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.orbital-line {
  position: absolute;
  top: 22px;
  left: 22px;
  width: calc(100% - 44px);
  height: 1px;
  background: var(--accent);
  transform: scaleX(var(--prog, 0%));
  transform-origin: left;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  z-index: 1;
}
.orbital-node {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0;
  cursor: pointer;
  flex: 1;
}
.orbital-node::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--line-2);
  transition: border-color .3s, background .3s, transform .3s;
}
.orbital-node.on::before {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 25%, transparent);
}
.orbital-node-n {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--fg-dimmer);
  margin-top: 4px;
}
.orbital-node.on .orbital-node-n { color: var(--accent); }
.orbital-node-t {
  font-family: var(--display);
  font-size: 12px;
  color: var(--fg-dim);
  text-align: center;
  max-width: 14ch;
  line-height: 1.2;
}
.orbital-node.on .orbital-node-t { color: var(--fg); }

.orbital-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  min-height: 220px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.orbital-panel::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 20%, transparent), transparent 60%);
  pointer-events: none;
}
.orbital-num {
  font-family: var(--display);
  font-size: clamp(60px, 8vw, 120px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
}
.orbital-panel h3 {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 16px;
}
.orbital-panel p {
  color: var(--fg-dim);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  max-width: 52ch;
}

.steps-grid-alt { margin-top: 48px; }

@media (max-width: 860px) {
  .orbital-rail { overflow-x: auto; padding-bottom: 24px; }
  .orbital-node { min-width: 96px; }
  .orbital-panel { grid-template-columns: 1fr; padding: 28px; }
}

/* ============ Testimonials ============ */
.testimonials {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: clamp(80px, 10vw, 140px) 0;
}
.testimonial-stage {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  padding: 60px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
}
.t-quote {
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 240px;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
}
.t-track {
  display: flex;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.t-slide {
  min-width: 100%;
  padding: 0 20px;
}
.t-slide blockquote {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.t-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.t-meta .who { color: var(--fg); }
.t-dots {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--line-2);
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0;
}
.t-dot.on { background: var(--accent); transform: scale(1.25); }

/* ============ Preloader ============ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity .5s ease, transform .5s ease;
}
.preloader.out { opacity: 0; pointer-events: none; transform: translateY(-10px); }
.preloader-mark {
  display: flex;
  gap: 16px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 6vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1;
}
.preloader-row {
  opacity: 0;
  transform: translateY(20px);
  animation: pl-in .5s cubic-bezier(.2,.8,.2,1) forwards;
}
.preloader-row:nth-child(1) { animation-delay: .05s; }
.preloader-row:nth-child(2) { animation-delay: .2s; color: var(--accent); }
.preloader-row:nth-child(3) { animation-delay: .35s; }
@keyframes pl-in {
  to { opacity: 1; transform: translateY(0); }
}
.preloader-bar {
  width: 140px;
  height: 2px;
  background: var(--line);
  overflow: hidden;
  border-radius: 1px;
}
.preloader-bar span {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--accent);
  animation: pl-slide 1.1s cubic-bezier(.6,0,.4,1) forwards;
}
@keyframes pl-slide {
  0% { transform: translateX(-100%); width: 40%; }
  60% { width: 60%; }
  100% { transform: translateX(250%); width: 40%; }
}

/* Hide spin ring during preloader */
.preloader ~ .spin-ring { display: none; }

/* Scrolled nav (slight shrink) */
.nav.scrolled .nav-inner { padding-top: 6px; padding-bottom: 6px; }

/* ============================================================
   v3 — Teal palette, real communities, clickable cells
   ============================================================ */

/* Clickable community cells */
a.logo-cell-link {
  text-decoration: none;
  cursor: pointer;
}
a.logo-cell-link:hover {
  color: var(--fg);
  background: rgba(8,145,178,0.07);
  border-color: var(--accent);
}
a.logo-cell-link::before {
  content: "↗";
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 11px;
  opacity: 0;
  transition: opacity .25s;
  color: var(--accent);
  font-family: var(--mono);
}
a.logo-cell-link:hover::before { opacity: 1; }

/* Teal btn primary shadow override */
.btn-primary {
  box-shadow: 0 10px 40px -12px rgba(8,145,178,0.65);
}
.btn-primary:hover {
  background: var(--accent-2);
  box-shadow: 0 14px 48px -12px rgba(8,145,178,0.8);
}

/* Spin ring teal */
.spin-ring {
  box-shadow: 0 14px 40px -10px rgba(8,145,178,0.55);
}

/* Hero bottom bar subtle teal line */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

/* Form submit teal hover */
.form-submit:hover { background: var(--accent); }

/* Orbital active node teal glow */
.orbital-node.on::before {
  box-shadow: 0 0 0 6px rgba(8,145,178,0.25);
}

/* Section index eyebrow teal dot */
.eyebrow::before { background: var(--accent); }

/* Disabled form button */
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* ============ Founder / About section ============ */
.founder {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: clamp(80px, 10vw, 140px) 0;
}
.founder-wrap {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 72px;
  align-items: center;
}
.founder-photo-col {
  position: relative;
}
.founder-photo-frame {
  position: relative;
  overflow: visible;
  border: none !important;
  background: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  padding: 0;
}
.founder-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,11,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.founder-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.founder-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}
.founder-role {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.founder-bio {
  color: var(--fg-dim);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  max-width: 56ch;
  margin: 8px 0 0;
}
.founder-communities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.founder-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.founder-badge:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(8,145,178,0.06);
}
@media (max-width: 980px) {
  .founder-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .founder-photo-frame {
    max-width: 360px;
    aspect-ratio: auto;
  }
}


/* ============================================================
   v4 — Community cards, animated SVGs, Lenis, GSAP, Barba
   ============================================================ */

/* ---- Community section — Hall of Fame ---- */
.logos-band-community { background: var(--bg); }

/* HOF section header */
.hof-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 32px;
}
.hof-header-left { display: flex; flex-direction: column; gap: 12px; }
.hof-eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  opacity: 0.7;
}
.hof-title {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}
.hof-sub {
  max-width: 360px;
  font-size: clamp(13px, 1vw, 15px);
  color: var(--muted);
  line-height: 1.6;
  text-align: right;
}
@media (max-width: 768px) {
  .hof-header { flex-direction: column; align-items: flex-start; gap: 16px; padding-bottom: 24px; margin-bottom: 32px; }
  .hof-sub { text-align: left; max-width: 100%; }
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Card shell */
.community-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #0a0a0b;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s, border-color .35s;
}
.community-card:hover {
  transform: translateY(-7px) scale(1.01);
  border-color: rgba(255,255,255,0.13);
  box-shadow: 0 24px 60px -20px var(--accent, #0891B2);
}

/* Thumbnail image */
.community-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}
.community-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.community-card:hover .community-card-img img { transform: scale(1.06); }

/* Bottom fade so image bleeds into card body */
.community-card-img-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, #0a0a0b 0%, transparent 100%);
  pointer-events: none;
}

/* Text body */
.community-card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.community-card-sub {
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent, #0891B2);
  opacity: 0.85;
  line-height: 1;
}
.community-card-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(13px, 1.05vw, 16px);
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.community-card-focus {
  font-size: 10.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
  margin-top: 1px;
}

/* Mastered skill tags */
.community-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 10px;
}
.community-tag {
  font-size: 8.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  transition: background .2s, border-color .2s, color .2s;
}
.community-card:hover .community-tag {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.8);
}

/* Accent glow bar at bottom */
.community-card-glow-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent, #0891B2);
  opacity: 0.35;
  transition: opacity .35s;
}
.community-card:hover .community-card-glow-line { opacity: 0.9; }

@media (max-width: 1200px) { .community-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 960px)  { .community-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .community-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
@media (max-width: 400px)  { .community-grid { grid-template-columns: 1fr; } }

/* ---- Circuit SVG ---- */
.circuit-svg {
  position: absolute;
  right: -8%;
  top: 10%;
  width: 65vw;
  max-width: 900px;
  height: auto;
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}

@keyframes cnode-pulse {
  0%, 100% { opacity: 0.9; r: 4.5px; }
  50% { opacity: 0.4; r: 3px; }
}
@keyframes cpulse-ring {
  0% { r: 10px; opacity: 0.4; }
  100% { r: 22px; opacity: 0; }
}
.cnode { animation: cnode-pulse 2.5s ease-in-out infinite; }
.cpulse { animation: cpulse-ring 2.5s ease-out infinite; }

/* ---- Corner marks ---- */
.corner-mark {
  position: absolute;
  z-index: 4;
  opacity: 0.6;
  pointer-events: none;
}
.corner-mark-tl { top: 20px; left: 20px; }
.corner-mark-tr { top: 20px; right: 20px; transform: scaleX(-1); }
.corner-mark-bl { bottom: 60px; left: 20px; transform: scaleY(-1); }
.corner-mark-br { bottom: 60px; right: 20px; transform: scale(-1); }

@keyframes corner-in {
  from { opacity: 0; stroke-dashoffset: 48; }
  to { opacity: 1; stroke-dashoffset: 0; }
}
.corner-line {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: corner-in 1s cubic-bezier(.2,.8,.2,1) forwards;
}
.corner-mark-tl .corner-line { animation-delay: .3s; }
.corner-mark-tr .corner-line { animation-delay: .4s; }
.corner-mark-bl .corner-line { animation-delay: .5s; }
.corner-mark-br .corner-line { animation-delay: .6s; }

.corner-dot {
  animation: cnode-pulse 3s ease-in-out infinite;
}

/* ---- Machine SVG (used in How section or standalone) ---- */
.machine-svg {
  width: 180px;
  height: 180px;
  opacity: 0.6;
  position: absolute;
  right: var(--pad);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* ---- GSAP-powered metric counter style ---- */
.metric-counter {
  transition: color .3s;
}

/* ---- Barba.js page transition ---- */
.barba-leave-active, .barba-enter-active {
  transition: opacity 0.45s cubic-bezier(.2,.8,.2,1), transform 0.45s cubic-bezier(.2,.8,.2,1);
}
.barba-leave-to { opacity: 0; transform: translateY(-12px); }
.barba-enter-from { opacity: 0; transform: translateY(12px); }

/* ---- Lenis body scroll-behavior override ---- */
html.lenis { height: auto; }
html.lenis body { overflow: auto; }

/* ---- How section decoration ---- */
.how { position: relative; }
.how .machine-svg { display: none; }
@media (min-width: 1280px) {
  .how .machine-svg { display: block; }
}

/* ---- Animated gradient border on niche cards ---- */
.niche-card {
  background: var(--surface);
  position: relative;
}
.niche-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(8,145,178,0.3) 60%, transparent 80%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.niche-card:hover::after { opacity: 1; }

/* ---- Step card animated number ---- */
.step-card .n {
  font-size: 56px;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(8,145,178,0.4);
  color: transparent;
  transition: color .3s, -webkit-text-stroke .3s;
}
.step-card:hover .n {
  color: var(--accent);
  -webkit-text-stroke: 1px var(--accent);
}

/* ---- Testimonial glow ---- */
.testimonial-stage::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(8,145,178,0.4), transparent 50%, rgba(8,145,178,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ---- Section transition indicator ---- */
.section-divider-svg {
  display: block;
  width: 100%;
  height: 2px;
  overflow: visible;
}
.section-divider-line {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: divider-draw 1.5s ease forwards;
}
@keyframes divider-draw {
  to { stroke-dashoffset: 0; }
}

/* ============================================================
   v5 — Globe Preloader, Hormozi Section, Shader Section
   ============================================================ */

/* ---- Globe Preloader ---- */
.globe-preloader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: #060810;
}

.globe-scene {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-canvas {
  position: relative;
  z-index: 2;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(8,145,178,0.3),
    0 0 40px rgba(8,145,178,0.2),
    0 0 80px rgba(8,145,178,0.08);
}

/* Whirl rings */
.globe-whirl-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(8,145,178,0.15);
  animation: whirl-spin 8s linear infinite;
}
.globe-whirl-ring::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: rgba(8,145,178,0.7);
  border-right-color: rgba(34,211,238,0.4);
  animation: whirl-spin 2.5s linear infinite;
}
.globe-whirl-ring-2 {
  inset: -38px;
  border-color: rgba(8,145,178,0.08);
  animation-duration: 14s;
  animation-direction: reverse;
}
.globe-whirl-ring-2::before {
  border-top-color: rgba(34,211,238,0.4);
  animation-duration: 4s;
  animation-direction: reverse;
}

@keyframes whirl-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Orbiting dots */
.globe-whirl-dots {
  position: absolute;
  inset: -54px;
  border-radius: 50%;
  animation: whirl-spin 10s linear infinite;
}
.globe-wdot {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  box-shadow: 0 0 8px rgba(8,145,178,0.8);
  transform:
    rotate(calc(var(--i) * (360deg / var(--n))))
    translateX(calc(var(--n) * 3px + 110px))
    scale(calc(0.5 + 0.5 * (var(--i) / var(--n))));
  opacity: calc(0.3 + 0.7 * (var(--i) / var(--n)));
}

.globe-label {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(8,145,178,0.6);
  white-space: nowrap;
}

.globe-bar {
  width: 200px;
  background: rgba(255,255,255,0.05);
}

/* ---- Hormozi / QUALUME section ---- */
.hz-section {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.hz-bg-svg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hz-bg-svg svg { width: 100%; height: 100%; }

.hz-wrap {
  display: grid;
  grid-template-columns: 320px 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Hormozi photo column */
.hz-photo-col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hz-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  mix-blend-mode: luminosity;
  filter: contrast(1.08) brightness(0.92);
  opacity: 0.88;
}
.hz-photo-fade {
  position: absolute;
  bottom: 80px; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}
.hz-guinness {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(234,179,8,0.06);
  border: 1px solid rgba(234,179,8,0.2);
  border-radius: 10px;
  margin-top: 4px;
}
.hz-guinness-icon { font-size: 20px; line-height: 1; flex-shrink: 0; }
.hz-guinness-title {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: rgba(234,179,8,0.9);
  margin-bottom: 4px;
}
.hz-guinness-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.hz-quote-col { display: flex; flex-direction: column; gap: 20px; }

.hz-openquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 120px;
  line-height: 0.7;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: -16px;
}

.hz-quote {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--fg);
  text-wrap: balance;
}

.hz-attribution {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.hz-avatar { width: 40px; height: 40px; flex-shrink: 0; }
.hz-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.hz-role {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-top: 2px;
}

/* Right column */
.hz-right-col { display: flex; flex-direction: column; gap: 28px; padding-top: 28px; }
.hz-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-dim); }

.hz-stats { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.hz-stat {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .5s, transform .5s;
}
.hz-stat.on { opacity: 1; transform: none; }
.hz-stat-n {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}
.hz-stat-l { font-size: 14px; color: var(--fg-dim); line-height: 1.4; }

.hz-bridge { display: flex; flex-direction: column; gap: 12px; }
.hz-bridge-eyebrow { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.hz-bridge-text { font-size: 15px; color: var(--fg-dim); line-height: 1.6; margin: 0; max-width: 44ch; }

@media (max-width: 1100px) {
  .hz-wrap { grid-template-columns: 240px 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .hz-wrap { grid-template-columns: 1fr; gap: 36px; }
  .hz-photo-col { max-width: 260px; }
  .hz-right-col { padding-top: 0; }
}

/* ---- Shader interactive section ---- */
.shader-section {
  position: relative;
  min-height: 60vh;
  background: #060810;
  border-top: 1px solid rgba(8,145,178,0.15);
  overflow: hidden;
  display: flex;
  align-items: center;
  cursor: crosshair;
}

.shader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.shader-content {
  position: relative;
  z-index: 2;
  padding-top: clamp(60px, 8vw, 120px);
  padding-bottom: clamp(60px, 8vw, 120px);
}

.shader-text {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shader-headline {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 7vw, 100px);
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin: 0;
  white-space: pre-line;
  color: var(--fg);
}

.shader-sub {
  color: var(--fg-dim);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
  max-width: 48ch;
  margin: 0;
}

.shader-hint {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(8,145,178,0.5);
  animation: shader-hint-pulse 2s ease-in-out infinite;
}
@keyframes shader-hint-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ============================================================
   v6 — Problems Section + Preloader Progress
   ============================================================ */

/* ---- Globe Preloader: progress bar + third ring ---- */
.globe-whirl-ring-3 {
  position: absolute;
  inset: -56px;
  border-radius: 50%;
  border: 1px solid rgba(8,145,178,0.05);
  animation: whirl-spin 22s linear infinite;
}
.globe-whirl-ring-3::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-bottom-color: rgba(34,211,238,0.3);
  animation: whirl-spin 5s linear infinite reverse;
}

.globe-progress-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 220px;
}
.globe-progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 1px;
  overflow: hidden;
}
.globe-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #0891B2, #22D3EE);
  border-radius: 1px;
  transition: width 0.08s linear;
  box-shadow: 0 0 8px rgba(8,145,178,0.6);
}
.globe-status {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(8,145,178,0.5);
  transition: opacity .3s;
}

/* ---- Problems Section ---- */
.problems-section {
  background: #060810;
  border-top: 1px solid rgba(8,145,178,0.12);
  padding-bottom: 0;
  overflow: hidden;
}

.problems-header {
  padding-bottom: 40px;
}

.problems-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 7vw, 96px);
  letter-spacing: -0.045em;
  line-height: 0.9;
  margin: 28px 0 20px;
  color: var(--fg);
}
.problems-title em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.problems-sub {
  color: var(--fg-dim);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.55;
  max-width: 52ch;
  margin: 0;
}

/* The chaos stage */
.problems-stage {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

@media (max-width: 768px) { .problems-stage { height: 420px; } }
@media (max-width: 480px) { .problems-stage { height: 340px; } }

.problem-chip {
  position: absolute;
  transform: translate(-50%, -50%) rotate(var(--rot, 0deg)) scale(0);
  white-space: nowrap;
  font-family: var(--mono);
  font-size: clamp(9px, 1vw, 12px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid;
  animation: chip-in 0.45s cubic-bezier(.34,1.56,.64,1) forwards;
  animation-delay: calc(var(--i, 0) * 0.04s);
  pointer-events: none;
  user-select: none;
}

/* Pillar colors */
.problem-chip.p1 {
  background: rgba(239, 68, 68, 0.07);
  border-color: rgba(239, 68, 68, 0.35);
  color: rgba(239, 68, 68, 0.9);
}
.problem-chip.p2 {
  background: rgba(245, 158, 11, 0.07);
  border-color: rgba(245, 158, 11, 0.35);
  color: rgba(245, 158, 11, 0.9);
}
.problem-chip.p3 {
  background: rgba(249, 115, 22, 0.07);
  border-color: rgba(249, 115, 22, 0.35);
  color: rgba(249, 115, 22, 0.9);
}

@keyframes chip-in {
  from { transform: translate(-50%, -50%) rotate(calc(var(--rot, 0deg) + 30deg)) scale(0); opacity: 0; }
  to   { transform: translate(-50%, -50%) rotate(var(--rot, 0deg)) scale(1); opacity: 1; }
}

/* Chip out animation */
.problem-chip.chip-out {
  animation: chip-out 0.6s cubic-bezier(.55,0,.7,1) forwards !important;
  animation-delay: calc(var(--i, 0) * 0.018s) !important;
}
@keyframes chip-out {
  0%   { transform: translate(-50%, -50%) rotate(var(--rot, 0deg)) scale(1); opacity: 1; }
  40%  { transform: translate(-50%, -50%) rotate(calc(var(--rot, 0deg) + 180deg)) scale(1.15); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) rotate(calc(var(--rot, 0deg) + 540deg)) scale(0); opacity: 0; }
}

/* Peak pulse */
.problems-peak {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(8,145,178,0.12);
  animation: peak-pulse 0.8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes peak-pulse {
  from { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  to   { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

/* ---- Problems Solution Reveal ---- */
.problems-solution {
  padding: clamp(60px, 10vw, 120px) 0;
  background: #030508;
  border-top: 1px solid rgba(8,145,178,0.15);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.2,.8,.2,1), transform 0.8s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.problems-solution.on {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.psol-badge {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}

.psol-headline {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(36px, 6vw, 80px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 40px;
  max-width: 18ch;
  text-wrap: balance;
}
.psol-headline em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.psol-mantras {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-bottom: 36px;
  max-width: 680px;
}
.psol-mantra {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
}
.psol-mantra::before {
  content: "→";
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  flex-shrink: 0;
}
.psol-mantra-text {
  font-family: var(--display);
  font-size: clamp(14px, 1.4vw, 17px);
  letter-spacing: -0.01em;
  color: var(--fg-dim);
}

/* ============================================================
   v7 — Problems Section REDESIGN: 3 marquee bands
   ============================================================ */

/* Override old scattered chip styles */
.problems-stage { display: none !important; }
.problems-peak  { display: none !important; }
.problem-chip   { display: none !important; }

/* ---- Section shell ---- */
.problems-section {
  background: #060810;
  border-top: 1px solid rgba(8,145,178,0.12);
  padding-bottom: 0;
  overflow: hidden;
}

.problems-header {
  padding-bottom: 48px;
}

.problems-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 7vw, 96px);
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin: 28px 0 20px;
  color: var(--fg);
}
.problems-title em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.problems-sub {
  color: var(--fg-dim);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  max-width: 52ch;
  margin: 0;
}

/* ---- 3 marquee bands ---- */
.problems-bands {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 8px 0 0;
}

.prow-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 14px 0;
}
.prow-wrap:last-child { border-bottom: 1px solid rgba(255,255,255,0.05); }

.prow-label {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  padding: 0 var(--pad);
  margin-bottom: 12px;
}

/* Fade mask on both sides */
.prow-fade-box {
  position: relative;
  overflow: hidden;
}
.prow-fade-box::before,
.prow-fade-box::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(60px, 8vw, 120px);
  z-index: 2;
  pointer-events: none;
}
.prow-fade-box::before {
  left: 0;
  background: linear-gradient(90deg, #060810 0%, transparent 100%);
}
.prow-fade-box::after {
  right: 0;
  background: linear-gradient(270deg, #060810 0%, transparent 100%);
}

/* The scrolling track */
.prow-track {
  display: inline-flex;
  gap: 10px;
  padding: 4px 10px;
  white-space: nowrap;
  will-change: transform;
}

.prow-left {
  animation: prow-scroll-left linear infinite;
}
.prow-right {
  animation: prow-scroll-right linear infinite;
  /* Start mid-way so right-scrolling tracks look right */
  transform: translateX(-33.333%);
}

@keyframes prow-scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
@keyframes prow-scroll-right {
  from { transform: translateX(-33.333%); }
  to   { transform: translateX(0); }
}

/* Pause on hover */
.prow-fade-box:hover .prow-track { animation-play-state: paused; }

/* ---- Individual problem chips ---- */
.pchip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid;
  font-family: var(--sans);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 400;
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Pillar 1 — red */
.pchip.pc1 {
  background: rgba(239,68,68,0.06);
  border-color: rgba(239,68,68,0.25);
  color: rgba(252,165,165,0.85);
}
.pchip.pc1 svg { color: rgba(239,68,68,0.7); }

/* Pillar 2 — amber */
.pchip.pc2 {
  background: rgba(245,158,11,0.06);
  border-color: rgba(245,158,11,0.25);
  color: rgba(253,211,77,0.85);
}
.pchip.pc2 svg { color: rgba(245,158,11,0.7); }

/* Pillar 3 — orange */
.pchip.pc3 {
  background: rgba(249,115,22,0.06);
  border-color: rgba(249,115,22,0.25);
  color: rgba(253,186,116,0.85);
}
.pchip.pc3 svg { color: rgba(249,115,22,0.7); }

/* ---- Solution reveal block (always visible) ---- */
.problems-solution {
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
  padding: clamp(56px, 8vw, 100px) 0;
  background: linear-gradient(180deg, #060810 0%, #040608 100%);
}

.psol-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8,145,178,0.4) 40%, rgba(8,145,178,0.4) 60%, transparent);
  margin-bottom: clamp(40px, 6vw, 72px);
}

.psol-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.psol-badge {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

.psol-headline {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 54px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0;
  color: var(--fg);
}
.psol-headline em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

/* Mantras: from → to format */
.psol-mantras {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-bottom: 32px;
}
.psol-mantra {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.psol-from {
  font-family: var(--sans);
  font-size: clamp(12px, 1.1vw, 14px);
  color: var(--fg-dimmer);
  text-decoration: line-through;
  text-decoration-color: rgba(239,68,68,0.4);
}
.psol-arrow {
  font-family: var(--mono);
  color: var(--accent);
  font-size: 14px;
  opacity: 0.8;
}
.psol-to {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(13px, 1.2vw, 16px);
  color: var(--fg);
  letter-spacing: -0.01em;
}

@media (max-width: 860px) {
  .psol-inner { grid-template-columns: 1fr; gap: 36px; }
  .psol-mantra { grid-template-columns: 1fr; gap: 4px; }
  .psol-arrow { display: none; }
  .psol-from { font-size: 12px; }
}

/* ============================================================
   v8 — Problems: B2B enterprise refinement
   ============================================================ */

/* ---- Override pill chips with sharp B2B tags ---- */
.pchip {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 18px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  background: rgba(255,255,255,0.02) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  font-family: var(--sans) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
  transition: all 0.3s ease !important;
  color: rgba(255,255,255,0.55) !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  border-left-width: 2px !important;
}
.pchip:hover {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.15) !important;
  transform: translateY(-2px) !important;
}
.prow-fade-box:hover .pchip { color: rgba(255,255,255,0.7) !important; }

/* Pillar left-accent overrides */
.pchip.pchip-pc1 { border-left-color: rgba(248,113,113,0.55) !important; }
.pchip.pchip-pc2 { border-left-color: rgba(251,191,36,0.55) !important; }
.pchip.pchip-pc3 { border-left-color: rgba(8,145,178,0.7) !important; }

/* Dash indicator (replaces SVG circle) */
.pchip-dash {
  display: inline-block;
  width: 12px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  flex-shrink: 0;
}
.pchip-text {
  line-height: 1;
}

/* ---- Pillar row label bar ---- */
.prow-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  margin-bottom: 10px;
}
.prow-label {
  font-size: 10px !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
}
.prow-count {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.35;
}

/* Pillar label colors */
.prow-pc1 .prow-label { color: rgba(248,113,113,0.55); }
.prow-pc2 .prow-label { color: rgba(251,191,36,0.55); }
.prow-pc3 .prow-label { color: rgba(8,145,178,0.65); }
.prow-pc1 .prow-count { color: rgba(248,113,113,0.4); }
.prow-pc2 .prow-count { color: rgba(251,191,36,0.4); }
.prow-pc3 .prow-count { color: rgba(8,145,178,0.5); }

/* Thinner separator between rows */
.prow-wrap {
  border-top: 1px solid rgba(255,255,255,0.04) !important;
  padding: 12px 0 !important;
}

/* ---- Diagnostic header badges ---- */
.problems-badge-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.problems-scan-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.02);
}
.problems-scan-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(248,113,113,0.8);
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.problems-total-badge {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.18);
  line-height: 1;
}

/* ---- Refine .prow-fade-box gradient ---- */
.prow-fade-box::before {
  background: linear-gradient(90deg, #060810 0%, rgba(6,8,16,0) 100%) !important;
}
.prow-fade-box::after {
  background: linear-gradient(270deg, #060810 0%, rgba(6,8,16,0) 100%) !important;
}

/* ---- Solution block B2B polish ---- */
.psol-headline {
  font-size: clamp(26px, 3.5vw, 46px) !important;
  line-height: 1.1 !important;
  max-width: 22ch;
}

/* Mantra redesign: sharp table rows */
.psol-mantras {
  border-top: 1px solid rgba(255,255,255,0.07) !important;
  border-bottom: none !important;
}
.psol-mantra {
  grid-template-columns: 1fr 28px 1fr !important;
  padding: 14px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}
.psol-from {
  font-size: 12px !important;
  color: rgba(255,255,255,0.3) !important;
  text-decoration: line-through !important;
  text-decoration-color: rgba(248,113,113,0.35) !important;
  font-family: var(--mono) !important;
  letter-spacing: 0.02em !important;
}
.psol-arrow {
  color: rgba(8,145,178,0.6) !important;
  font-size: 12px !important;
  text-align: center;
}
.psol-to {
  font-family: var(--sans) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.88) !important;
  letter-spacing: -0.01em !important;
}

/* Solution section subtle top border teal line */
.psol-divider {
  background: linear-gradient(90deg, transparent, rgba(8,145,178,0.35) 30%, rgba(8,145,178,0.35) 70%, transparent) !important;
}

/* ---- Tighter prow-track spacing ---- */
.prow-track { gap: 8px !important; padding: 2px 8px !important; }

/* ============================================================
   v9 — Manifesto brutal, flags, recipient selector, niches SVG
   ============================================================ */

/* ---- Manifesto: more brutal + color progression ---- */
.manifesto-lines {
  font-family: var(--display) !important;
  font-style: normal !important;
  font-size: clamp(36px, 5.5vw, 84px) !important;
  font-weight: 600 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.1;
}

.manifesto-line {
  display: flex !important;
  align-items: baseline;
  gap: 0.3em;
  padding: 4px 0 !important;
  transition: color .6s, transform .6s !important;
  transform: translateX(-12px);
}
.manifesto-line.on { transform: translateX(0) !important; }

/* Marker dash that appears */
.ml-marker {
  font-family: var(--mono);
  font-size: 0.3em;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.7;
  flex-shrink: 0;
  align-self: center;
}

/* Color classes */
.manifesto-line.mc-white { color: var(--fg-dimmer); }
.manifesto-line.mc-white.on { color: rgba(245,245,247,0.95) !important; }

.manifesto-line.mc-teal { color: var(--fg-dimmer); }
.manifesto-line.mc-teal.on { color: rgba(34,211,238,0.65) !important; }

.manifesto-line.mc-accent { color: var(--fg-dimmer); }
.manifesto-line.mc-accent.on { color: #22D3EE !important; text-shadow: 0 0 40px rgba(34,211,238,0.5) !important; }

/* Last line: extra bright */
.manifesto-line.ml-last {
  color: var(--accent) !important;
  text-shadow: 0 0 60px rgba(8,145,178,0.4);
}

/* ---- Language switcher with flags ---- */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: 999px;
  background: transparent;
  border: none;
  color: var(--fg-dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.lang-btn.active {
  background: var(--fg);
  color: var(--bg);
}
.lang-flag { font-size: 13px; line-height: 1; }
.lang-code { font-weight: 600; }
.lang-sep {
  width: 1px;
  height: 16px;
  background: var(--line);
  flex-shrink: 0;
}

/* ---- Contact recipient selector ---- */
.recipient-selector {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.recipient-btn {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--fg);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.recipient-btn:hover { background: rgba(255,255,255,0.03); border-color: var(--line-2); }
.recipient-btn.active { border-color: var(--accent); background: rgba(8,145,178,0.06); }
.recipient-name { font-size: 13px; font-weight: 500; }
.recipient-desc { font-size: 11px; color: var(--fg-dim); font-family: var(--mono); letter-spacing: 0.06em; }

/* ---- Niches: add tag chips + icon area ---- */
.niche-card-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 4px;
}
.niche-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.niche-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid rgba(8,145,178,0.25);
  border-radius: 3px;
  color: rgba(8,145,178,0.7);
  background: rgba(8,145,178,0.04);
}

/* ---- NotUs section ---- */
.notus-section {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: clamp(80px,10vw,140px) 0;
}
.notus-header { margin-bottom: 56px; }
.notus-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(36px,6vw,80px);
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 28px 0 18px;
}
.notus-title em {
  font-family: "Cormorant Garamond",serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.notus-sub { color: var(--fg-dim); font-size: clamp(15px,1.2vw,17px); max-width: 52ch; margin: 0; }

.notus-grid {
  display: grid;
  grid-template-columns: 1fr 24px 1fr;
  gap: 0;
  align-items: start;
}
.notus-divider { display: flex; justify-content: center; padding-top: 56px; }
.notus-divider svg { height: 100%; }

.notus-col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.notus-x-icon { color: rgba(239,68,68,0.7); font-size: 14px; }
.notus-check-icon { color: var(--accent); font-size: 14px; }

.notus-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.notus-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: clamp(13px,1.1vw,15px);
  line-height: 1.4;
}
.notus-item-no { color: var(--fg-dim); }
.notus-item-no .notus-bullet { color: rgba(239,68,68,0.5); font-family: var(--mono); font-size: 11px; flex-shrink: 0; }
.notus-item-yes { color: var(--fg); }
.notus-item-yes .notus-bullet { color: var(--accent); font-family: var(--mono); font-size: 11px; flex-shrink: 0; }

.notus-cta-area {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(8,145,178,0.2);
  border-radius: 6px;
  background: rgba(8,145,178,0.04);
}
.notus-cta-text {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(8,145,178,0.8);
  line-height: 1.6;
  margin: 0;
}

/* Niche card top row */
.niche-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
}

@media (max-width: 860px) {
  .notus-grid { grid-template-columns: 1fr; gap: 36px; }
  .notus-divider { display: none; }
}

/* ============================================================
   v10 — Typography: Syne + DM Sans + Cormorant + Space Mono
   ============================================================ */

/* Syne is wider than Space Grotesk — tighten tracking globally */
html, body { font-family: var(--sans); font-optical-sizing: auto; }

/* Syne display headings: bolder, tighter */
.h-display, .section-header h2, .hero-headline-new,
.hz-quote, .psol-headline, .notus-title, .problems-title,
h1, h2, h3 {
  font-family: var(--display) !important;
  font-optical-sizing: auto;
}

/* Syne at large sizes needs less letter-spacing than Space Grotesk */
.hero-headline-new { letter-spacing: -0.04em !important; }
.manifesto-lines { letter-spacing: -0.03em !important; font-weight: 600 !important; font-style: normal !important; font-family: var(--display) !important; }
.section-header h2 { letter-spacing: -0.03em !important; }
.hz-quote { font-family: var(--display) !important; font-weight: 500 !important; }

/* Cormorant Garamond for italic accent moments — more elegant than Instrument Serif */
.hero-headline-new .accent.italic,
.psol-headline em,
.notus-title em,
.problems-title em,
.big-cta h2 em,
.hz-openquote {
  font-family: inherit !important;
  font-style: normal !important;
  font-optical-sizing: auto;
  letter-spacing: inherit;
}

/* DM Sans body — slightly wider, adjust line-heights */
body { line-height: 1.5; letter-spacing: -0.005em; }

/* Space Mono for eyebrows and code — more distinctive than JetBrains Mono */
.mono, .eyebrow, .eyebrow-text, .prow-label,
.section-index, .psol-badge, .globe-label, .globe-status,
.nav-logo span, .hero-bottom-bar, .pchip-sub {
  font-family: var(--mono) !important;
}

/* Space Mono tends to be wider — reduce letter-spacing slightly */
.mono { letter-spacing: 0.08em !important; }
.eyebrow { letter-spacing: 0.1em !important; font-size: 10px !important; }

/* DM Sans is slightly lighter at small sizes — boost weight */
.hero-sub-new, .hz-bridge-text, .founder-bio,
.section-header p, .notus-sub { font-weight: 300; }

/* Nav logo uses Syne */
.nav-logo { font-family: var(--display) !important; font-weight: 700 !important; letter-spacing: -0.02em !important; }

/* Services ladder names — Syne bold */
.ladder-row .name { letter-spacing: -0.025em !important; }

/* Preloader mark — Syne ultra-bold */
.preloader-mark { font-family: var(--display) !important; font-weight: 800 !important; }

/* Blog post typography updates */
.blog-card h3 { font-family: var(--display) !important; font-weight: 600 !important; letter-spacing: -0.02em !important; }

/* Big CTA uses Cormorant for the em */
.big-cta h2 { letter-spacing: -0.045em !important; }

/* Step cards number in Syne */
.step-card .n { font-family: var(--display) !important; }

/* Orbital number */
.orbital-num { font-family: var(--display) !important; }

/* Case card result number */
.case-card .r { font-family: var(--display) !important; }

/* Hero metrics */
.hero-metrics-new .n { font-family: var(--display) !important; }
.hz-stat-n { font-family: var(--display) !important; }

/* ============================================================
   v11 — NotUsSection: compact table + Syne typography fixes
   ============================================================ */

/* ---- NotUs table redesign ---- */
.notus-section {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: clamp(64px, 8vw, 100px) 0;
}

.notus-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.notus-title {
  font-family: var(--display) !important;
  font-weight: 700 !important;
  font-size: clamp(32px, 4.5vw, 60px) !important;
  letter-spacing: -0.04em !important;
  line-height: 1.1 !important;
  margin: 0 !important;
  color: var(--fg);
  text-wrap: balance;
}
.notus-title em {
  font-family: var(--serif) !important;
  font-style: italic;
  font-weight: 400 !important;
  color: var(--accent);
  display: block;
}

.notus-sub {
  color: var(--fg-dim);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.55;
  max-width: 40ch;
  margin: 0;
  align-self: flex-start;
}

/* Table */
.notus-table {
  border-top: 1px solid var(--line);
}

.notus-table-header {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.notus-th-no {
  font-size: 9px !important;
  letter-spacing: 0.14em !important;
  color: rgba(248,113,113,0.75);
}
.notus-th-yes {
  font-size: 9px !important;
  letter-spacing: 0.14em !important;
  color: rgba(8,145,178,0.85);
  grid-column: 3;
}

.notus-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: stretch;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}
.notus-row:hover { background: rgba(255,255,255,0.02); }
.notus-cell-no {
  font-size: clamp(13px, 1.05vw, 15px);
  color: rgba(248,113,113,0.7);
  text-decoration: line-through;
  text-decoration-color: rgba(248,113,113,0.35);
  padding: 14px 16px;
  line-height: 1.3;
  font-weight: 400;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
.notus-cell-no:hover {
  background: #ffffff !important;
  color: #060810 !important;
  text-decoration-color: #060810 !important;
}

.notus-cell-no {
  font-size: clamp(13px, 1.05vw, 15px);
  color: rgba(248,113,113,0.7);
  text-decoration: line-through;
  text-decoration-color: rgba(248,113,113,0.35);
  padding-right: 16px;
  line-height: 1.3;
  font-weight: 400;
  transition: color .2s;
}

.notus-arrow-mid {
  font-family: var(--mono);
  font-size: 14px;
  color: rgba(8,145,178,0.6);
  text-align: center;
  flex-shrink: 0;
}

.notus-cell-yes {
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 14px 16px;
  line-height: 1.3;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
.notus-cell-yes:hover {
  background: #0891B2 !important;
  color: #ffffff !important;
}

/* Bottom statement */
.notus-bottom {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(8,145,178,0.18);
  border-radius: 6px;
  background: rgba(8,145,178,0.03);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.notus-bottom-label {
  font-size: 9px !important;
  letter-spacing: 0.14em !important;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}
.notus-bottom-text {
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 500;
  color: var(--fg);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .notus-header { grid-template-columns: 1fr; gap: 16px; }
  .notus-table-header { display: none; }
  .notus-row { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  .notus-arrow-mid { display: none; }
  .notus-cell-no { font-size: 11px; }
  .notus-cell-yes { padding-left: 0; padding-top: 4px; border-top: 1px solid rgba(8,145,178,0.1); }
}

/* ---- Syne number style fixes ---- */
.preloader-row { font-family: var(--display) !important; font-weight: 800 !important; letter-spacing: -0.04em !important; }

/* REMOVE ALL ITALICS GLOBALLY */
em, i, .italic { font-style: normal !important; }

/* ============================================================
   v12 — User Requests: Hero, Navbar, Metrics, TextCycle
   ============================================================ */

/* Navbar White background enforcement */
.nav-inner {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(16px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}
.nav-logo span {
  color: #0a0a0b !important;
}
.nav-links a {
  color: rgba(10, 10, 11, 0.7) !important;
  transition: color 0.2s ease, background 0.2s ease !important;
}
.nav-links a:hover {
  color: #0a0a0b !important;
  background: rgba(10, 10, 11, 0.05) !important;
}
.lang-code {
  color: #0a0a0b !important;
}
.lang-switcher {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  background: rgba(0, 0, 0, 0.04) !important;
}
.nav-cta-new {
  background: #0a0a0b !important;
  color: #ffffff !important;
  transition: transform 0.2s ease, background 0.2s ease !important;
}
.nav-cta-new:hover {
  background: #222225 !important;
  transform: translateY(-1px) !important;
}

/* Enhanced energetic background */
.hero-grid-new {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8,145,178,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,145,178,0.15) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, #000 30%, transparent 90%);
  pointer-events: none;
  animation: gridEnergy 5s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}
@keyframes gridEnergy {
  0% { opacity: 0.4; transform: scale(1) translateY(0); }
  100% { opacity: 0.85; transform: scale(1.03) translateY(-10px); }
}

/* Redesigned Eyebrow Badge ("TOP WOW") */
.hero-eyebrow-v2 {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.25), rgba(34, 211, 238, 0.08));
  border: 1px solid rgba(34, 211, 238, 0.3);
  padding: 10px 24px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 30px rgba(8, 145, 178, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  margin-bottom: 40px;
  transition: transform 0.3s ease;
}
.hero-eyebrow-v2:hover {
  transform: translateY(-2px);
}
.hev2-brand {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.hev2-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}
.hev2-label {
  color: #22D3EE;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.hev2-version {
  background: rgba(8, 145, 178, 0.4);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  border: 1px solid rgba(34, 211, 238, 0.5);
  box-shadow: 0 0 15px rgba(34, 211, 238, 0.2);
}

/* Redesigned Metrics Grid ("WOW") */
.hero-metrics-wow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}
.hmw-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(8px);
}
.hmw-item:hover {
  transform: translateY(-8px);
  background: rgba(8, 145, 178, 0.08);
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(8, 145, 178, 0.15);
}
.hmw-n {
  font-family: var(--display) !important;
  font-size: clamp(40px, 4.5vw, 64px) !important;
  font-weight: 800 !important;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, #22D3EE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.hmw-l {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: rgba(245, 245, 247, 0.7);
  text-align: center;
  line-height: 1.4;
  text-transform: none;
}

/* Fixed Alignment for gooey text cycle */
.hero-cycle-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.hcv2-label {
  font-family: var(--mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245, 245, 247, 0.6);
}
.hcv2-gooey {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}

@media (max-width: 960px) {
  .hero-metrics-wow {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .hero-metrics-wow {
    grid-template-columns: 1fr;
  }
  .hero-cycle-v2 {
    flex-direction: column;
    gap: 8px;
  }
}



/* ================================================================
   Problems Section — Scrolling Strips
   ================================================================ */
.problems-strips {
  margin: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.problems-strip-wrap { overflow: hidden; }
.problems-strip-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.pstrip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}
.pstrip-name {
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.pstrip-count {
  font-size: 10px;
  letter-spacing: 0.08em;
  margin-left: 6px;
}
.problems-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.problems-marquee-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: pscroll-left 70s linear infinite;
}
.problems-marquee-track.pmt-rev {
  animation: pscroll-right 70s linear infinite;
}
@keyframes pscroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pscroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.problem-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.3;
  letter-spacing: 0.01em;
  backdrop-filter: blur(6px);
}
.ppill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
  opacity: 0.7;
}

/* ================================================================
   How Section — Animated Step Cards v2
   ================================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.step-card-v2 {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}
.step-card-v2:hover {
  background: var(--cyan, #0891B2) !important;
  border-color: #ffffff !important;
  transform: translateY(-4px);
}
.step-card-v2:hover .scv2-n,
.step-card-v2:hover .scv2-t,
.step-card-v2:hover .scv2-d,
.step-card-v2:hover .scv2-svg-wrap {
  color: #ffffff !important;
  opacity: 1 !important;
}
.scv2-svg-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px 20px;
  color: var(--cyan, #22D3EE);
}
.scv2-svg-wrap svg {
  width: 64px;
  height: 64px;
}
.scv2-body {
  padding: 0 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.scv2-n {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--cyan, #22D3EE);
  opacity: 0.7;
  text-transform: uppercase;
}
.scv2-t {
  font-family: var(--display);
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}
.scv2-d {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 1024px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .steps-grid { grid-template-columns: 1fr; } }


/* ================================================================
   Shader Section — body + right metrics
   ================================================================ */
.shader-content { position: relative; z-index: 1; }

.shader-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 40px 0 20px;
}

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

.shader-metric-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: border-color .3s, background .3s;
  backdrop-filter: blur(8px);
}
.shader-metric-card:hover,
.shader-metric-card.accent {
  background: rgba(8,145,178,0.1);
  border-color: rgba(8,145,178,0.4);
}
.shader-metric-card.accent .smc-n { color: var(--cyan, #22D3EE); }

.smc-n {
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}
.smc-l {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.btn-ghost-shader {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 11px 22px;
  border: 1px solid rgba(8,145,178,0.4);
  border-radius: 100px;
  color: rgba(8,145,178,0.9);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background .25s, border-color .25s, color .25s;
}
.btn-ghost-shader:hover {
  background: rgba(8,145,178,0.12);
  border-color: var(--cyan);
  color: var(--cyan);
}

@media (max-width: 900px) {
  .shader-body { grid-template-columns: 1fr; gap: 32px; }
  .shader-metrics { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .shader-metrics { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   Problems Wall — dense brain-explosion grid
   ================================================================ */
.problems-wall-wrap {
  position: relative;
  margin: 48px 0;
  padding: 0 var(--gutter, 24px);
  max-width: var(--container, 1280px);
  margin-left: auto;
  margin-right: auto;
}
.problems-wall-bg60 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: clamp(140px, 22vw, 320px);
  font-weight: 900;
  letter-spacing: -0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.03);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}
.problems-wall {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 32px 0;
}
.pwill-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 11.5px;
  line-height: 1.3;
  backdrop-filter: blur(6px);
  animation: pill-appear .4s ease both;
  cursor: default;
  transition: transform .2s, filter .2s;
}
.pwill-pill:hover {
  transform: scale(1.04) translateY(-2px);
  filter: brightness(1.25);
}
@keyframes pill-appear {
  from { opacity: 0; transform: scale(0.85) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.problems-wall-fade-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
  z-index: 2;
}

/* ================================================================
   Contact — dropdown select
   ================================================================ */
.select-wrap {
  position: relative;
  display: block;
}
.recipient-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: var(--surface, rgba(255,255,255,0.04));
  border: 1px solid var(--line, rgba(255,255,255,0.1));
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--sans, "Inter", sans-serif);
  font-size: 14px;
  padding: 11px 40px 11px 14px;
  cursor: pointer;
  transition: border-color .2s;
  outline: none;
}
.recipient-select:focus { border-color: var(--accent); }
.recipient-select option { background: #1a1a1f; color: #fff; }
.select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted, rgba(255,255,255,0.4));
  font-size: 12px;
}

/* ================================================================
   Nav — improved right side + language switcher
   ================================================================ */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lang-flag {
  font-size: 16px;
  line-height: 1;
  display: block;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 6px;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.lang-btn:hover { background: rgba(0,0,0,0.06); }
.lang-btn.active {
  background: rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.12);
}
.lang-code {
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #0a0a0b;
}
.lang-sep {
  width: 1px;
  height: 16px;
  background: rgba(0,0,0,0.15);
  display: inline-block;
  flex-shrink: 0;
}
.nav-cta-new {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 100px;
  background: #0a0a0b;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, transform .2s;
  letter-spacing: -0.01em;
}
.nav-cta-new:hover { background: #1a1a1f; transform: translateY(-1px); }

/* ================================================================
   Manifesto — mc color classes for last 2 lines
   ================================================================ */
.manifesto-line.mc-white.on { color: var(--fg); }
.manifesto-line.mc-teal.on  { color: rgba(34,211,238,0.65); }
.manifesto-line.mc-accent.on { color: #22D3EE; text-shadow: 0 0 40px rgba(34,211,238,0.4); }

/* ================================================================
   Problems — pillar blocks (alt bg)
   ================================================================ */
.problems-pillars {
  display: flex;
  gap: 0;
  margin-top: 32px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.pblock {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  position: relative;
  background: rgba(255, 255, 255, 0.02) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
  transition: all 0.3s ease;
}
.pblock:last-child {
  border-right: none !important;
}
.pblock:hover {
  background: rgba(255, 255, 255, 0.05) !important;
}
.pblock-0 { border-top: 3px solid #ef4444 !important; }
.pblock-1 { border-top: 3px solid #f59e0b !important; }
.pblock-2 { border-top: 3px solid #22c55e !important; }

.pblock-n {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  flex-shrink: 0;
  opacity: 0.8;
}
.pblock-0 .pblock-n { color: #ef4444; }
.pblock-1 .pblock-n { color: #f59e0b; }
.pblock-2 .pblock-n { color: #22c55e; }

.pblock-label {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.3;
}
.pblock-count {
  margin-left: auto;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  opacity: 0.8;
}
.pblock-0 .pblock-count { color: #ef4444; }
.pblock-1 .pblock-count { color: #f59e0b; }
.pblock-2 .pblock-count { color: #22c55e; }
@media (max-width: 640px) {
  .problems-pillars { flex-direction: column; border-radius: 8px; }
  .pblock-1 { border-left: none; border-right: none; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
}

/* ================================================================
   NotUsSection — centered layout
   ================================================================ */
.notus-header {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 12px !important;
  margin-bottom: 48px !important;
}
.notus-eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
}
.notus-title {
  font-family: var(--display) !important;
  font-weight: 700 !important;
  font-size: clamp(36px, 5vw, 68px) !important;
  letter-spacing: -0.04em !important;
  line-height: 1.05 !important;
  margin: 0 !important;
  color: var(--fg) !important;
  text-align: center !important;
  text-wrap: balance !important;
}
.notus-title em {
  font-family: var(--serif) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  color: var(--accent) !important;
}
.notus-sub {
  color: rgba(255,255,255,0.5) !important;
  font-size: clamp(14px,1.1vw,16px) !important;
  line-height: 1.55 !important;
  max-width: 44ch !important;
  margin: 0 !important;
  text-align: center !important;
}
.notus-table {
  max-width: 820px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.notus-table-header {
  grid-template-columns: 1fr 40px 1fr !important;
  justify-items: start;
}
.notus-th-no { text-align: left; }
.notus-th-yes { text-align: left; }

/* ================================================================
   How Section — centered header
   ================================================================ */
.how-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.how-title {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0;
  color: var(--fg);
  max-width: 18ch;
  text-wrap: balance;
}
.how-sub {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.6;
  margin: 0;
}

/* ================================================================
   Services — colored rows per format
   ================================================================ */
.ladder-row:nth-child(1) { --srv-color: #22c55e; }
.ladder-row:nth-child(2) { --srv-color: #0891B2; }
.ladder-row:nth-child(3) { --srv-color: #8b5cf6; }
.ladder-row:nth-child(4) { --srv-color: #f59e0b; }
.ladder-row:nth-child(5) { --srv-color: #ef4444; }

.ladder-row {
  border-left: 3px solid transparent !important;
  padding-left: 20px !important;
  transition: all 0.4s ease !important;
}
.ladder-row:hover {
  background: var(--srv-color, var(--accent)) !important;
  color: #ffffff !important;
  border-left-color: #ffffff !important;
}
.ladder-row:hover .tag,
.ladder-row:hover .name,
.ladder-row:hover .promise,
.ladder-row:hover li,
.ladder-row:hover .cycle-block .cycle-label {
  color: #ffffff !important;
}
.ladder-row:hover .srv-icon-col {
  color: #ffffff !important;
}
.ladder-row:hover li::before {
  background: #ffffff !important;
}
.ladder-row:hover .cycle-cta {
  background: #ffffff !important;
  color: var(--srv-color, #0a0a0b) !important;
}
.ladder-row:hover .cycle-cta:hover {
  background: #0a0a0b !important;
  color: #ffffff !important;
}
}

/* ================================================================
   FAQ — smaller, compact, centered
   ================================================================ */
.faq {
  padding: clamp(48px, 6vw, 80px) 0 !important;
}
.faq .container {
  max-width: 680px !important;
}
.faq-list {
  margin-top: 32px;
}
.faq-item {
  border-bottom: 1px solid var(--line) !important;
}
.faq-q {
  font-size: clamp(13px, 1.05vw, 15px) !important;
  padding: 16px 0 !important;
}
.faq-a-inner {
  font-size: 13px !important;
  line-height: 1.65 !important;
  padding-bottom: 16px !important;
}
.faq .section-header h2 {
  font-size: clamp(22px, 2.5vw, 32px) !important;
  letter-spacing: -0.03em !important;
}

/* ================================================================
   psol mantras — bigger and more impactful
   ================================================================ */
.psol-from {
  font-size: clamp(13px, 1.15vw, 16px) !important;
  color: rgba(255,255,255,0.4) !important;
}
.psol-to {
  font-size: clamp(14px, 1.3vw, 18px) !important;
  font-weight: 700 !important;
  color: var(--fg) !important;
}
.psol-arrow {
  font-size: 18px !important;
  color: var(--cyan, #22D3EE) !important;
  opacity: 1 !important;
}
.psol-mantra {
  padding: 20px 0 !important;
}
.psol-headline {
  font-size: clamp(28px, 3.5vw, 52px) !important;
}

/* Bubble Cloud Orbit Engine */
.bubble-cloud-wrapper {
  perspective: 1000px;
}

@keyframes pulseCentral {
  0%, 100% { transform: scale(1); boxShadow: 0 0 40px rgba(8,145,178,0.4); }
  50% { transform: scale(1.05); boxShadow: 0 0 60px rgba(8,145,178,0.6), 0 0 20px rgba(8,145,178,0.3); }
}

@keyframes floatBubble {
  0%, 100% { transform: translate(-50%, -50%) translate(0, 0); }
  25% { transform: translate(-50%, -50%) translate(10px, -15px); }
  50% { transform: translate(-50%, -50%) translate(-15px, 10px); }
  75% { transform: translate(-50%, -50%) translate(12px, 12px); }
}

.tool-bubble:hover {
  transform: translate(-50%, -50%) scale(1.3) !important;
  z-index: 50 !important;
  box-shadow: 0 20px 40px rgba(8,145,178,0.3) !important;
  border-color: var(--accent) !important;
  background: #ffffff !important;
}

@media (max-width: 980px) {
  .bubble-cloud-wrapper {
    height: 500px !important;
  }
  .engine-node {
    width: 100px !important;
    height: 100px !important;
    font-size: 11px !important;
  }
  .tool-bubble span {
    display: none !important; /* Hide labels on mobile to prevent overlapping */
  }
  .tool-bubble {
    padding: 10px !important;
  }
}

@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

@keyframes logoScrollReverse {
  0% { transform: translateX(-33.33%); }
  100% { transform: translateX(0); }
}


/* ================================================================
   Niche cards — image strip
   ================================================================ */
.niche-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.niche-imgs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  height: 120px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  flex-shrink: 0;
}
.niche-img-cell {
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}
.niche-img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.niche-card:hover .niche-img-cell img { transform: scale(1.06); }
.niche-card-inner {
  padding: 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* ================================================================
   Showcase — masonry gallery with real media
   ================================================================ */
.showcase-masonry {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 180px;
  gap: 6px;
  margin-top: 40px;
}

/* 9:16 vertical video — spans 2 rows */
.show-tall {
  grid-row: span 3;
}
/* 16:9 wide video — spans 2 columns */
.show-wide {
  grid-column: span 2;
  grid-row: span 2;
}
/* 4:5 images — spans 2 rows, 1 col */
.show-square {
  grid-row: span 2;
}

.show-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  cursor: pointer;
}
.show-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  display: block;
}
.show-item:hover .show-media { transform: scale(1.04); }

.show-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 12px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .3s;
}
.show-item:hover .show-overlay { opacity: 1; }
.show-label {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.show-format {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .showcase-masonry { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
}
@media (max-width: 640px) {
  .showcase-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .show-wide { grid-column: span 2; }
}

/* ================================================================
   Responsive Navbar & Hamburger Menu
   ================================================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #0a0a0b;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 75;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 320px;
  padding: 40px 20px;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.nav-mobile-links a {
  font-family: var(--display, "Syne", sans-serif);
  font-size: 24px;
  font-weight: 600;
  color: #0a0a0b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-mobile-links a:hover {
  color: var(--accent, #0891B2);
}

.nav-mobile-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 30px;
}

.lang-switcher-mobile {
  display: flex;
  gap: 16px;
}

.lang-switcher-mobile .lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 30px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.02);
  color: #0a0a0b;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-switcher-mobile .lang-btn.active {
  background: #0a0a0b;
  color: #ffffff;
  border-color: #0a0a0b;
}

.nav-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  border-radius: 100px;
  background: #0a0a0b;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-mobile-cta:hover {
  transform: scale(1.02);
  opacity: 0.95;
}

@media (max-width: 900px) {
  .nav-links, .nav-right {
    display: none !important;
  }
  .nav-hamburger {
    display: flex !important;
  }
  .nav-inner {
    width: calc(100vw - 28px);
    justify-content: space-between;
  }
}
