* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: #0a0a0a;
  color: #e0e0e0;
  font-family: 'JetBrains Mono', 'IBM Plex Mono', monospace;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ── VERTICAL RAIL LINES ─────────────────────────────────── */
.rail-left,
.rail-right {
  position: fixed;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    #1e1e1e 8%,
    #1e1e1e 92%,
    transparent 100%);
  pointer-events: none;
  z-index: 5;
}
.rail-left  { left:  clamp(16px, calc(50% - 640px), 640px); }
.rail-right { right: clamp(16px, calc(50% - 640px), 640px); }

.rail-left::after,
.rail-right::after {
  content: '';
  position: absolute;
  left: -2px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #7dd3a8;
  box-shadow: 0 0 6px rgba(125,211,168,0.6);
  animation: railDot 8s linear infinite;
}
.rail-right::after { animation-delay: 4s; }

@keyframes railDot {
  0%   { top: -5px; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { top: calc(100% + 5px); opacity: 0; }
}

/* ── KEYFRAMES ───────────────────────────────────────────── */
@keyframes scanline {
  0%   { top: -20%; }
  100% { top: 120%; }
}
@keyframes pulseGreen {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}
@keyframes runPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}
@keyframes borderGlow {
  0%, 100% { border-color: #1a1a1a; }
  50%       { border-color: rgba(125,211,168,0.16); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
@keyframes barGrow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
@keyframes shimmerSlide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

hr.divider {
  border: none;
  border-top: 1px solid #141414;
  margin: 0;
}

/* ── NAV ────────────────────────────────────────────────── */
nav {
  border-bottom: 1px solid #1a1a1a;
  background: #0a0a0a;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
nav.scrolled {
  background: rgba(10,10,10,0.92);
  border-bottom-color: #222;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.logo-text {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: #d0d0d0;
  transition: opacity 0.2s;
}
.logo-text:hover { opacity: 0.7; }
.logo-text .open { color: #888; }
.logo-text .code { color: #d0d0d0; }

.nav-link {
  font-size: 0.78rem;
  color: #888;
  text-decoration: none;
  font-weight: 400;
  position: relative;
  transition: color 0.18s;
  cursor: pointer;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  height: 1px; width: 0;
  background: #7dd3a8;
  transition: width 0.22s cubic-bezier(0.22,1,0.36,1);
}
.nav-link:hover { color: #d0d0d0; }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: #d0d0d0; }
.nav-link.active::after { width: 100%; background: #7dd3a8; }

.btn-free {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #d0d0d0;
  padding: 5px 14px;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.18s, box-shadow 0.18s;
}
.btn-free:hover {
  background: #222;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.5);
}
.btn-free:active { transform: translateY(0); }

/* ── BANNER ─────────────────────────────────────────────── */
.banner {
  background: #0a0a0a;
  border-bottom: 1px solid #1a1a1a;
  padding: 10px 0;
  text-align: center;
  font-size: 0.75rem;
  color: #888;
}
.banner-new {
  display: inline-block;
  background: #1a2a1a;
  border: 1px solid #2a4a2a;
  color: #7dd3a8;
  font-size: 0.62rem;
  padding: 1px 6px;
  border-radius: 2px;
  margin-right: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
  animation: pulseGreen 3s ease-in-out infinite;
}
.banner a { color: #aaa; text-decoration: underline; transition: color 0.15s; }
.banner a:hover { color: #d0d0d0; }

/* ── HERO ───────────────────────────────────────────────── */
.hero { padding: 60px 0 50px; }
.hero h1 {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 300;
  color: #e8e8e8;
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.hero p {
  font-size: 0.82rem;
  color: #666;
  margin: 0 0 28px;
  line-height: 1.6;
}

/* ── INSTALL BOX ────────────────────────────────────────── */
.install-box {
  background: #111;
  border: 1px solid #222;
  border-radius: 4px;
  overflow: hidden;
  max-width: 480px;
  position: relative;
}
.install-box::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 30px; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  animation: shimmerSlide 2.5s 1s ease both;
  pointer-events: none;
}
.install-tabs {
  display: flex;
  border-bottom: 1px solid #1e1e1e;
  padding: 0 4px;
}
.install-tab {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: #555;
  padding: 7px 10px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  background: none;
  border-top: none; border-left: none; border-right: none;
  margin-bottom: -1px;
  transition: color 0.15s, background 0.15s;
  position: relative;
  overflow: hidden;
}
.install-tab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.04);
  opacity: 0;
  transition: opacity 0.15s;
}
.install-tab:hover::before { opacity: 1; }
.install-tab:hover { color: #aaa; }
.install-tab.active { color: #d0d0d0; border-bottom: 2px solid #d0d0d0; }
.install-cmd {
  padding: 12px 14px;
  font-size: 0.75rem;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.install-cmd .prompt { color: #555; }
.install-cmd .cmd-text { color: #c0c0c0; }
.install-cmd .cmd-url { color: #7dd3a8; }
.copy-btn {
  color: #444;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 0.72rem;
  background: none;
  border: none;
  flex-shrink: 0;
  transition: color 0.15s;
  user-select: none;
}
.copy-btn:hover { color: #888; }
.copy-btn.copied { color: #7dd3a8 !important; }

/* ── HERO BUTTONS ───────────────────────────────────────── */
.hero-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.76rem;
  font-weight: 600;
  background: #e8e8e8;
  color: #0a0a0a;
  padding: 9px 18px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.15s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.hero-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(125,211,168,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.hero-btn-primary:hover::before { transform: translateX(100%); }
.hero-btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,232,232,0.15);
}
.hero-btn-primary:active { transform: translateY(0); box-shadow: none; }
.hero-btn-icon {
  font-size: 0.55rem;
  color: #7dd3a8;
  filter: drop-shadow(0 0 3px rgba(125,211,168,0.6));
}
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.76rem;
  font-weight: 400;
  color: #666;
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 3px;
  border: 1px solid #222;
  background: transparent;
  transition: color 0.18s, border-color 0.18s, background 0.18s, transform 0.2s;
}
.hero-btn-secondary:hover {
  color: #bbb;
  border-color: #3a3a3a;
  background: rgba(255,255,255,0.03);
  transform: translateY(-1px);
}
.hero-btn-secondary:hover .hero-btn-arrow {
  transform: translateX(3px);
}
.hero-btn-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

/* ── TERMINAL ───────────────────────────────────────────── */
.terminal-demo {
  background: #0e0e0e;
  border: 1px solid #1e1e1e;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 24px;
  position: relative;
}
.terminal-demo::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(125,211,168,0.03), transparent);
  pointer-events: none;
  top: -20%;
  animation: scanline 5s linear 2s infinite;
  z-index: 2;
}
.terminal-header {
  background: #141414;
  border-bottom: 1px solid #1e1e1e;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.term-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  display: inline-block;
  transition: background 0.3s;
}
.terminal-header:hover .term-dot:nth-child(1) { background: #ff5f57 !important; }
.terminal-header:hover .term-dot:nth-child(2) { background: #ffbd2e !important; }
.terminal-header:hover .term-dot:nth-child(3) { background: #28c941 !important; }
.term-title { font-size: 0.68rem; color: #444; margin-left: 6px; }
.terminal-body {
  padding: 14px;
  font-size: 0.72rem;
  color: #666;
  line-height: 1.7;
  min-height: 140px;
}
.t-line { display: flex; justify-content: space-between; }
.t-line-text { flex: 1; }
.t-pass { color: #7dd3a8; font-weight: 600; }
.t-time { color: #444; font-size: 0.64rem; }
.run-indicator {
  color: #7dd3a8;
  font-weight: 600;
  animation: runPulse 1.6s ease-in-out infinite;
  display: inline;
}
.terminal-body .tl {
  opacity: 0;
  animation: termFadeIn 0.4s ease both;
}
@keyframes termFadeIn {
  from { opacity: 0; transform: translateX(-3px); }
  to   { opacity: 1; transform: none; }
}
.terminal-body .tl:nth-child(1)  { animation-delay: 0.6s; }
.terminal-body .tl:nth-child(2)  { animation-delay: 0.9s; }
.terminal-body .tl:nth-child(3)  { animation-delay: 1.2s; }
.terminal-body .tl:nth-child(4)  { animation-delay: 1.5s; }
.terminal-body .tl:nth-child(5)  { animation-delay: 1.8s; }
.terminal-body .tl:nth-child(6)  { animation-delay: 2.1s; }
.terminal-body .tl:nth-child(7)  { animation-delay: 2.4s; }
.terminal-body .tl:nth-child(8)  { animation-delay: 2.7s; }
.terminal-body .tl:nth-child(9)  { animation-delay: 3.0s; }
.terminal-body .tl:nth-child(10) { animation-delay: 3.3s; }
.cursor { animation: blink 1s infinite; }

/* ── SECTIONS ───────────────────────────────────────────── */
.section { padding: 60px 0; border-top: 1px solid #141414; }
.section-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #d0d0d0;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  cursor: default;
}
.section-sub {
  font-size: 0.78rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 28px;
}

/* ── FEATURE ITEMS ──────────────────────────────────────── */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  border-radius: 3px;
  padding: 4px 6px;
  margin-left: -6px;
  transition: transform 0.22s ease, background 0.22s ease;
  cursor: default;
}
.feature-item:hover { transform: translateX(5px); background: rgba(255,255,255,0.02); }
.feature-check {
  color: #555;
  font-size: 0.72rem;
  margin-top: 2px;
  flex-shrink: 0;
  transition: color 0.22s;
}
.feature-item:hover .feature-check { color: #7dd3a8; }
.feature-label { font-size: 0.8rem; color: #888; font-weight: 500; }
.feature-label strong { color: #bbb; font-weight: 600; }
.feature-desc { font-size: 0.75rem; color: #555; display: block; margin-top: 1px; }

/* ── BTN DOCS ───────────────────────────────────────────── */
.btn-docs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #888;
  border: 1px solid #2a2a2a;
  background: #111;
  padding: 8px 16px;
  border-radius: 3px;
  text-decoration: none;
  transition: color 0.18s, border-color 0.18s, background 0.18s, transform 0.18s;
  position: relative;
  overflow: hidden;
}
.btn-docs::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(125,211,168,0.04);
  opacity: 0;
  transition: opacity 0.18s;
}
.btn-docs:hover { color: #d0d0d0; border-color: #444; background: #161616; transform: translateX(3px); }
.btn-docs:hover::before { opacity: 1; }

/* ── FEATURE CARDS ──────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #181818;
  border: 1px solid #181818;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 32px;
}
.feature-card {
  background: #0d0d0d;
  padding: 28px 24px;
  transition: background 0.25s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125,211,168,0), transparent);
  transition: background 0.35s;
}
.feature-card:hover { background: #111; }
.feature-card:hover::before {
  background: linear-gradient(90deg, transparent, rgba(125,211,168,0.25), transparent);
}
.feature-card-icon {
  font-size: 1rem;
  margin-bottom: 14px;
  display: inline-block;
  color: #555;
  transition: color 0.2s;
  transform-origin: center center;
  will-change: transform;
}
.feature-card:hover .feature-card-icon { color: #7dd3a8; }
.feature-card-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #bbb;
  margin: 0 0 8px;
  transition: color 0.2s;
}
.feature-card:hover .feature-card-title { color: #e0e0e0; }
.feature-card-desc {
  font-size: 0.72rem;
  color: #444;
  line-height: 1.65;
  margin: 0;
  transition: color 0.2s;
}
.feature-card:hover .feature-card-desc { color: #555; }
.feat-tag {
  display: inline-block;
  font-size: 0.6rem;
  color: #7dd3a8;
  background: rgba(125,211,168,0.07);
  border: 1px solid rgba(125,211,168,0.15);
  padding: 1px 5px;
  border-radius: 2px;
  margin-top: 10px;
  letter-spacing: 0.04em;
}

/* ── STATS ──────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.stat-card {
  background: #0e0e0e;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  padding: 20px;
  text-align: center;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
  animation: borderGlow 5s ease-in-out infinite;
}
.stat-card:nth-child(2) { animation-delay: 1.6s; }
.stat-card:nth-child(3) { animation-delay: 3.2s; }
.stat-card:hover { transform: translateY(-4px); border-color: rgba(125,211,168,0.22); background: #111; }
.stat-img-placeholder { height: 80px; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 8px; }
.stat-label { font-size: 0.65rem; color: #444; margin-top: 8px; }
.stat-card svg polyline {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.22,1,0.36,1) 0.1s;
}
.stat-card.chart-ready svg polyline { stroke-dashoffset: 0; }
.chart-bars { display: flex; gap: 2px; align-items: flex-end; height: 60px; }
.chart-bar {
  background: #2a2a2a;
  border-radius: 1px 1px 0 0;
  flex: 1;
  transform-origin: bottom;
  transform: scaleY(0);
  transition: background 0.2s;
}
.chart-bar.high { background: #3a3a3a; }
.chart-bar:hover { background: rgba(125,211,168,0.4) !important; }
.stat-card.chart-ready .chart-bar { animation: barGrow 0.5s cubic-bezier(0.22,1,0.36,1) both; }
.stat-card.chart-ready .chart-bar:nth-child(1)  { animation-delay: 0.00s; }
.stat-card.chart-ready .chart-bar:nth-child(2)  { animation-delay: 0.04s; }
.stat-card.chart-ready .chart-bar:nth-child(3)  { animation-delay: 0.08s; }
.stat-card.chart-ready .chart-bar:nth-child(4)  { animation-delay: 0.12s; }
.stat-card.chart-ready .chart-bar:nth-child(5)  { animation-delay: 0.16s; }
.stat-card.chart-ready .chart-bar:nth-child(6)  { animation-delay: 0.20s; }
.stat-card.chart-ready .chart-bar:nth-child(7)  { animation-delay: 0.24s; }
.stat-card.chart-ready .chart-bar:nth-child(8)  { animation-delay: 0.28s; }
.stat-card.chart-ready .chart-bar:nth-child(9)  { animation-delay: 0.32s; }
.stat-card.chart-ready .chart-bar:nth-child(10) { animation-delay: 0.36s; }
.stat-card.chart-ready .chart-bar:nth-child(11) { animation-delay: 0.40s; }
.stat-card.chart-ready .chart-bar:nth-child(12) { animation-delay: 0.44s; }
.dotgrid-dot { transition: background 0.4s, transform 0.3s; }
.dotgrid-dot:hover { transform: scale(1.6); background: #7dd3a8 !important; }

/* ── INTEGRATIONS ───────────────────────────────────────── */
.int-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.int-card {
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.int-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125,211,168,0), transparent);
  transition: background 0.3s;
}
.int-card:hover { transform: translateY(-3px); border-color: rgba(125,211,168,0.18); background: #111; }
.int-card:hover::after { background: linear-gradient(90deg, transparent, rgba(125,211,168,0.3), transparent); }
.int-icon {
  width: 32px; height: 32px;
  background: #1a1a1a;
  border: 1px solid #242424;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s, transform 0.25s;
}
.int-card:hover .int-icon { border-color: rgba(125,211,168,0.25); background: rgba(125,211,168,0.06); transform: scale(1.08); }
.int-name { font-size: 0.75rem; font-weight: 600; color: #888; transition: color 0.2s; }
.int-card:hover .int-name { color: #bbb; }
.int-desc { font-size: 0.68rem; color: #3a3a3a; line-height: 1.5; transition: color 0.2s; }
.int-card:hover .int-desc { color: #555; }
.int-status {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  padding: 1px 5px;
  border-radius: 2px;
  font-weight: 600;
}
.int-status.live { color: #7dd3a8; background: rgba(125,211,168,0.07); border: 1px solid rgba(125,211,168,0.15); }
.int-status.beta { color: #f0a868; background: rgba(240,168,104,0.07); border: 1px solid rgba(240,168,104,0.15); }
.int-status.soon { color: #555; background: rgba(255,255,255,0.03); border: 1px solid #222; }

.int-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 24px;
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 4px;
  padding: 3px;
  width: fit-content;
}
.int-tab {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: #555;
  padding: 5px 12px;
  border-radius: 3px;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
.int-tab:hover { color: #888; }
.int-tab.active { color: #d0d0d0; background: #1e1e1e; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid #141414;
  overflow: hidden;
  transition: background 0.2s;
}
.faq-item:hover { background: rgba(255,255,255,0.01); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 0.78rem;
  color: #888;
  padding: 14px 0;
  transition: color 0.2s;
  user-select: none;
}
.faq-q:hover { color: #bbb; }
.faq-item.open .faq-q { color: #d0d0d0; }
.faq-icon {
  color: #444;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), color 0.2s;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: #7dd3a8; }
.faq-answer {
  overflow: hidden;
  height: 0;
  opacity: 0;
  font-size: 0.74rem;
  color: #555;
  line-height: 1.75;
  padding-bottom: 0;
}
.faq-answer-inner {
  padding-bottom: 14px;
}

/* ── ZEN LOGOS ──────────────────────────────────────────── */
.zen-logos { display: flex; gap: 16px; align-items: center; margin: 20px 0; flex-wrap: wrap; }
.zen-logo-pill {
  width: 28px; height: 28px;
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: #555;
  transition: transform 0.22s ease, border-color 0.22s, color 0.22s, background 0.22s;
  cursor: default;
}
.zen-logo-pill:hover { transform: translateY(-4px) scale(1.15); border-color: rgba(125,211,168,0.35); color: #7dd3a8; background: rgba(125,211,168,0.07); }

/* ── CONTACT FORM ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  margin-top: 12px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: transform 0.2s;
  cursor: default;
}
.contact-info-item:hover { transform: translateX(4px); }
.contact-info-icon { font-size: 0.85rem; color: #555; margin-top: 1px; flex-shrink: 0; transition: color 0.2s; }
.contact-info-item:hover .contact-info-icon { color: #7dd3a8; }
.contact-info-label { font-size: 0.68rem; color: #444; margin-bottom: 2px; }
.contact-info-value { font-size: 0.76rem; color: #888; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }
.form-label { font-size: 0.65rem; color: #444; letter-spacing: 0.04em; }
.form-input,
.form-textarea,
.form-select {
  background: #0d0d0d;
  border: 1px solid #1e1e1e;
  color: #888;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  padding: 9px 11px;
  border-radius: 3px;
  outline: none;
  width: 100%;
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: #2e2e2e; }
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: rgba(125,211,168,0.28);
  box-shadow: 0 0 0 3px rgba(125,211,168,0.05);
  background: #111;
  color: #bbb;
}
.form-textarea { resize: vertical; min-height: 90px; }
.form-select { cursor: pointer; color: #444; }
.form-select option { background: #111; }
.btn-submit {
  width: 100%;
  background: #e8e8e8;
  color: #0a0a0a;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 4px;
  transition: background 0.15s, transform 0.18s, box-shadow 0.18s;
  position: relative;
  overflow: hidden;
}
.btn-submit:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(232,232,232,0.18); }
.btn-submit:active { transform: translateY(0); }
.btn-submit.sending { background: #1a2a1a; color: #7dd3a8; border: 1px solid #2a4a2a; }
.btn-submit.sent { background: rgba(125,211,168,0.1); color: #7dd3a8; border: 1px solid rgba(125,211,168,0.25); }

/* ── SUBSCRIBE ──────────────────────────────────────────── */
.subscribe-form { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.subscribe-input {
  flex: 1;
  min-width: 200px;
  background: #111;
  border: 1px solid #222;
  color: #888;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  padding: 9px 12px;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.subscribe-input::placeholder { color: #333; }
.subscribe-input:focus { border-color: rgba(125,211,168,0.3); box-shadow: 0 0 0 3px rgba(125,211,168,0.06); }
.btn-subscribe {
  background: #e8e8e8;
  color: #0a0a0a;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  padding: 9px 18px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s, transform 0.18s, box-shadow 0.18s;
}
.btn-subscribe:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(232,232,232,0.18); }
.btn-subscribe:active { transform: translateY(0); }

/* ── FOOTER ─────────────────────────────────────────────── */
footer { border-top: 1px solid #141414; padding: 24px 0; font-size: 0.7rem; color: #444; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: #555; text-decoration: none; display: inline-block; transition: color 0.15s, transform 0.18s; }
.footer-links a:hover { color: #888; transform: translateY(-1px); }
.footer-bottom { margin-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 0.65rem; color: #333; }
.footer-bottom a { color: #3a3a3a; text-decoration: none; transition: color 0.15s; }
.footer-bottom a:hover { color: #555; }

/* ── MOBILE MENU ────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 200;
  padding: 20px 24px;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.mobile-menu.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-menu-item {
  font-size: 0.95rem;
  color: #888;
  padding: 18px 0;
  border-bottom: 1px solid #141414;
  text-decoration: none;
  transition: color 0.15s, padding-left 0.18s;
  cursor: pointer;
}
.mobile-menu-item:hover { color: #d0d0d0; padding-left: 8px; }
.hamburger { cursor: pointer; background: none; border: none; color: #888; font-size: 1.2rem; transition: color 0.15s; }
.hamburger:hover { color: #d0d0d0; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: 860px; margin: 0 auto; padding: 0 40px; }
.page-shell { max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px, 5vw, 80px); }
.privacy-link { color: #7dd3a8; text-decoration: underline; transition: opacity 0.15s; }
.privacy-link:hover { opacity: 0.75; }

/* GSAP animated elements */
.gsap-ready .gsap-hidden { opacity: 0; }
.gsap-ready .gsap-up     { opacity: 0; transform: translateY(18px); }
.gsap-ready .gsap-left   { opacity: 0; transform: translateX(-18px); }
.gsap-ready .gsap-right  { opacity: 0; transform: translateX(18px); }
.feature-card, .int-card, .pricing-card, .stat-card, .zen-logo-pill {
  will-change: opacity, transform;
}

@media (min-width: 768px) {
  .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
  .mobile-hamburger { display: none !important; }
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .int-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 767px) {
  .desktop-nav { display: none !important; }
  .stats-grid { grid-template-columns: 1fr; gap: 12px; }
  .hero { padding: 36px 0 32px; }
  .container { padding: 0 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .int-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .rail-left  { left: 4px; }
  .rail-right { right: 4px; }
}
@media (max-width: 480px) {
  .int-grid { grid-template-columns: 1fr; }
}

/* ── PRICING ────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #181818;
  border: 1px solid #181818;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 32px;
}
.pricing-card {
  background: #0d0d0d;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.25s;
}
.pricing-card:hover { background: #111; }
.pricing-card-featured {
  background: #0f1a0f;
  border-left: 1px solid rgba(125,211,168,0.12);
  border-right: 1px solid rgba(125,211,168,0.12);
}
.pricing-card-featured:hover { background: #131f13; }
.pricing-badge {
  display: inline-block;
  font-size: 0.58rem;
  color: #7dd3a8;
  background: rgba(125,211,168,0.08);
  border: 1px solid rgba(125,211,168,0.2);
  padding: 2px 7px;
  border-radius: 2px;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 14px;
  width: fit-content;
}
.pricing-tier { font-size: 0.72rem; font-weight: 600; color: #888; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 12px; }
.pricing-amount { font-size: 2rem; font-weight: 300; color: #e0e0e0; letter-spacing: -0.03em; line-height: 1; }
.pricing-period { font-size: 0.72rem; color: #444; }
.pricing-desc { font-size: 0.72rem; color: #444; line-height: 1.6; margin-bottom: 0; }
.pricing-divider { border-top: 1px solid #1a1a1a; margin: 20px 0; }
.pricing-card-featured .pricing-divider { border-color: rgba(125,211,168,0.1); }
.pricing-features { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.pricing-features li { font-size: 0.72rem; color: #666; display: flex; align-items: baseline; gap: 8px; }
.pf-check { color: #7dd3a8; font-size: 0.65rem; flex-shrink: 0; }
.pf-muted  { color: #2e2e2e; font-size: 0.65rem; flex-shrink: 0; }
.btn-pricing-primary {
  display: block; text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem; font-weight: 600;
  background: #e8e8e8; color: #0a0a0a;
  padding: 10px 16px; border-radius: 3px;
  text-decoration: none;
  transition: background 0.15s, transform 0.18s, box-shadow 0.18s;
  margin-top: auto;
}
.btn-pricing-primary:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(232,232,232,0.18); }
.btn-pricing-outline {
  display: block; text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem; font-weight: 500;
  background: transparent; color: #666;
  border: 1px solid #2a2a2a;
  padding: 10px 16px; border-radius: 3px;
  text-decoration: none;
  transition: color 0.18s, border-color 0.18s, background 0.18s, transform 0.18s;
  margin-top: auto;
}
.btn-pricing-outline:hover { color: #d0d0d0; border-color: #444; background: #161616; transform: translateY(-1px); }
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-featured { border-left: none; border-right: none; border-top: 1px solid rgba(125,211,168,0.12); border-bottom: 1px solid rgba(125,211,168,0.12); }
}

/* ── STAT CARDS V2 ──────────────────────────────────────── */
.stat-card-v2 {
  text-align: left;
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: default;
}
.stat-v2-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.stat-v2-icon {
  font-size: 0.9rem;
  color: #444;
  transition: color 0.2s;
}
.stat-card-v2:hover .stat-v2-icon { color: #7dd3a8; }
.stat-v2-tag {
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  color: #333;
  background: rgba(125,211,168,0.05);
  border: 1px solid #222;
  padding: 1px 5px;
  border-radius: 2px;
}
.stat-v2-number {
  font-size: 2rem;
  font-weight: 300;
  color: #d0d0d0;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-v2-unit {
  font-size: 0.65rem;
  color: #444;
  margin-bottom: 6px;
}
.stat-v2-bar-track {
  height: 2px;
  background: #1a1a1a;
  border-radius: 1px;
  overflow: hidden;
  margin: 4px 0 2px;
}
.stat-v2-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #3a3a3a, #7dd3a8);
  border-radius: 1px;
  transition: width 1.6s cubic-bezier(0.22,1,0.36,1);
}
.stat-v2-sparkline {
  margin: 4px 0 2px;
  overflow: hidden;
}
.stat-v2-radial-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 4px 0;
}
.stat-v2-radial-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 300;
  color: #d0d0d0;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat-v2-footer {
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px solid #141414;
}
.stat-v2-delta {
  font-size: 0.62rem;
  color: #7dd3a8;
}
