/* ═══════════════════════════════════════════════════════════════════
   SIPHON — Landing Page Styles
   Design: Bloomberg Terminal × Sneaker Bot energy
   Dark, sharp, aggressive. No softness. No rounded corners on primary.
   ═══════════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────────── */
:root {
  --bg-void: #0A0A0A;
  --bg-surface: #111111;
  --bg-card: #1A1A1A;
  --bg-card-alt: #1C1C1C;
  --accent-fire: #FF4500;
  --accent-fire-h: #E63900;
  --accent-amber: #FFA500;
  --accent-green: #00FF41;
  --text-primary: #FAFAFA;
  --text-muted: #888888;
  --text-dim: #555555;
  --border: #2A2A2A;
  --border-bright: #3A3A3A;

  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --nav-h: 60px;
  --container: 1200px;
  --radius-sm: 2px;
}

/* ── RESET ───────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg-void);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

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

/* ── CONTAINER ───────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--border-bright);
}

.nav-inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}

.logo-glyph {
  font-size: 20px;
  color: var(--accent-fire);
  line-height: 1;
}

.logo-text {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-primary);
}

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

.nav-link {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-cta-btn {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 20px;
  background: var(--accent-fire);
  color: #fff;
  border: none;
  transition: background 0.2s, transform 0.1s;
}

.nav-cta-btn:hover {
  background: var(--accent-fire-h);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════════════
   LIVE TICKER
   ══════════════════════════════════════════════════════════════════ */
.ticker-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  height: 38px;
  background: #0D1A0D;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid #1A3A1A;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticker-label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent-green);
  border-right: 1px solid #1A3A1A;
  white-space: nowrap;
  background: #0D1A0D;
  height: 100%;
  flex-shrink: 0;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse-green 1.5s ease-in-out infinite;
}

@keyframes pulse-green {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.ticker-track-wrapper {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--accent-green);
  padding: 0 32px;
}

.ticker-item::after {
  content: '·';
  color: var(--text-dim);
  margin-left: 32px;
}

.ticker-biz {
  color: var(--text-primary);
  font-weight: 500;
}

.ticker-loc {
  color: var(--text-muted);
}

.ticker-time {
  color: var(--accent-amber);
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

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

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  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)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.3;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse-green 1.5s ease-in-out infinite;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.headline-accent {
  color: var(--accent-fire);
  position: relative;
}

.hero-subhead {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 44px;
  max-width: 600px;
}

.hero-subhead strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ── FORM ───────────────────────────────────────────────────────── */
.hero-form {
  width: 100%;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 16px;
}

.form-field {
  flex: 1;
  min-width: 200px;
}

.form-input,
.form-select {
  width: 100%;
  height: 52px;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 0 16px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: var(--radius-sm);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='square'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-select option {
  background: var(--bg-card);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--accent-fire);
}

.form-input::placeholder {
  color: var(--text-dim);
}

.form-submit {
  height: 52px;
  padding: 0 28px;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-fire {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--accent-fire);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  cursor: pointer;
}

.btn-fire:hover {
  background: var(--accent-fire-h);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 69, 0, 0.35);
}

.btn-fire:active {
  transform: translateY(0);
}

.btn-ghost {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 28px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: var(--text-muted);
  background: var(--bg-card);
}

.btn-arrow {
  transition: transform 0.2s;
}

.btn-fire:hover .btn-arrow {
  transform: translateX(3px);
}

.form-microcopy {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.hero-form-success,
.final-form-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  animation: fadeIn 0.4s ease;
}

.hero-form-success {
  display: none;
}

.hero-form-success.visible,
.final-form-success.visible {
  display: flex;
}

.success-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 255, 65, 0.12);
  border: 1px solid var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent-green);
  margin-bottom: 8px;
}

.success-sub {
  font-size: 14px;
  color: var(--text-muted);
}

.success-sub a {
  color: var(--accent-fire);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

/* ══════════════════════════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 140px;
}

.stat-value {
  font-family: var(--font-mono);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  color: var(--accent-fire);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════
   SECTION SHARED STYLES
   ══════════════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-fire);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════════
   VALUE PROPS / HOW IT WORKS
   ══════════════════════════════════════════════════════════════════ */
.value-props {
  padding: 100px 0;
}

/* Timeline */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 80px;
  background: var(--border);
}

.timeline-item {
  background: var(--bg-surface);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-item.dim {
  opacity: 0.75;
}

.timeline-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-amber);
  letter-spacing: 0.08em;
}

.timeline-bar {
  height: 4px;
  background: var(--border);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.timeline-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--accent-fire);
  border-radius: 0;
  transition: width 1.5s ease;
}

.hour-0::after {
  width: 0%;
  animation: bar-fill-1 1.5s ease 0.2s forwards;
}

.hour-24::after {
  width: 0%;
  animation: bar-fill-2 1.5s ease 0.5s forwards;
}

.hour-72::after {
  width: 0%;
  animation: bar-fill-3 1.5s ease 0.8s forwards;
}

.hour-30plus::after {
  width: 0%;
  animation: bar-fill-4 1.5s ease 1.1s forwards;
}

@keyframes bar-fill-1 {
  to {
    width: 95%;
  }
}

@keyframes bar-fill-2 {
  to {
    width: 55%;
  }
}

@keyframes bar-fill-3 {
  to {
    width: 30%;
  }
}

@keyframes bar-fill-4 {
  to {
    width: 5%;
  }
}

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

.highlight-fire {
  color: var(--accent-fire);
  font-weight: 500;
}

.highlight-dim {
  color: var(--text-muted);
  font-weight: 500;
  font-style: italic;
}

/* Advantage Grid */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.adv-block {
  background: var(--bg-card);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-left: 3px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.adv-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.05) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.adv-block:hover::after {
  opacity: 1;
}

.adv-block:hover {
  border-left-color: var(--accent-fire);
  background: var(--bg-card-alt);
}

.adv-index {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}

.adv-metric {
  font-family: var(--font-mono);
  font-size: clamp(52px, 5.5vw, 84px);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}

.adv-unit {
  font-size: 0.42em;
  color: var(--accent-fire);
  margin-left: 4px;
  letter-spacing: 0;
}

.adv-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent-fire);
  text-transform: uppercase;
}

.adv-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

.adv-vs {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 48, 48, 0.07);
  border-left: 2px solid rgba(255, 68, 68, 0.35);
  font-family: var(--font-mono);
  font-size: 12px;
}

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

.vs-sep {
  color: var(--text-dim);
  font-size: 10px;
}

.vs-val {
  color: #FF5555;
  font-weight: 500;
}

.adv-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.adv-block:hover .adv-bullets {
  opacity: 1;
  transform: translateY(0);
}

.adv-bullets li {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-green);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.adv-bullets li::before {
  content: '>';
  color: var(--accent-fire);
  flex-shrink: 0;
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════════════════
   INTELLIGENCE PACKET
   ══════════════════════════════════════════════════════════════════ */
.packet-section {
  padding: 100px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.packet-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

/* Packet Card */
.packet-card {
  background: var(--bg-void);
  border: 1px solid var(--border-bright);
  font-family: var(--font-mono);
  font-size: 13px;
}

.packet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: #0D0D0D;
}

.packet-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.packet-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--accent-green);
}

.packet-badge {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  border: 1px solid rgba(255, 69, 0, 0.4);
  color: var(--accent-fire);
  background: rgba(255, 69, 0, 0.08);
}

.packet-timestamp {
  font-size: 11px;
  color: var(--text-dim);
}

.packet-company {
  padding: 24px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.company-name {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.company-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-tag {
  font-size: 11px;
  padding: 2px 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.tag-active {
  color: var(--accent-green);
  border-color: rgba(0, 255, 65, 0.3);
  background: rgba(0, 255, 65, 0.05);
}

.company-address {
  font-size: 12px;
  color: var(--text-muted);
}

/* Packet blocks */
.packet-sections {
  display: flex;
  flex-direction: column;
}

.packet-block {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.block-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.block-row {
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.block-key {
  color: var(--text-dim);
  min-width: 100px;
  font-size: 12px;
  flex-shrink: 0;
}

.block-val {
  color: var(--text-primary);
  font-size: 12px;
}

.val-muted {
  color: var(--text-muted) !important;
}

.val-green {
  color: var(--accent-green) !important;
}

.val-red {
  color: #FF4444 !important;
}

.val-amber {
  color: var(--accent-amber) !important;
}

.block-conf {
  font-size: 11px;
  color: var(--accent-amber);
  border: 1px solid rgba(255, 165, 0, 0.3);
  padding: 1px 6px;
  flex-shrink: 0;
}

/* Score */
.block-score {
  background: #0D0F0D;
}

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

.score-bar-bg {
  flex: 1;
  height: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  background: var(--accent-fire);
  border-radius: 0;
  animation: score-grow 1.5s ease 0.3s both;
  width: 0;
}

@keyframes score-grow {
  to {
    width: 87%;
  }
}

.score-number {
  font-size: 18px;
  color: var(--accent-fire);
  white-space: nowrap;
}

.score-label {
  font-size: 11px;
  color: var(--accent-amber);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.score-signals {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.signal-tag {
  font-size: 11px;
  padding: 2px 8px;
  background: rgba(255, 69, 0, 0.1);
  border: 1px solid rgba(255, 69, 0, 0.25);
  color: var(--accent-fire);
}

/* Vertical tabs in packet */
.packet-cta-block {
  gap: 16px;
}

.vertical-tabs {
  display: flex;
  gap: 2px;
  background: var(--border);
}

.vtab {
  flex: 1;
  padding: 8px 12px;
  min-height: 48px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--bg-card);
  transition: all 0.15s;
  cursor: pointer;
  border: none;
}

.vtab.active {
  background: var(--accent-fire);
  color: #fff;
}

.vtab:hover:not(.active) {
  background: var(--bg-card-alt);
  color: var(--text-muted);
}

.vtab-content {
  display: none;
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-muted);
  padding: 4px 0;
}

.vtab-content.active {
  display: block;
  animation: fadeIn 0.2s ease;
}

/* Packet actions */
.packet-actions {
  display: flex;
  gap: 2px;
  padding: 14px 20px;
  background: #0D0D0D;
  border-top: 1px solid var(--border);
}

.pact-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 7px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.15s;
}

.pact-btn:hover {
  background: var(--bg-card-alt);
  color: var(--text-primary);
  border-color: var(--border-bright);
}

.pact-save:hover {
  border-color: var(--accent-amber);
  color: var(--accent-amber);
}

.pact-crm:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.pact-export:hover {
  border-color: var(--accent-fire);
  color: var(--accent-fire);
}

/* Aside comparison */
.packet-aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 120px;
}

.aside-card {
  border: 1px solid var(--border);
  background: var(--bg-void);
  padding: 24px;
}

.aside-card-good {
  border-color: rgba(0, 255, 65, 0.25);
  background: rgba(0, 255, 65, 0.03);
}

.aside-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.aside-bad {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bad-row {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-dim);
  padding: 8px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.bad-note {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 8px;
  line-height: 1.5;
}

.aside-vs {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.2em;
  padding: 4px 0;
}

.aside-good-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.aside-good-list li {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-green);
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.aside-cost {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-amber);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════════════════ */
.pricing-section {
  padding: 100px 0;
}

.pricing-disclaimer {
  color: var(--accent-fire);
  font-weight: 500;
  font-family: var(--font-mono);
  font-size: 14px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--bg-card);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: background 0.2s;
}

.pricing-card:hover {
  background: var(--bg-card-alt);
}

.card-featured {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 69, 0, 0.3);
  box-shadow: inset 0 0 60px rgba(255, 69, 0, 0.04);
}

.card-featured:hover {
  background: var(--bg-surface);
}

.featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--accent-fire);
  color: #fff;
  padding: 5px 18px;
  white-space: nowrap;
}

.pricing-tier-label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pricing-price {
  font-family: var(--font-head);
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.price-dollar {
  font-size: 28px;
  color: var(--text-muted);
  font-weight: 400;
}

.price-period {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-features li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  gap: 10px;
  align-items: baseline;
  line-height: 1.4;
}

.feat-check {
  color: var(--accent-green);
  flex-shrink: 0;
}

.feat-fire {
  color: var(--accent-fire) !important;
}

.feat-muted {
  color: var(--text-dim);
  flex-shrink: 0;
}

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.2s;
}

/* Scarcity slots */
.pricing-slots {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.slots-fill {
  display: block;
  height: 3px;
  background: var(--accent-fire);
  border-radius: 0;
  opacity: 0.6;
}

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

.slots-text strong {
  color: var(--accent-amber);
}

.pricing-footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dim);
}

.link-fire {
  color: var(--accent-fire);
}

.link-fire:hover {
  text-decoration: underline;
}

/* ══════════════════════════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════════════════════════ */
.final-cta {
  padding: 100px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-fire), transparent);
}

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

.final-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.final-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.final-form .form-row {
  flex-direction: column;
  gap: 10px;
}

.final-form .form-field {
  min-width: unset;
  flex: unset;
}

.final-form .form-input,
.final-form .form-select {
  width: 100%;
}

.final-form .form-submit {
  width: 100%;
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-logo {
  margin-bottom: 12px;
  display: inline-flex;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 300px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 6px;
}

.footer-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal {
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.footer-link-sm {
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  transition: color 0.2s;
}

.footer-link-sm:hover {
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .packet-wrapper {
    grid-template-columns: 1fr;
  }

  .packet-aside {
    position: static;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .aside-vs {
    padding: 0 12px;
  }

  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

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

  .hero {
    min-height: 70vh;
    padding: 80px 0 60px;
  }

  .hero-headline {
    font-size: 40px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-submit {
    width: 100%;
    justify-content: center;
  }

  .stats-inner {
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    min-width: calc(50% - 16px);
  }

  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .vp-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .packet-aside {
    display: flex;
  }

  .block-key {
    min-width: 80px;
  }

  .score-display {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .packet-actions {
    flex-wrap: wrap;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }
}