/* ==========================================================
   NeoReach — Concept site by Avara Designs
   B2B SaaS marketing for an AI lead-follow-up tool.
   Niche-scoped palette: green (live) + amber (highlight) on
   near-black with Geist Mono dashboards. Concept-page exception
   to the toolkit's single-accent rule (per §9 imagery rules).
   ========================================================== */

:root {
  /* Palette — scoped to NeoReach */
  --neo-bg:        #080808;
  --neo-bg-2:      #0E0E0E;
  --neo-bg-3:      #141414;
  --neo-border:    #1E1E1E;
  --neo-border-strong: #2A2A2A;
  --neo-ink:       #F5F5F3;
  --neo-ink-soft:  #A3A3A0;
  --neo-ink-faint: #6B6B68;

  --neo-green:     #22C55E;
  --neo-green-dim: rgba(34, 197, 94, 0.15);
  --neo-amber:     #F59E0B;
  --neo-amber-dim: rgba(245, 158, 11, 0.14);

  --neo-display: 'Inter', system-ui, -apple-system, sans-serif;
  --neo-mono:    'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  --neo-ease:    cubic-bezier(0.22, 1, 0.36, 1);
}

*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--neo-bg);
  color: var(--neo-ink);
  font-family: var(--neo-display);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image:
    radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: center;
  background-attachment: fixed;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: transparent; border: 0; color: inherit; }

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

.neo-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.neo-section { padding-block: clamp(96px, 14vw, 192px); position: relative; }

/* ---------- TYPE ---------- */

.neo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--neo-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neo-green);
}
.neo-eyebrow-amber { color: var(--neo-amber); }
.neo-eyebrow-muted { color: var(--neo-ink-soft); }
.neo-eyebrow .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 currentColor;
  animation: neoPulse 2s var(--neo-ease) infinite;
}
@keyframes neoPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
@media (prefers-reduced-motion: reduce) { .neo-eyebrow .pulse-dot { animation: none; } }

.neo-h1 {
  font-family: var(--neo-display);
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
}
.neo-h2 {
  font-family: var(--neo-display);
  font-size: clamp(36px, 5.6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.neo-h3 {
  font-family: var(--neo-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.neo-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--neo-ink-soft);
  max-width: 60ch;
}
.neo-fineprint { font-size: 13px; color: var(--neo-ink-faint); }

/* ---------- BUTTONS ---------- */

.neo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform 200ms var(--neo-ease), background 200ms ease, color 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.neo-btn-primary {
  background: var(--neo-green);
  color: var(--neo-bg);
}
.neo-btn-primary:hover {
  background: #16A34A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,197,94,0.32);
}
.neo-btn-ghost {
  background: transparent;
  color: var(--neo-ink-soft);
  border-color: var(--neo-border);
}
.neo-btn-ghost:hover {
  color: var(--neo-ink);
  border-color: var(--neo-border-strong);
  transform: translateY(-2px);
}
.neo-btn-text {
  background: transparent;
  color: var(--neo-ink-soft);
  padding: 14px 8px;
  border: none;
  border-bottom: 1px solid transparent;
}
.neo-btn-text:hover { color: var(--neo-green); border-bottom-color: var(--neo-green); }

/* ---------- NAV ---------- */

.neo-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 16px 0;
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease, padding 240ms ease;
}
.neo-nav.scrolled {
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--neo-border);
  padding: 10px 0;
}
.neo-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.neo-brand {
  font-family: var(--neo-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--neo-ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.neo-brand::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neo-green);
  margin-bottom: 1px;
  box-shadow: 0 0 8px rgba(34,197,94,0.55);
}
.neo-nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--neo-ink-soft);
}
.neo-nav-links a:hover { color: var(--neo-ink); }
.neo-nav-actions { display: flex; gap: 12px; align-items: center; }
.neo-nav-actions .neo-btn { padding: 10px 16px; font-size: 14px; }

@media (max-width: 880px) {
  .neo-nav-links { display: none; }
  .neo-nav-actions .neo-btn-text { display: none; }
}

/* ---------- HERO ---------- */

.neo-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 96px;
  position: relative;
  overflow: hidden;
}
.neo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(34, 197, 94, 0.08), transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(245, 158, 11, 0.05), transparent 45%);
  pointer-events: none;
}
.neo-hero-inner { position: relative; z-index: 1; max-width: 920px; }
.neo-hero h1 { margin: 24px 0 28px; }
.neo-hero h1 .accent { color: var(--neo-ink); }
.neo-hero .neo-sub { margin: 0 auto 36px; }
.neo-hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Live receipt bar — pulsing chip with real numbers from Avara */
.neo-livebar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid var(--neo-border);
  background: rgba(255,255,255,0.02);
  font-family: var(--neo-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--neo-ink-soft);
  margin-top: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.neo-livebar strong {
  color: var(--neo-ink);
  font-weight: 600;
  font-feature-settings: 'tnum';
}
.neo-livebar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neo-green);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: liveBarPulse 2s ease-out infinite;
}
@keyframes liveBarPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@media (prefers-reduced-motion: reduce) { .neo-livebar-dot { animation: none; } }
.neo-livebar-sep { color: var(--neo-ink-faint); margin-inline: 4px; }
.neo-livebar-link {
  color: var(--neo-ink-soft);
  text-decoration: underline;
  text-decoration-color: var(--neo-border);
  text-underline-offset: 3px;
}
.neo-livebar-link:hover { color: var(--neo-green); text-decoration-color: var(--neo-green); }
@media (max-width: 720px) {
  .neo-livebar { font-size: 11px; padding: 8px 14px; gap: 8px; }
  .neo-livebar-text { display: flex; flex-direction: column; gap: 4px; line-height: 1.4; }
  .neo-livebar-sep { display: none; }
}

/* Old trustbar styles (no longer in markup but kept harmless) */
.neo-trustbar {
  border-top: 1px solid var(--neo-border);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.neo-trustbar-label {
  font-family: var(--neo-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neo-ink-faint);
}
.neo-trustbar-logos {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 64px);
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--neo-ink-soft);
  opacity: 0.85;
}

/* ---------- DASHBOARD SECTION ---------- */

.neo-dash-head {
  text-align: center;
  margin-bottom: 56px;
}
.neo-dash-head h2 { margin-top: 12px; margin-bottom: 16px; }
.neo-dash-head .neo-sub { margin: 0 auto; }

.neo-tabs {
  display: inline-flex;
  margin: 32px auto 48px;
  padding: 6px;
  border: 1px solid var(--neo-border);
  border-radius: 100px;
  background: var(--neo-bg-2);
  gap: 4px;
}
.neo-tabs-wrap { text-align: center; }
.neo-tab {
  font-family: var(--neo-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 100px;
  color: var(--neo-ink-soft);
  transition: background 200ms ease, color 200ms ease;
}
.neo-tab:hover { color: var(--neo-ink); }
.neo-tab.is-active {
  background: var(--neo-bg-3);
  color: var(--neo-ink);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Laptop frame mockup */
.neo-laptop {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 12px 0;
  background: linear-gradient(180deg, #1A1A1A, #0E0E0E);
  border: 1px solid var(--neo-border);
  border-radius: 16px 16px 4px 4px;
  box-shadow: 0 60px 120px -40px rgba(0,0,0,0.85), 0 0 0 1px rgba(34,197,94,0.04);
}
.neo-laptop::after {
  content: '';
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -14px;
  height: 14px;
  background: linear-gradient(180deg, #1F1F1F, #0E0E0E);
  border-radius: 0 0 12px 12px;
  border: 1px solid var(--neo-border);
  border-top: none;
  z-index: -1;
}
.neo-laptop-screen {
  background: var(--neo-bg-2);
  border: 1px solid var(--neo-border);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 560px;
}
@media (max-width: 880px) {
  .neo-laptop-screen { grid-template-columns: 1fr; min-height: auto; }
}

/* Sidebar */
.neo-sidebar {
  background: #0A0A0A;
  border-right: 1px solid var(--neo-border);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.neo-sidebar-brand {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 10px 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--neo-ink);
}
.neo-sidebar-brand::after {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--neo-green);
}
.neo-sidebar a {
  font-size: 13px;
  color: var(--neo-ink-soft);
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 180ms ease, color 180ms ease;
}
.neo-sidebar a:hover { background: var(--neo-bg-3); color: var(--neo-ink); }
.neo-sidebar a.is-active { background: rgba(34,197,94,0.08); color: var(--neo-green); }
.neo-sidebar a svg { flex-shrink: 0; opacity: 0.85; }
@media (max-width: 880px) {
  .neo-sidebar { display: none; }
}

/* Top bar */
.neo-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--neo-border);
  background: #0A0A0A;
}
.neo-search {
  flex: 1;
  background: var(--neo-bg-3);
  border: 1px solid var(--neo-border);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--neo-ink-soft);
  font-family: var(--neo-mono);
  display: flex;
  align-items: center;
  gap: 8px;
}
.neo-search-key {
  margin-left: auto;
  padding: 1px 6px;
  border: 1px solid var(--neo-border);
  border-radius: 4px;
  font-size: 10px;
}
.neo-topbar-icon {
  width: 32px; height: 32px;
  border: 1px solid var(--neo-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neo-ink-soft);
  position: relative;
}
.neo-topbar-icon .dot-indicator {
  position: absolute;
  top: 6px; right: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neo-green);
}
.neo-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D9603B, #F59E0B);
}

/* Dashboard panels */
.neo-dash-main {
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
@media (max-width: 720px) {
  .neo-dash-main { grid-template-columns: 1fr; }
}

.neo-panel {
  background: var(--neo-bg-3);
  border: 1px solid var(--neo-border);
  border-radius: 10px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 180px;
}
.neo-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--neo-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neo-ink-faint);
}
.neo-panel-stat {
  font-family: var(--neo-mono);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--neo-ink);
  line-height: 1;
}
.neo-panel-stat .currency {
  font-size: 0.6em;
  margin-right: 2px;
  color: var(--neo-ink-soft);
}
.neo-panel-sub {
  font-size: 12px;
  color: var(--neo-ink-soft);
  font-family: var(--neo-mono);
}
.neo-panel-trend {
  color: var(--neo-green);
  font-family: var(--neo-mono);
  font-size: 12px;
  font-weight: 600;
}

/* Live feed */
.neo-feed {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--neo-ink-soft);
}
.neo-feed-row {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.05);
  font-family: var(--neo-mono);
  font-size: 11px;
}
.neo-feed-row:last-child { border-bottom: none; }
.neo-feed-row .arrow { color: var(--neo-green); font-weight: 700; }
.neo-feed-row .check { color: var(--neo-green); }
.neo-feed-row strong { color: var(--neo-ink); font-weight: 600; }

/* Sequences list */
.neo-sequences {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--neo-mono);
  font-size: 12px;
  color: var(--neo-ink-soft);
}
.neo-seq-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.neo-seq-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neo-green);
  box-shadow: 0 0 8px rgba(34,197,94,0.5);
  flex-shrink: 0;
}

/* Mini bar chart */
.neo-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 38px;
  margin-top: 8px;
}
.neo-bar {
  flex: 1;
  background: var(--neo-green-dim);
  border-radius: 2px;
  min-height: 4px;
  position: relative;
}
.neo-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--neo-green), transparent);
  opacity: 0.6;
  border-radius: 2px;
}

/* Tab pane fade */
.neo-tab-pane {
  display: none;
  animation: neoTabFade 360ms var(--neo-ease);
}
.neo-tab-pane.is-active { display: block; }
@keyframes neoTabFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- HOW IT WORKS ---------- */

.neo-how {
  display: flex;
  flex-direction: column;
  gap: clamp(72px, 10vw, 144px);
}
.neo-how-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  position: relative;
}
@media (max-width: 880px) {
  .neo-how-step { grid-template-columns: 1fr; }
}
.neo-how-step:nth-child(even) { direction: rtl; }
.neo-how-step:nth-child(even) > * { direction: ltr; }

.neo-how-num {
  font-family: var(--neo-display);
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 100;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: #1A1A1A;
  user-select: none;
  pointer-events: none;
  position: absolute;
  top: -32px;
  left: -8px;
  z-index: 0;
}
.neo-how-step:nth-child(even) .neo-how-num { left: auto; right: -8px; }

.neo-how-content {
  position: relative;
  z-index: 1;
}
.neo-how-content h3 {
  font-family: var(--neo-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.neo-how-content p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--neo-ink-soft);
  max-width: 44ch;
}

.neo-how-aside {
  background: var(--neo-bg-2);
  border: 1px solid var(--neo-border);
  border-radius: 12px;
  aspect-ratio: 4/3;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.neo-how-aside::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(34,197,94,0.08), transparent 55%);
  pointer-events: none;
}

/* Step illustrations */
.neo-how-illus {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.neo-snippet {
  background: var(--neo-bg-3);
  border: 1px solid var(--neo-border);
  border-radius: 8px;
  padding: 16px 20px;
  font-family: var(--neo-mono);
  font-size: 12px;
  line-height: 1.5;
  color: var(--neo-ink-soft);
  width: 100%;
  max-width: 360px;
}
.neo-snippet .tk-tag    { color: var(--neo-green); }
.neo-snippet .tk-attr   { color: var(--neo-amber); }
.neo-snippet .tk-string { color: #C8956D; }

.neo-replay {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.neo-replay-msg {
  background: var(--neo-bg-3);
  border: 1px solid var(--neo-border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  font-family: var(--neo-mono);
}
.neo-replay-msg.from-them { border-left: 2px solid var(--neo-amber); }
.neo-replay-msg.from-us   { border-left: 2px solid var(--neo-green); color: var(--neo-ink); }
.neo-replay-time { font-size: 10px; color: var(--neo-ink-faint); margin-top: 4px; }

.neo-flow {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--neo-mono);
  font-size: 12px;
}
.neo-flow-step {
  background: var(--neo-bg-3);
  border: 1px solid var(--neo-border);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--neo-ink-soft);
}
.neo-flow-step .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--neo-green-dim);
  border: 1px solid var(--neo-green);
  color: var(--neo-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- USE CASES ---------- */

.neo-cases-head { text-align: center; margin-bottom: 56px; }
.neo-cases-head h2 { margin-bottom: 16px; }
.neo-cases-head .neo-sub { margin: 0 auto; }

.neo-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
@media (max-width: 880px) {
  .neo-cases {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.neo-case {
  background: var(--neo-bg-2);
  border: 1px solid var(--neo-border);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: transform 320ms var(--neo-ease), border-color 320ms ease, box-shadow 320ms ease;
}
.neo-case:hover {
  transform: translateY(-4px);
  border-color: var(--neo-border-strong);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7);
}
.neo-case.is-active {
  border-color: var(--neo-green);
  background: linear-gradient(180deg, rgba(34,197,94,0.04) 0%, var(--neo-bg-2) 100%);
  box-shadow: 0 0 0 1px rgba(34,197,94,0.5), 0 30px 60px -20px rgba(0,0,0,0.7);
}
.neo-case-icon {
  width: 44px; height: 44px;
  background: var(--neo-bg-3);
  border: 1px solid var(--neo-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neo-green);
}
.neo-case-tags {
  font-family: var(--neo-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--neo-ink-faint);
  text-transform: uppercase;
}
.neo-case h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--neo-ink);
}
.neo-case p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--neo-ink-soft);
}
.neo-case .neo-btn-text {
  margin-top: auto;
  align-self: flex-start;
  padding: 8px 0;
  color: var(--neo-green);
}

/* ---------- PRICING ---------- */

.neo-pricing-head { text-align: center; margin-bottom: 32px; }
.neo-pricing-head h2 { margin-bottom: 16px; }

.neo-billing-toggle {
  display: inline-flex;
  margin: 0 auto 56px;
  padding: 6px;
  border: 1px solid var(--neo-border);
  border-radius: 100px;
  background: var(--neo-bg-2);
  gap: 4px;
  font-family: var(--neo-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.neo-billing-toggle button {
  padding: 10px 18px;
  border-radius: 100px;
  color: var(--neo-ink-soft);
  font-weight: 600;
  transition: background 200ms ease, color 200ms ease;
}
.neo-billing-toggle button.is-active {
  background: var(--neo-bg-3);
  color: var(--neo-ink);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.neo-billing-toggle .save {
  margin-left: 6px;
  color: var(--neo-amber);
  font-size: 10px;
}

.neo-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .neo-tiers { grid-template-columns: 1fr; } }

.neo-tier {
  background: var(--neo-bg-2);
  border: 1px solid var(--neo-border);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform 320ms var(--neo-ease), box-shadow 320ms ease;
}
.neo-tier:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6); }
.neo-tier-popular {
  border-top: 2px solid var(--neo-amber);
  background: linear-gradient(180deg, rgba(245,158,11,0.04) 0%, var(--neo-bg-2) 100%);
}
.neo-tier-popular::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--neo-amber);
  color: #1A0A00;
  font-family: var(--neo-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 5px 10px;
  border-radius: 100px;
  box-shadow: 0 6px 18px rgba(245,158,11,0.4);
}
.neo-tier-name {
  font-family: var(--neo-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.neo-tier-blurb {
  font-size: 13px;
  color: var(--neo-ink-soft);
  line-height: 1.5;
  min-height: 40px;
}
.neo-tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--neo-border);
}
.neo-tier-amount {
  font-family: var(--neo-display);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--neo-ink);
}
.neo-tier-period { font-size: 14px; color: var(--neo-ink-soft); }
.neo-tier ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.neo-tier li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--neo-ink);
  line-height: 1.5;
}
.neo-tier li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 8px;
  border-left: 1.5px solid var(--neo-green);
  border-bottom: 1.5px solid var(--neo-green);
  transform: rotate(-45deg);
}
.neo-tier .neo-btn { width: 100%; }

/* ---------- TESTIMONIALS ---------- */

.neo-quotes-head { text-align: center; margin-bottom: 56px; }
.neo-quotes-head h2 { margin-bottom: 16px; }
.neo-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .neo-quotes { grid-template-columns: 1fr; } }
.neo-quote {
  background: var(--neo-bg-2);
  border: 1px solid var(--neo-border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.neo-quote-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--neo-amber);
}
.neo-quote blockquote {
  font-size: 16px;
  line-height: 1.55;
  color: var(--neo-ink);
}
.neo-quote-attr {
  font-family: var(--neo-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--neo-ink-soft);
}

/* ---------- FINAL CTA ---------- */

.neo-final {
  text-align: center;
  background: linear-gradient(180deg, var(--neo-bg) 0%, #050505 100%);
  border-top: 1px solid var(--neo-border);
  position: relative;
  overflow: hidden;
}
.neo-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(34,197,94,0.18), transparent 55%);
  pointer-events: none;
}
.neo-final-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.neo-final h2 {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 24px 0 16px;
}
.neo-final .neo-sub { margin: 0 auto 32px; }
.neo-final .neo-btn { padding: 18px 40px; font-size: 17px; }
.neo-final-trust {
  margin-top: 24px;
  font-family: var(--neo-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--neo-ink-faint);
}

/* ---------- FOOTER ---------- */

.neo-footer {
  border-top: 1px solid var(--neo-border);
  padding: 56px 0 32px;
  background: #050505;
}
.neo-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 720px) { .neo-footer-inner { grid-template-columns: 1fr; gap: 32px; } }
.neo-footer-tag { color: var(--neo-ink-soft); margin-top: 12px; font-size: 14px; max-width: 36ch; }
.neo-footer-credit {
  margin-top: 12px;
  font-size: 13px;
  color: var(--neo-ink-faint);
}
.neo-footer-credit a {
  color: var(--neo-ink-soft);
  border-bottom: 1px solid var(--neo-border);
  transition: color 180ms ease;
}
.neo-footer-credit a:hover { color: var(--neo-green); }

.neo-footer-col h4 {
  font-family: var(--neo-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neo-ink-faint);
  margin-bottom: 18px;
}
.neo-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.neo-footer-col a {
  font-size: 14px;
  color: var(--neo-ink-soft);
  transition: color 180ms ease;
}
.neo-footer-col a:hover { color: var(--neo-green); }

.neo-footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--neo-border);
  display: flex;
  justify-content: space-between;
  font-family: var(--neo-mono);
  font-size: 12px;
  color: var(--neo-ink-faint);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- REVEAL HOOKS ---------- */

.neo-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--neo-ease), transform 800ms var(--neo-ease);
}
.neo-reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .neo-reveal { opacity: 1; transform: none; } }

/* ---------- CONCEPT FOOTER NOTE ---------- */
.neo-concept-note {
  text-align: center;
  padding: 24px 0;
  font-family: var(--neo-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neo-ink-faint);
  border-top: 1px solid var(--neo-border);
  background: #050505;
}
.neo-concept-note a { color: var(--neo-ink-soft); border-bottom: 1px solid var(--neo-border); }
.neo-concept-note a:hover { color: var(--neo-green); }
