/* ─── Design Tokens ────────────────────────────────────────── */
:root {
  --font-heading:    'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --fontStack-monospace: ui-monospace, SFMono-Regular, 'SF Mono', Menlo,
                         Consolas, 'Liberation Mono', monospace;

  --bg:        #000000;
  --bg-2:      #0A0A0A;
  --bg-3:      #111111;
  --bg-4:      #1a1a1a;
  --border:    rgba(255,255,255,0.08);
  --border-subtle: rgba(255,255,255,0.05);
  --text:      #FFFFFF;
  --muted:     #B0B0B0;
  --muted-2:   #707070;

  --accent:    #C1FF10;
  --accent-rgb: 193,255,16;

  --green:     #C1FF10;
  --green-dim: #89b80b;
  --purple:    #d2a8ff;
  --purple-dim:#a371f7;
  --pink:      #ff7eb3;
  --pink-dim:  #f778ba;
  --blue:      #58a6ff;

  --syn-keyword: #ff7b72;
  --syn-fn:      #d2a8ff;
  --syn-string:  #a5d6ff;
  --syn-comment: #606060;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─── Custom cursor ───────────────────────────────────────── */
html, body { cursor: none !important; }
*, *::before, *::after { cursor: none !important; }

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-1px, -1px);
  transition: opacity 0.2s ease;
  will-change: transform;
}

@media (hover: none), (pointer: coarse) {
  .custom-cursor { display: none !important; }
}

.cursor-crop {
  width: 54px;
  height: 18px;
  overflow: hidden;
  filter: drop-shadow(0 0 6px #C1FF10);
}

.cursor-img {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: fill;
  margin-top: -11px;
}

/* ─── Base ────────────────────────────────────────────────── */
body {
  background: var(--bg);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  position: relative;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── Pixel grid background motif ────────────────────────── */
.pixel-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(193,255,16,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(193,255,16,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* ─── Neon SVG path ───────────────────────────────────────── */
.neon-svg {
  position: absolute;
  left: 0;
  top: 0;
  width: max(80px, calc(50vw - 580px));
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}

.neon-track-path {
  fill: none;
  stroke: rgba(193,255,16,0.06);
  stroke-width: 1.5;
}

.neon-seg {
  fill: none;
  stroke: #C1FF10;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dashoffset: var(--len, 9999);
  stroke-dasharray: var(--len, 9999);
  transition: stroke-dashoffset 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.neon-seg.is-drawn {
  stroke-dashoffset: 0;
}

.neon-node {
  fill: #C1FF10;
  opacity: 0;
  transition: opacity 0.4s ease, r 0.4s ease;
}
.neon-node.is-active { opacity: 1; }

@keyframes nodeRipple {
  0%   { r: 4;  opacity: 0.9; }
  100% { r: 18; opacity: 0; }
}
.neon-node.ripple { animation: nodeRipple 0.7s ease-out forwards; }

/* ─── Accent colour ───────────────────────────────────────── */
.accent {
  color: #C1FF10;
  -webkit-text-fill-color: #C1FF10;
}

/* ─── Nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Nav logo: crop the square canvas to show only the content region */
.nav-logo {
  display: block;
  position: relative;
  flex-shrink: 0;
  width: 148px;
  height: 25px;
  overflow: hidden;
}
.nav-logo-img {
  position: absolute;
  width: 186px;
  height: 186px;
  left: -19px;
  top: -78px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-left: 12px;
}

.nav-links a {
  position: relative;
  padding: 6px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 6px;
  transition: color 200ms var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: #C1FF10;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }

/* ── Hamburger button ───────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 12px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 300ms ease, opacity 200ms ease;
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav drawer ──────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 199;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 24px 24px 32px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 280ms ease, opacity 280ms ease;
}
.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
.mobile-nav-links a {
  display: block;
  padding: 12px 8px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 200ms ease;
}
.mobile-nav-links a:hover { color: #fff; }
.mobile-nav-cta { width: 100%; text-align: center; justify-content: center; }

@media (max-width: 600px) {
  .nav-hamburger { display: flex; }
  .nav-actions .btn-primary { display: none; }
  .mobile-nav { display: block; }
}

.btn-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 200ms var(--ease);
}
.btn-link:hover { color: #fff; }

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 6px;
  background: #C1FF10;
  color: #000;
  border: none;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.btn-primary::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #C1FF10;
  color: #000;
  font-weight: 600;
  animation: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(193,255,16,0.45), 0 4px 20px rgba(0,0,0,0.4);
}
.btn-primary:hover::after {
  animation: glitch 0.4s steps(1) forwards;
}

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.hero-shader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  touch-action: none;
  background: #000;
}

.hero-container { position: relative; z-index: 10; width: 100%; }

.hero-content {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(193,255,16,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(193,255,16,0.75);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 80px);
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 24px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
  max-width: 520px;
  margin: 0 auto;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ─── Hero entry animations ───────────────────────────────── */
@keyframes fade-in-down {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-down { animation: fade-in-down 0.8s ease-out forwards; }
.animate-fade-in-up   { animation: fade-in-up 0.8s ease-out forwards; opacity: 0; }
.anim-delay-200 { animation-delay: 0.2s; }
.anim-delay-400 { animation-delay: 0.4s; }
.anim-delay-600 { animation-delay: 0.6s; }

/* glitch keyframes for primary CTA */
@keyframes glitch {
  0%,100% { clip-path: inset(0 0 100% 0); transform: translateX(0); }
  20%      { clip-path: inset(20% 0 60% 0); transform: translateX(-3px); }
  40%      { clip-path: inset(50% 0 30% 0); transform: translateX(3px); }
  60%      { clip-path: inset(70% 0 10% 0); transform: translateX(-2px); }
  80%      { clip-path: inset(10% 0 80% 0); transform: translateX(2px); }
}

.btn-hero-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #C1FF10;
  color: #000;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.btn-hero-primary::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #C1FF10;
  color: #000;
  font-weight: 600;
  animation: none;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(193,255,16,0.5), 0 6px 24px rgba(0,0,0,0.5);
}
.btn-hero-primary:hover::after {
  animation: glitch 0.4s steps(1) forwards;
}

.btn-hero-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: rgba(193,255,16,0.9);
  padding: 14px 32px;
  border: 1px solid rgba(193,255,16,0.35);
  border-radius: 6px;
  background: rgba(193,255,16,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.btn-hero-secondary::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(193,255,16,0.06);
  color: rgba(193,255,16,0.9);
  font-weight: 600;
  animation: none;
}
.btn-hero-secondary:hover {
  border-color: rgba(193,255,16,0.6);
  background: rgba(193,255,16,0.1);
}
.btn-hero-secondary:hover::after {
  animation: glitch 0.4s steps(1) forwards;
}

/* ─── Logos — infinite slider ─────────────────────────────── */
.logos {
  padding: 64px 0 48px;
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logos-heading {
  text-align: center;
  margin-bottom: 40px;
}

.logos-sub {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: rgba(193,255,16,0.75);
  text-shadow:
    0 0 18px rgba(193,255,16,0.45),
    0 0 40px rgba(193,255,16,0.2);
}

.logos-main {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-top: 6px;
}

/* Slider wrapper — full bleed relative to section */
.logos-slider-outer {
  position: relative;
  overflow: hidden;
}

.logos-track-wrap {
  overflow: hidden;
  padding: 16px 0;
}

/* The track: two identical sets side-by-side; animation drives left by 50%
   which puts us back to the start of the second set → seamless loop       */
.logos-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: logos-scroll 35s linear infinite;
}

.logos-track:hover,
.logos-track.is-paused {
  animation-play-state: paused;
}

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

.logo-img {
  height: 33px;
  width: auto;
  flex-shrink: 0;
  /* invert to white — matches dark:brightness-0 dark:invert in the React component */
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: opacity 200ms var(--ease);
  user-select: none;
  pointer-events: none;
}

/* Progressive blur edges — vanilla equivalent of <ProgressiveBlur> */
.logos-edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  pointer-events: none;
  z-index: 2;
}

.logos-edge--left {
  left: 0;
  background: linear-gradient(to right,
    #000 0%,
    rgba(0,0,0,0.85) 20%,
    rgba(0,0,0,0.6)  40%,
    rgba(0,0,0,0.3)  65%,
    transparent      100%
  );
}

.logos-edge--right {
  right: 0;
  background: linear-gradient(to left,
    #000 0%,
    rgba(0,0,0,0.85) 20%,
    rgba(0,0,0,0.6)  40%,
    rgba(0,0,0,0.3)  65%,
    transparent      100%
  );
}

/* ─── Feature Sections ────────────────────────────────────── */
.feature-section {
  padding: 128px 0 80px;
  position: relative;
  overflow: hidden;
}

.feature-section .pixel-grid { opacity: 0.4; }

.section-intro {
  max-width: 520px;
  margin-bottom: 64px;
}

.feature-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.7;
}
.feature-label--green  { color: #fff; }
.feature-label--purple { color: #fff; }
.feature-label--pink   { color: #fff; }

.feature-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #FFFFFF;
}
.feature-title--green,
.feature-title--purple,
.feature-title--pink   { color: #FFFFFF; }

.feature-body {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.feature-link {
  position: relative;
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  transition: opacity 200ms var(--ease);
}
.feature-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}
.feature-link:hover { opacity: 0.85; }
.feature-link:hover::after { transform: scaleX(1); }
.feature-link--green,
.feature-link--purple,
.feature-link--pink   { color: #C1FF10; }

/* ─── Section Visual (UI card) ────────────────────────────── */
.section-visual { margin-bottom: 80px; }

.ui-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(0,0,0,0.8);
  max-width: 800px;
  transition: border-color 300ms var(--ease), box-shadow 300ms var(--ease), transform 300ms var(--ease);
}
.ui-card:hover {
  border-color: rgba(193,255,16,0.25);
  box-shadow: 0 16px 64px rgba(0,0,0,0.8), 0 0 0 1px rgba(193,255,16,0.1), 0 0 32px rgba(193,255,16,0.06);
  transform: scale(1.015);
}

.ui-card-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}

.ui-dot { width: 12px; height: 12px; border-radius: 50%; }
.ui-dot--red    { background: #ff5f57; }
.ui-dot--yellow { background: #ffbd2e; }
.ui-dot--green  { background: #28c840; }

.ui-card-title {
  margin-left: 8px;
  font-size: 13px;
  font-family: var(--fontStack-monospace);
  color: var(--muted);
}

.ui-card-body { padding: 28px; }

.ui-card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}

/* Code block */
.code-block {
  font-family: var(--fontStack-monospace);
  font-size: 14px;
  line-height: 1.9;
}
.code-line   { display: block; }
.code-indent { padding-left: 24px; }

.code-suggest {
  background: rgba(193,255,16,0.05);
  border-left: 2px solid #C1FF10;
  margin: 0 -28px;
  padding: 2px 28px;
}

.code-keyword { color: var(--syn-keyword); }
.code-fn      { color: var(--syn-fn); }
.code-string  { color: var(--syn-string); }
.code-comment { color: var(--syn-comment); font-style: italic; }

/* ─── Audit card ──────────────────────────────────────────── */
.audit-steps {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.audit-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.step-check { font-size: 14px; flex-shrink: 0; }
.step-check--green  { color: #C1FF10; }
.step-check--purple { color: var(--purple); animation: spin 1.4s linear infinite; display: inline-block; }

@keyframes spin { to { transform: rotate(360deg); } }

.step-label { flex: 1; }
.step-time  { font-size: 12px; font-family: var(--fontStack-monospace); opacity: 0.4; }

.audit-alerts { display: flex; flex-direction: column; gap: 12px; }

.alert-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.alert-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.alert-dot--green  { background: #C1FF10; }
.alert-dot--yellow { background: #d4a72c; }
.alert-dot--red    { background: #f85149; }

.alert-label { flex: 1; }

.alert-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
}
.alert-badge--green  { background: rgba(193,255,16,0.12); color: #C1FF10; }
.alert-badge--yellow { background: rgba(212,167,44,0.15); color: #d4a72c; }
.alert-badge--red    { background: rgba(248,81,73,0.15);  color: #f85149; }

/* ─── Section callout ─────────────────────────────────────── */
.section-callout {
  max-width: 560px;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 80px;
}
.section-callout strong { color: #fff; }

/* ─── Section stat ────────────────────────────────────────── */
.section-stat {
  padding-top: 64px;
  border-top: 1px solid var(--border-subtle);
}

.stat-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-number--green,
.stat-number--purple { color: #C1FF10; }

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  color: #fff;
}

.stat-detail {
  margin-top: 10px;
  font-size: 16px;
  color: var(--muted);
}

.stat-link {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 200ms var(--ease);
}
.stat-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}
.stat-link:hover::after { transform: scaleX(1); }
.stat-link--green { color: #C1FF10; }

/* ─── Green glow panel ────────────────────────────────────── */
.glow-panel { padding: 48px 0; }

.glow-panel-inner {
  position: relative;
  height: 420px;
  border-radius: 16px;
  background: #030a00;
  border: 1px solid rgba(193,255,16,0.12);
  overflow: hidden;
}

.glow-panel-inner .pixel-grid { opacity: 0.6; }

.glow-panel-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 300px;
  background: radial-gradient(ellipse at 50% 100%, rgba(193,255,16,0.18) 0%, rgba(70,120,0,0.1) 35%, transparent 70%);
  pointer-events: none;
}

/* ─── Two-column callout ──────────────────────────────────── */
.section-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
  align-items: start;
}

.two-col-text {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}
.two-col-text strong { color: #fff; }

.brand-card {
  background: var(--bg-2);
  border: 1px solid rgba(193,255,16,0.1);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 300ms var(--ease), box-shadow 300ms var(--ease), transform 300ms var(--ease);
}
.brand-card:hover {
  border-color: rgba(193,255,16,0.3);
  box-shadow: 0 0 24px rgba(193,255,16,0.07);
  transform: scale(1.015);
}

.brand-card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.brand-card-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.brand-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(248,81,73,0.06);
  border: 1px solid rgba(248,81,73,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 16px;
}

.brand-alert-icon  { font-size: 18px; }
.brand-alert-title { font-size: 13px; font-weight: 600; color: #f85149; }
.brand-alert-sub   { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ─── Collaboration grid ──────────────────────────────────── */
.collab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.collab-col { display: flex; flex-direction: column; gap: 12px; }
.collab-col--offset { margin-top: 32px; }

.collab-card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color 300ms var(--ease), box-shadow 300ms var(--ease), transform 300ms var(--ease);
}
.collab-card-item:hover {
  border-color: rgba(193,255,16,0.25);
  box-shadow: 0 0 16px rgba(193,255,16,0.05);
  transform: scale(1.015);
}

.collab-status { font-size: 16px; flex-shrink: 0; }
.collab-status--open { color: #C1FF10; }
.collab-status--done { color: var(--purple); }

.collab-info { flex: 1; min-width: 0; }
.collab-title { display: block; font-size: 13px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.collab-meta  { display: block; font-size: 12px; color: var(--muted); margin-top: 3px; }
.collab-comment { font-size: 12px; color: var(--muted-2); white-space: nowrap; }

.collab-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  max-width: 280px;
}

.collab-badge { font-size: 13px; font-weight: 500; color: var(--muted); }
.collab-live  { font-size: 12px; font-weight: 600; color: #C1FF10; }

/* ─── Badge logo ──────────────────────────────────────────── */
.badge-logo-crop {
  width: 94px;
  height: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.badge-logo {
  display: block;
  width: 118px;
  height: 118px;
  margin-left: -12px;
  margin-top: -50px;
}

/* ─── Scroll reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  margin-top: 100px;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Footer logo: same crop approach at 29px content height */
.footer-logo {
  display: block;
  position: relative;
  opacity: 0.55;
  transition: opacity 200ms var(--ease);
  width: 172px;
  height: 29px;
  overflow: hidden;
}
.footer-logo:hover { opacity: 1; }
.footer-logo-img {
  position: absolute;
  width: 216px;
  height: 216px;
  left: -22px;
  top: -91px;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted-2);
}

.footer-links {
  display: flex;
  list-style: none;
  gap: 20px;
  margin-left: auto;
  flex-wrap: wrap;
}

.footer-links a {
  position: relative;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted-2);
  transition: color 200ms var(--ease);
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: #C1FF10;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}
.footer-links a:hover { color: #fff; }
.footer-links a:hover::after { transform: scaleX(1); }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .container  { padding: 0 24px; }
  .nav-inner  { padding: 0 24px; }

  .section-two-col,
  .collab-grid { grid-template-columns: 1fr; }

  .collab-col--offset { margin-top: 0; }
  .hero-orbs  { display: none; }
  .neon-svg   { display: none; }
  .glow-panel-inner { height: 240px; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero { padding: 80px 0 60px; }
  .hero-title {
    -webkit-text-fill-color: #FFFFFF;
    white-space: normal;
    font-size: clamp(32px, 9vw, 52px);
    text-align: center;
  }
  .hero-content { text-align: center; }
  .hero-ctas { justify-content: center; }
  .feature-section { padding: 80px 0 60px; }
}

/* ─── Newsletter section ──────────────────────────────────── */
.newsletter-section {
  padding: 100px 0 80px;
  position: relative;
}

.newsletter-section .pixel-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.kit-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}

/* Kit form brand overrides */
.formkit-form[data-uid="1200572551"] {
  background-color: #0A0A0A !important;
  border: 1px solid rgba(193, 255, 16, 0.15) !important;
  border-radius: 8px !important;
}

.formkit-form[data-uid="1200572551"] .formkit-background {
  display: none !important;
}

.formkit-form[data-uid="1200572551"] [data-style="minimal"] {
  padding: 48px !important;
}

/* Bigger heading, centred */
.formkit-form[data-uid="1200572551"] .formkit-header {
  text-align: center !important;
  margin-bottom: 28px !important;
}

.formkit-form[data-uid="1200572551"] .formkit-header h2 {
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 600 !important;
  color: #fff !important;
  font-size: 2.6rem !important;
  line-height: 1.15 !important;
}

.kit-accent {
  color: #C1FF10 !important;
  -webkit-text-fill-color: #C1FF10 !important;
}

.formkit-form[data-uid="1200572551"] .formkit-subheader,
.formkit-form[data-uid="1200572551"] .formkit-subheader p {
  color: #fff !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
  font-size: 24px !important;
  text-align: center !important;
}

.formkit-form[data-uid="1200572551"] .formkit-guarantee,
.formkit-form[data-uid="1200572551"] .formkit-guarantee p {
  color: #B0B0B0 !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
  font-size: 10px !important;
  text-align: center !important;
}

/* Email + button: always side-by-side, higher specificity to beat Kit's inline <style> */
.formkit-form[data-uid="1200572551"] .formkit-fields {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 8px !important;
  margin-top: 28px !important;
}

.formkit-form[data-uid="1200572551"] .formkit-fields .formkit-field {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  margin: 0 !important;
}

.formkit-form[data-uid="1200572551"] .formkit-input {
  background: #111 !important;
  color: #fff !important;
  border-color: rgba(193, 255, 16, 0.2) !important;
  border-radius: 4px !important;
  width: 100% !important;
  height: 52px !important;
  font-size: 15px !important;
  padding: 0 18px !important;
}

.formkit-form[data-uid="1200572551"] .formkit-input:focus {
  border-color: #C1FF10 !important;
  outline: none !important;
}

.formkit-form[data-uid="1200572551"] .formkit-input::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}

/* Submit button — chunky + glitch effect */
.formkit-form[data-uid="1200572551"] .formkit-fields .formkit-submit {
  flex: 0 0 auto !important;
  margin: 0 !important;
  background-color: #C1FF10 !important;
  color: #000 !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  border-radius: 4px !important;
  min-width: 148px !important;
  height: 52px !important;
  position: relative !important;
  overflow: hidden !important;
}

.formkit-form[data-uid="1200572551"] .formkit-submit > span {
  padding: 0 28px !important;
  height: 52px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Glitch overlay — identical to .btn-primary approach */
.formkit-form[data-uid="1200572551"] .formkit-submit::after {
  content: 'Subscribe';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #C1FF10;
  color: #000;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  animation: none;
  pointer-events: none;
}

.formkit-form[data-uid="1200572551"] .formkit-submit:hover::after {
  animation: glitch 0.4s steps(1) forwards;
}

/* Hide glitch overlay while spinner is active */
.formkit-form[data-uid="1200572551"] .formkit-submit[data-active]::after {
  display: none !important;
}

.formkit-form[data-uid="1200572551"] .formkit-powered-by-convertkit-container {
  display: none !important;
}

/* ─── Footer ── centred, subscribe integrated ─────────────── */
.footer-inner {
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 16px !important;
}

.footer-links {
  margin-left: 0 !important;
  justify-content: center !important;
}

.footer-subscribe {
  width: 100%;
  border-top: none;
  padding-top: 0;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-subscribe-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.footer-sub-form input[type="email"] {
  width: 220px;
  background: #111;
  border: 1px solid rgba(193, 255, 16, 0.2);
  border-radius: 4px;
  padding: 9px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #fff;
  outline: none;
  transition: border-color 200ms var(--ease);
}

.footer-sub-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-sub-form input[type="email"]:focus {
  border-color: #C1FF10;
}

.footer-sub-form .btn-sub {
  flex-shrink: 0;
  background: #C1FF10;
  color: #000;
  border: none;
  border-radius: 4px;
  padding: 9px 18px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 200ms var(--ease);
}

.footer-sub-form .btn-sub:hover { opacity: 0.88; }

/* ─── Newsletter page ─────────────────────────────────────── */
.newsletter-page-hero {
  padding: 100px 0 20px;
  text-align: center;
  position: relative;
}

.newsletter-page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.newsletter-page-hero p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #B0B0B0;
  max-width: 480px;
  margin: 0 auto 56px;
}

@media (max-width: 600px) {
  .newsletter-section { padding: 60px 0; }
  .formkit-form[data-uid="1200572551"] [data-style="minimal"] { padding: 24px !important; }
  .formkit-form[data-uid="1200572551"] .formkit-fields { flex-wrap: wrap !important; }
  .formkit-form[data-uid="1200572551"] .formkit-submit { min-width: 100% !important; height: 48px !important; }
  .footer-sub-form { width: 100%; }
  .footer-sub-form input[type="email"] { width: 100%; flex: 1; }
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

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

.t-badge {
  margin-bottom: 28px !important;
}

.testimonials-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.testimonials-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 380px;
  margin-bottom: 36px;
}

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

.t-dot {
  height: 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
  width: 10px;
  padding: 0;
}

.t-dot.active {
  width: 32px;
  background: #C1FF10;
}

.testimonials-right {
  display: grid;
}

.t-card {
  grid-area: 1 / 1;
  background: #0F0F0F;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(60px) scale(0.97);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.t-card.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: all;
}

.t-stars {
  color: #f5c518;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.t-quote {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  font-style: normal;
  flex: 1;
  margin-bottom: 24px;
}

.t-sep {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(193,255,16,0.3);
  flex-shrink: 0;
}

.t-avatar-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(193,255,16,0.12);
  color: #C1FF10;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.t-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.t-role {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .testimonials-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .testimonials-right { min-height: unset; }
  .testimonials-sub { max-width: 100%; }
}

/* ── Newsletter popup ──────────────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.popup-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

.popup-card {
  position: relative;
  background: #0A0A0A;
  border: 1px solid rgba(193, 255, 16, 0.35);
  border-radius: 16px;
  padding: 48px 44px 40px;
  max-width: 580px;
  width: 100%;
  transform: translateY(24px);
  transition: transform 0.4s ease;
}

.popup-overlay.is-visible .popup-card {
  transform: translateY(0);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}

.popup-close:hover { color: #fff; }

.popup-header h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
  text-align: center;
}

.popup-sub {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 28px;
  text-align: center;
}

.popup-fields {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.popup-input {
  flex: 1;
  height: 52px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 0 16px;
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}

.popup-input:focus { border-color: #C1FF10; }
.popup-input::placeholder { color: rgba(255,255,255,0.35); }

.popup-submit {
  position: relative;
  height: 52px;
  padding: 0 28px;
  background: #C1FF10;
  color: #0A0A0A;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.popup-submit:hover { opacity: 0.88; }

.popup-submit::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #C1FF10;
  color: #0A0A0A;
  clip-path: inset(0 0 100% 0);
  animation: glitch 4s steps(1) infinite;
}

.popup-guarantee {
  margin-top: 16px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  text-align: center;
}

@media (max-width: 480px) {
  .popup-card { padding: 36px 24px 28px; }
  .popup-fields { flex-wrap: wrap; }
  .popup-submit { width: 100%; }
}

/* ── Work with Alex page ───────────────────────────────────── */
.wwa-hero {
  position: relative;
  padding: 120px 0 80px;
  text-align: center;
  overflow: hidden;
}

.wwa-hero-inner {
  position: relative;
  z-index: 2;
}

.wwa-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
  margin: 24px 0 20px;
}

.wwa-sub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.wwa-form-section {
  padding: 60px 0 120px;
}

.wwa-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.wwa-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.wwa-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wwa-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.wwa-required { color: #C1FF10; }
.wwa-optional { color: var(--muted-2); font-weight: 400; font-size: 0.82rem; }

.wwa-input {
  background: #0F0F0F;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 18px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  -webkit-appearance: none;
}

.wwa-input::placeholder { color: rgba(255,255,255,0.25); }

.wwa-input:focus {
  border-color: rgba(193,255,16,0.6);
  box-shadow: 0 0 0 3px rgba(193,255,16,0.08);
}

.wwa-input.has-error {
  border-color: rgba(255,80,80,0.6);
}

.wwa-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.wwa-select-wrap {
  position: relative;
}

.wwa-select {
  cursor: pointer;
  padding-right: 42px;
}

.wwa-select option { background: #111; color: #fff; }

.wwa-select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  font-size: 0.9rem;
}

.wwa-error {
  font-size: 0.8rem;
  color: #ff6b6b;
  display: none;
}

.wwa-error.is-visible { display: block; }

.wwa-submit-wrap {
  padding-top: 8px;
}

.wwa-submit {
  position: relative;
  width: 100%;
  height: 56px;
  background: #C1FF10;
  color: #0A0A0A;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

.wwa-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(193,255,16,0.4);
}

.wwa-submit::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #C1FF10;
  color: #0A0A0A;
  clip-path: inset(0 0 100% 0);
  animation: glitch 4s steps(1) infinite;
}

.wwa-success {
  display: none;
  text-align: center;
  padding: 80px 40px;
}

.wwa-success.is-visible { display: block; }

.wwa-success-icon {
  font-size: 2.5rem;
  color: #C1FF10;
  margin-bottom: 24px;
}

.wwa-success-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.wwa-success-body {
  color: var(--muted);
  font-size: 1rem;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Coming Soon (Education) ───────────────────────────────── */
.coming-soon-section {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.coming-soon-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.coming-soon-title {
  font-family: var(--font-heading);
  font-size: clamp(64px, 12vw, 160px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  margin: 24px 0 28px;
}

.coming-soon-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ── Centered Feature Sections (Performance-Based / How it Works) ── */
.centered-feature-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.centered-feature-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.centered-feature-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
  margin: 8px 0 20px;
}

.centered-feature-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.perf-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 900px;
}

.perf-pillar {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
}

.perf-pillar-num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #C1FF10;
  margin-bottom: 16px;
}

.perf-pillar-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.perf-pillar-body {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.hiw-centered {
  max-width: 620px;
  width: 100%;
  text-align: left;
}

/* ── How it Works steps ────────────────────────────────────── */
.how-it-works-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px;
  max-width: 640px;
}

.hiw-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.hiw-num {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: #C1FF10;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  padding-top: 3px;
  width: 28px;
}

.hiw-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.hiw-body {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── Follow on X ───────────────────────────────────────────── */
.follow-x-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.follow-x-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.follow-x-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #C1FF10;
  box-shadow: 0 0 20px rgba(193,255,16,0.15);
  margin-bottom: 4px;
}

.follow-x-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.follow-x-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
}

.follow-x-sub {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 420px;
  line-height: 1.65;
}

.follow-x-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #fff;
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 100px;
  margin-top: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.follow-x-btn:hover {
  background: #C1FF10;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(193,255,16,0.3);
}

.follow-x-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Industries section ────────────────────────────────────── */
.industries-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.industries-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.industries-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
}

.industries-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 48px;
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.industry-tag {
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.04);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.industry-tag:hover {
  border-color: rgba(193,255,16,0.5);
  color: #C1FF10;
  background: rgba(193,255,16,0.06);
}

/* ── Dooty Calls section ───────────────────────────────────── */
.dooty-section {
  position: relative;
  padding: 100px 0 100px;
  padding-top: 148px;
  overflow: visible;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.dooty-section .pixel-grid {
  overflow: hidden;
  position: absolute;
  inset: 0;
}

.dooty-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.dooty-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
  margin: 16px 0 24px;
}

.dooty-body {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.dooty-body em { color: #fff; font-style: normal; font-weight: 600; }

.dooty-card {
  background: #0F0F0F;
  border: 1px solid rgba(193,255,16,0.2);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: visible;
}

.dooty-floating-logo {
  position: absolute;
  top: -52px;
  right: -28px;
  width: 160px;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
  z-index: 10;
}

.dooty-card-label {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.dooty-card-sub {
  font-size: 0.85rem;
  color: var(--muted-2);
  margin-bottom: 36px;
}

.dooty-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.dooty-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #C1FF10;
  line-height: 1;
  margin-bottom: 4px;
}

.dooty-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
}

.dooty-tag-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dooty-tag {
  font-size: 0.78rem;
  color: rgba(193,255,16,0.7);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C1FF10;
  flex-shrink: 0;
  animation: live-pulse 1.8s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(193,255,16,0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(193,255,16,0); }
}

@media (max-width: 768px) {
  .dooty-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ── Services section ──────────────────────────────────────── */
.services-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.services-inner {
  position: relative;
  z-index: 2;
}

.services-header {
  max-width: 640px;
  margin-bottom: 64px;
}

.services-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
  margin: 16px 0 20px;
}

.services-intro {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

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

.service-card {
  background: #0A0A0A;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: rgba(193,255,16,0.25);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 1.4rem;
  color: #C1FF10;
  margin-bottom: 20px;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .perf-pillars { grid-template-columns: 1fr; max-width: 520px; }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
}
