:root {
  --black: #030508;
  --surface: #0a0d12;
  --surface2: #111620;
  --border: #1e2535;
  --green: #00ff88;
  --green-dim: #00c96a;
  --green-glow: rgba(0,255,136,0.12);
  --amber: #ffb800;
  --red: #ff3b5c;
  --blue: #4a9eff;
  --text: #e8edf5;
  --text-muted: #6b7a96;
  --text-dim: #3d4a61;
  --mono: 'Space Mono', monospace;
  --sans: 'Syne', sans-serif;
}

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

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  overflow-x: hidden;
  cursor: default;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.6;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
  pointer-events: none;
  z-index: 999;
}

/* ── LANG SWITCH ── */
.lang-switch {
  display: flex;
  gap: 2px;
  background: rgba(30,37,53,0.6);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2px;
}

.lang-btn {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  background: transparent;
  color: var(--text-dim);
  transition: all 0.2s;
}

.lang-btn.active {
  background: var(--green);
  color: var(--black);
  font-weight: 700;
}

.lang-btn:not(.active):hover { color: var(--green); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(3,5,8,0.9);
  backdrop-filter: blur(12px);
}

.logo {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--green);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 28px; height: 28px;
  border: 1.5px solid var(--green);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: '⌘';
  font-size: 14px;
  color: var(--green);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-badge {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--green);
  border: 1px solid rgba(0,255,136,0.4);
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 0.1em;
  background: rgba(0,255,136,0.06);
}

/* ── FADE-IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.35s; }
.fade-in:nth-child(4) { animation-delay: 0.5s; }
.fade-in:nth-child(5) { animation-delay: 0.65s; }
.fade-in:nth-child(6) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  text-align: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  opacity: 0.4;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(0,255,136,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.terminal-tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
  background: var(--green-glow);
  border: 1px solid rgba(0,255,136,0.25);
  padding: 6px 16px;
  border-radius: 2px;
  letter-spacing: 0.12em;
  margin-bottom: 40px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.terminal-tag::before {
  content: '> ';
  opacity: 0.5;
}

h1 {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

h1 .line1 { display: block; color: var(--text); }
h1 .line2 {
  display: block;
  color: var(--green);
  text-shadow: 0 0 60px rgba(0,255,136,0.25);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
  margin-bottom: 44px;
  font-weight: 400;
}

/* ── HERO CTA GROUP ── */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}

.cta-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--green);
  color: var(--black);
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 6px;
  transition: all 0.2s;
  font-family: var(--mono);
}

.cta-download-btn:hover {
  background: #fff;
  box-shadow: 0 0 40px rgba(0,255,136,0.35);
  transform: translateY(-1px);
}

.dl-arrow {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.cta-dl-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.cta-dl-text span:first-child {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.cta-dl-sub {
  font-size: 10px;
  opacity: 0.6;
  letter-spacing: 0.04em;
}

.cta-secondary-btn {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 16px 24px;
  border-radius: 6px;
  letter-spacing: 0.06em;
  transition: all 0.2s;
  white-space: nowrap;
}

.cta-secondary-btn:hover {
  color: var(--green);
  border-color: rgba(0,255,136,0.4);
  background: rgba(0,255,136,0.04);
}

.cta-note {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}

/* ── SOCIAL PROOF ── */
.social-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.proof-item { text-align: center; }

.proof-num {
  font-family: var(--mono);
  font-size: 28px;
  color: var(--green);
  font-weight: 700;
  display: block;
}

.proof-label {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── SECTIONS ── */
.section {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 40px;
  max-width: 600px;
}

.green-text { color: var(--green); }

/* ── PROBLEM SECTION ── */
.problem-section {
  border-top: 1px solid var(--border);
}

.problem-inner {
  max-width: 900px;
}

.problem-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 64px;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.stat-block {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.2s;
}

.stat-block:hover { background: var(--surface2); }

.stat-num {
  display: block;
  font-family: var(--mono);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.stat-sep {
  width: 1px;
  align-self: stretch;
  background: var(--border);
}

/* ── HOW IT WORKS ── */
.how-section {
  border-top: 1px solid var(--border);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 16px;
}

.step-card {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px 28px;
  position: relative;
  transition: background 0.2s;
}

.step-card:first-of-type { border-radius: 8px 0 0 8px; }
.step-card:last-of-type { border-radius: 0 8px 8px 0; }
.step-card:hover { background: var(--surface2); }

.step-connector {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  position: relative;
}

.step-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--green);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  opacity: 0.7;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── BASIC SECTION ── */
.basic-section {
  border-top: 1px solid var(--border);
}

.basic-intro {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 56px;
  margin-top: -16px;
}

.basic-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.basic-feature-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.basic-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bf-icon {
  color: var(--green);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  opacity: 0.8;
}

.bf-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.bf-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.basic-upgrade-hint {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid rgba(0,255,136,0.3);
  border-radius: 8px;
  padding: 28px 24px;
  position: sticky;
  top: 100px;
}

.upgrade-hint-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--green);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.upgrade-hint-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.upgrade-hint-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.upgrade-hint-list li {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.upgrade-hint-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: rgba(0,255,136,0.4);
}

.upgrade-hint-cta {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 1px solid rgba(0,255,136,0.3);
  padding: 10px 18px;
  border-radius: 4px;
  transition: all 0.2s;
  width: 100%;
  text-align: center;
}

.upgrade-hint-cta:hover {
  background: rgba(0,255,136,0.08);
  border-color: rgba(0,255,136,0.5);
}

/* ── INSTALL SECTION ── */
.install-section {
  border-top: 1px solid var(--border);
  background: var(--black);
  padding: 80px 48px;
}

.install-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.install-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 400px;
}

.install-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 400px;
}

/* Download button */
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--green);
  color: var(--black);
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 6px;
  transition: all 0.2s;
  margin-bottom: 28px;
}

.download-btn:hover {
  background: #fff;
  box-shadow: 0 0 40px rgba(0,255,136,0.3);
  transform: translateY(-1px);
}

.dl-icon {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.dl-btn-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

#dl-btn-main {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.dl-btn-sub {
  font-family: var(--mono);
  font-size: 10px;
  opacity: 0.65;
  letter-spacing: 0.04em;
}

/* Gatekeeper instructions */
.download-note-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid var(--amber);
  border-radius: 4px;
  padding: 16px 20px;
  max-width: 440px;
}

.download-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--amber);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.download-steps {
  padding-left: 18px;
  margin: 0 0 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.download-steps li {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

.download-steps strong { color: var(--text); }

.download-gatekeeper {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

/* Right panel */
.download-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.dl-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dl-stat-num {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.dl-stat-label {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dl-stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* Requirements */
.download-reqs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.req-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-muted);
}

.req-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.req-green { background: var(--green); }
.req-amber { background: var(--amber); }

/* Trust row */
.trust-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.trust-item {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.04em;
}

.trust-icon {
  color: rgba(0,255,136,0.4);
  font-size: 14px;
  line-height: 1;
}

/* ── PRICING SECTION ── */
.pricing-section {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 100px 48px;
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
  margin-top: -24px;
  margin-bottom: 56px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
}

.price-card {
  background: var(--black);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.2s;
}

.price-card:hover { background: var(--surface2); }

.price-card.featured {
  background: #070a10;
  border-top: 2px solid rgba(0,255,136,0.5);
  margin-top: -1px;
}

.price-tier-label {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.featured-label { color: var(--green) !important; }

.price-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.price-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  min-height: 40px;
}

.price-amount-block {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.price-free {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
  display: block;
}

.price-coming {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.price-note {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 20px;
}

.price-features li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
}

/* Not included */
.price-not-included {
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.not-included-label {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.not-included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.not-included-list li {
  font-size: 12px;
  color: var(--text-dim);
  padding-left: 16px;
  position: relative;
}

.not-included-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-dim);
  font-size: 10px;
}

/* Price CTAs */
.price-cta {
  display: block;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 14px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: auto;
}

.price-cta-primary {
  background: var(--green);
  color: var(--black);
}

.price-cta-primary:hover {
  background: #fff;
  box-shadow: 0 0 30px rgba(0,255,136,0.3);
}

.price-cta-outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.price-cta-outline:hover {
  color: var(--green);
  border-color: rgba(0,255,136,0.4);
  background: rgba(0,255,136,0.04);
}

.pricing-footer-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-align: center;
}

/* ── FINAL CTA ── */
.final-cta {
  padding: 100px 48px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0,255,136,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-tag {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--green);
  background: var(--green-glow);
  border: 1px solid rgba(0,255,136,0.25);
  padding: 5px 14px;
  border-radius: 2px;
  letter-spacing: 0.12em;
  display: inline-block;
  margin-bottom: 32px;
}

.final-cta h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.final-cta h2 span { color: var(--green); }

.final-cta > p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.final-cta-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 32px;
}

.final-dl {
  width: 100%;
  justify-content: center;
  margin-bottom: 0;
}

.final-or {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  padding: 16px 0;
  letter-spacing: 0.1em;
}

/* CTA Form inline */
.cta-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  width: 100%;
}

.cta-form input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text);
  font-family: var(--mono);
  font-size: 13px;
  padding: 16px 20px;
  outline: none;
  border-radius: 4px 0 0 4px;
  transition: border-color 0.2s;
}

.cta-form input::placeholder { color: var(--text-dim); }
.cta-form input:focus { border-color: var(--green); }

.cta-btn {
  background: var(--surface2);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-left: none;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 16px 20px;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  transition: all 0.2s;
  white-space: nowrap;
}

.cta-btn:hover {
  background: var(--surface);
  color: var(--green);
  border-color: rgba(0,255,136,0.3);
}

.success-msg {
  display: none;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--green);
  letter-spacing: 0.06em;
  padding: 16px 0;
}

.final-cta-perks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.perk-item {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

.perk-sep {
  color: var(--border);
  font-size: 14px;
}

/* ── APP SHOWCASE ── */
.app-showcase {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 100px 48px;
}

.showcase-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.showcase-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.showcase-tab {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
}

.showcase-tab:hover { color: var(--text-muted); border-color: rgba(255,255,255,0.15); }

.showcase-tab.active {
  background: var(--surface2);
  color: var(--green);
  border-color: rgba(0,255,136,0.3);
}

/* macOS window chrome — reemplazado por marco minimalista */
.screenshot-frame {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.4),
    0 32px 64px rgba(0,0,0,0.5);
  background: var(--black);
}

.macos-window-title { display: none; }

.showcase-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 1366 / 760;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.showcase-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.showcase-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}

/* Captions */
.showcase-captions {
  margin-top: 20px;
  min-height: 24px;
  position: relative;
}

.showcase-caption {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.6;
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.showcase-caption.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .app-showcase { padding: 60px 24px; }
  .showcase-tabs { gap: 6px; }
  .showcase-tab { font-size: 9px; padding: 7px 12px; }
  .macos-window-title { display: none; }
}

/* ── AHA MOMENT SECTION ── */
.aha-section {
  border-top: 1px solid var(--border);
}

.aha-intro {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 580px;
  margin-top: -20px;
  margin-bottom: 48px;
}

.aha-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
}

.aha-card {
  background: var(--surface);
  padding: 28px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 16px;
  row-gap: 6px;
  transition: background 0.2s;
}

.aha-card:hover { background: var(--surface2); }

.aha-card.aha-fail {
  border-left: 2px solid rgba(255,59,92,0.35);
}

.aha-card.aha-pass {
  border-left: 2px solid rgba(0,255,136,0.3);
}

.aha-status {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.aha-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.aha-dot-fail { background: var(--red); box-shadow: 0 0 6px rgba(255,59,92,0.5); }
.aha-dot-pass { background: var(--green); box-shadow: 0 0 6px rgba(0,255,136,0.4); }

.aha-status-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--red);
}

.aha-pass-label { color: var(--green); }

.aha-control {
  grid-column: 1 / -1;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.aha-control-pass { color: var(--text); }

.aha-arrow {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--red);
  opacity: 0.5;
  margin-top: 2px;
  flex-shrink: 0;
}

.aha-arrow-pass { color: var(--green); }

.aha-consequence {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.aha-consequence-pass { color: var(--text-muted); }

.aha-footer {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-align: center;
  padding: 16px 0 0;
}

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

/* ── PRICE INLINE FORMS ── */
.price-inline-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.price-email-input {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--mono);
  font-size: 12px;
  padding: 12px 14px;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.price-email-input::placeholder { color: var(--text-dim); }
.price-email-input:focus { border-color: rgba(0,255,136,0.4); }

.price-success-msg {
  display: none;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.06em;
  padding: 12px 0 4px;
  text-align: center;
}

/* ── FOOTER CISO ── */
.footer-ciso {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  opacity: 0.6;
}

/* ── FOOTER ── */
footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--black);
}

.footer-logo {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}

.footer-note {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-dim);
  text-align: right;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.footer-privacy-link {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-privacy-link:hover { color: var(--green); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-badge { display: none; }

  .hero { padding: 100px 24px 60px; }

  .section { padding: 60px 24px; }

  .stat-row {
    grid-template-columns: 1fr;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    gap: 0;
  }
  .stat-block { border-bottom: 1px solid var(--border); }
  .stat-block:last-child { border-bottom: none; }
  .stat-sep { display: none; }

  .steps-grid {
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
  }
  .step-card { border-radius: 0 !important; }
  .step-connector { display: none; }

  .basic-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .basic-upgrade-hint { position: static; }

  .install-section { padding: 60px 24px; }
  .install-inner { grid-template-columns: 1fr; gap: 48px; }
  .install-title { max-width: 100%; }

  .pricing-section { padding: 60px 24px; }
  .pricing-grid {
    grid-template-columns: 1fr;
    background: transparent;
    border-color: var(--border);
    border-radius: 8px;
    overflow: visible;
    gap: 16px;
  }
  .price-card { border-radius: 8px !important; border: 1px solid var(--border); }
  .price-card.featured { border-top: 2px solid rgba(0,255,136,0.5); margin-top: 0; }

  .final-cta { padding: 60px 24px; }
  .hero-cta-group { flex-direction: column; }
  .cta-secondary-btn { width: 100%; text-align: center; }

  footer { flex-direction: column; gap: 24px; text-align: center; }
  .footer-note { text-align: center; }
}

@media (max-width: 480px) {
  .social-proof { gap: 16px; }
  .proof-num { font-size: 22px; }
  .cta-form { flex-direction: column; }
  .cta-form input { border-right: 1px solid var(--border); border-bottom: none; border-radius: 4px 4px 0 0; }
  .cta-btn { border-left: 1px solid var(--border); border-top: none; border-radius: 0 0 4px 4px; }
}
