/* ===========================
   ASMHunter — Continuous attack surface monitoring
   ========================= */

/* Anti-FOUC */
body {
  background-color: #06090f;
  color: #c9d1d9;
}

html {
  scroll-behavior: smooth;
}

/* ---- Background Layers ---- */
.dot-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #1b243310 1px, transparent 1px);
  background-size: 24px 24px;
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 255, 157, 0.008) 2px,
    rgba(0, 255, 157, 0.008) 4px
  );
}

body > *:not(.dot-grid):not(.scanlines) {
  position: relative;
  z-index: 1;
}

/* ---- Nav ---- */
.nav-blur {
  background: rgba(6, 9, 15, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-cta {
  color: #00ff9d;
  border: 1px solid rgba(0, 255, 157, 0.25);
  background: rgba(0, 255, 157, 0.06);
  cursor: pointer;
}

.nav-cta:hover {
  background: rgba(0, 255, 157, 0.12);
  border-color: rgba(0, 255, 157, 0.4);
  box-shadow: 0 0 20px rgba(0, 255, 157, 0.08);
}

/* ---- Hero ---- */
.hero-glow {
  position: absolute;
  top: 10%;
  left: 30%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 255, 157, 0.035) 0%, transparent 70%);
  pointer-events: none;
}

.cursor-blink {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ---- Terminal Window ---- */
.terminal-window {
  width: 340px;
  background: #0d1117;
  border: 1px solid #21262d;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 255, 157, 0.03);
}

.terminal-header {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: #161b22;
  border-bottom: 1px solid #21262d;
}

.terminal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
}

.terminal-body {
  padding: 16px;
  min-height: 200px;
}

.terminal-line {
  opacity: 0;
  transform: translateY(4px);
  animation: terminalReveal 0.3s ease forwards;
  margin-bottom: 6px;
}

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

/* ---- Tool Badges ---- */
.tool-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #00ff9d;
  background: rgba(0, 255, 157, 0.06);
  border: 1px solid rgba(0, 255, 157, 0.15);
  padding: 4px 12px;
  border-radius: 4px;
  transition: all 0.2s ease;
  cursor: default;
}

.tool-badge:hover {
  background: rgba(0, 255, 157, 0.12);
  border-color: rgba(0, 255, 157, 0.3);
  box-shadow: 0 0 16px rgba(0, 255, 157, 0.06);
}

/* ---- CTAs ---- */
.cta-primary {
  color: #06090f;
  background: #00ff9d;
  font-weight: 600;
  cursor: pointer;
}

.cta-primary:hover {
  background: #00e68d;
  box-shadow: 0 0 30px rgba(0, 255, 157, 0.2), 0 0 60px rgba(0, 255, 157, 0.05);
  transform: translateY(-1px);
}

.cta-primary:active {
  transform: scale(0.98);
}

.cta-secondary {
  color: #c9d1d9;
  border: 1px solid #30363d;
  background: rgba(48, 54, 61, 0.3);
  cursor: pointer;
}

.cta-secondary:hover {
  color: #e6edf3;
  border-color: #484f58;
  background: rgba(48, 54, 61, 0.5);
  transform: translateY(-1px);
}

.cta-secondary:active {
  transform: scale(0.98);
}

/* ---- Features ---- */
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.feature-row:hover {
  background: rgba(13, 17, 23, 0.6);
}

.feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(0, 255, 157, 0.06);
  border: 1px solid rgba(0, 255, 157, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00ff9d;
}

/* ---- How It Works ---- */
.step-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 255, 157, 0.3);
  margin-bottom: 16px;
  line-height: 1;
}

/* ---- Pricing ---- */
.billing-toggle {
  background: #0d1117;
  border: 1px solid #21262d;
}

.toggle-btn {
  color: #6e7681;
  cursor: pointer;
}

.toggle-btn.active {
  color: #00ff9d;
  background: rgba(0, 255, 157, 0.1);
}

.pricing-card {
  position: relative;
  background: #0d1117;
  border: 1px solid #21262d;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
  border-color: #30363d;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular {
  border-color: rgba(0, 255, 157, 0.3);
}

.pricing-card.popular:hover {
  border-color: rgba(0, 255, 157, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 255, 157, 0.05);
}

.popular-glow {
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0, 255, 157, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #c9d1d9;
  font-weight: 300;
}

.check-mark {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  position: relative;
}

.check-mark::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 5px;
  height: 8px;
  border: solid #00ff9d;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

/* ---- Animations ---- */

/* Hero elements: fire on page load */
.reveal-up {
  opacity: 0;
  transform: translateY(16px);
  animation: revealUp 0.6s ease forwards;
}

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

/* Below-fold elements: fire on scroll */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--delay, 0s);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Accessibility ---- */
@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .scroll-reveal {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .scroll-reveal.revealed {
    opacity: 1;
    transform: none;
  }

  .cursor-blink,
  .terminal-line {
    animation: none;
    opacity: 1;
    transform: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0ms !important;
  }
}

/* ---- Focus states ---- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #00ff9d;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-glow {
    width: 300px;
    height: 200px;
    left: 50%;
  }

  .terminal-window {
    display: none;
  }
}

/* ===========================
   ASMHunter landing refresh - v2 hunter-native dark Swiss
   ========================= */

.landing-home {
  --paper: #07090d;
  --paper-2: #0b0f14;
  --paper-3: #0f141b;
  --ink: #e7edf5;
  --ink-strong: #ffffff;
  --muted: #8b949e;
  --muted-2: #626c78;
  --line: #223041;
  --line-strong: #3b4654;
  --accent: #f59e0b;
  --accent-dark: #f59e0b;
  --accent-soft: rgba(245, 158, 11, 0.12);
  --good: #3fb950;
  --panel: #0d1117;
  --panel-2: #111821;
  --inverse: #e7edf5;
  background:
    linear-gradient(rgba(34, 48, 65, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 48, 65, 0.22) 1px, transparent 1px),
    var(--paper);
  background-size: 56px 56px;
  color: var(--ink);
  color-scheme: dark;
}

.landing-home *,
.landing-home *::before,
.landing-home *::after {
  box-sizing: border-box;
}

.landing-home a {
  color: inherit;
  text-decoration: none;
}

.landing-home .site-shell {
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto;
}

.landing-home .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 9, 13, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.landing-home .header-inner {
  min-height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.landing-home .brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-weight: 700;
}

.landing-home .brand-mark {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line-strong);
  background: var(--panel-2);
}

.landing-home .brand-name {
  color: var(--ink-strong);
}

.landing-home .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.landing-home .nav-links a:hover {
  color: var(--ink);
}

.landing-home .nav-cta {
  justify-self: end;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-color: var(--line-strong);
  background: var(--panel);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.landing-home .nav-cta:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.landing-home .hero-section {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  border-bottom-color: var(--line);
}

.landing-home .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.78fr);
  gap: 56px;
  align-items: center;
}

.landing-home .eyebrow,
.landing-home .section-kicker {
  margin: 0 0 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  line-height: 1.4;
  color: var(--accent);
  text-transform: uppercase;
}

.landing-home .hero-copy h1 {
  max-width: 760px;
  color: var(--ink-strong);
  font-size: 78px;
  line-height: 0.98;
  font-weight: 800;
}

.landing-home .hero-subhead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #b4bdc8;
  font-size: 20px;
  line-height: 1.55;
}

.landing-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.landing-home .reassurance {
  margin: 16px 0 0;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

.landing-home .cta-primary,
.landing-home .cta-secondary {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.landing-home .cta-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #120d04;
}

.landing-home .cta-primary:hover {
  border-color: #ffc46a;
  background: #ffc46a;
}

.landing-home .cta-secondary {
  border-color: var(--line-strong);
  background: rgba(13, 17, 23, 0.72);
  color: var(--ink);
}

.landing-home .cta-secondary:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.landing-home .proof-board {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-color: var(--line-strong);
  background: rgba(13, 17, 23, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.landing-home .proof-board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 2px solid var(--accent);
}

.landing-home .proof-head,
.landing-home .proof-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  border-bottom-color: var(--line);
}

.landing-home .proof-head {
  padding-top: 0;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

.landing-home .proof-head strong {
  color: var(--accent);
}

.landing-home .run-meta {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  gap: 8px 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

.landing-home .run-meta span {
  color: var(--muted-2);
}

.landing-home .run-meta strong {
  color: var(--ink);
  font-weight: 500;
}

.landing-home .proof-row span {
  color: var(--muted);
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

.landing-home .proof-row strong {
  color: var(--ink-strong);
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  line-height: 1;
}

.landing-home .accent-row strong {
  color: var(--accent);
}

.landing-home .timeline-block {
  display: grid;
  gap: 0;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-color: var(--line);
  background: #090d12;
}

.landing-home .timeline-block div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  border-bottom-color: var(--line);
}

.landing-home .timeline-block div:last-child {
  border-bottom: 0;
}

.landing-home .timeline-block span {
  color: var(--good);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

.landing-home .timeline-block p {
  margin: 0;
  color: #b4bdc8;
  font-size: 13px;
}

.landing-home .gap-section {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 184, 64, 0.045), transparent 65%),
    #07090d;
}

.landing-home .gap-heading {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.landing-home .gap-heading h2 {
  margin: 14px auto 0;
  max-width: 780px;
  font-size: 42px;
  line-height: 1.18;
  letter-spacing: -0.012em;
}

.landing-home .gap-emphasis {
  color: var(--accent);
}

.landing-home .gap-subhead {
  margin: 18px auto 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.landing-home .gap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 56px;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.landing-home .gap-card {
  position: relative;
  padding: 56px 28px 32px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: rgba(13, 17, 23, 0.55);
  transition: background-color 0.2s ease;
}

.landing-home .gap-card:hover {
  background: rgba(20, 26, 35, 0.78);
}

.landing-home .gap-tag {
  position: absolute;
  top: 20px;
  left: 24px;
  padding: 3px 9px;
  border: 1px solid rgba(255, 184, 64, 0.34);
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-home .gap-number {
  margin: 28px 0 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 76px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--accent);
}

.landing-home .gap-number small {
  margin-left: 2px;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(255, 184, 64, 0.55);
}

.landing-home .gap-card h3 {
  margin: 0 0 12px;
  color: var(--ink-strong);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}

.landing-home .gap-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.landing-home .signal-strip {
  border-bottom: 1px solid var(--line);
  border-color: var(--line);
  background: rgba(11, 15, 20, 0.92);
}

.landing-home .signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-home .signal-grid div {
  min-height: 132px;
  padding: 24px 24px 24px 0;
  border-right: 1px solid var(--line);
  border-color: var(--line);
}

.landing-home .signal-grid div + div {
  padding-left: 24px;
}

.landing-home .signal-grid div:last-child {
  border-right: 0;
}

.landing-home .signal-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

.landing-home .signal-grid p {
  max-width: 310px;
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 600;
}

.landing-home .section-block {
  padding: 86px 0;
  background: rgba(7, 9, 13, 0.84);
}

.landing-home .section-ruled {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-color: var(--line);
  background: rgba(11, 15, 20, 0.94);
}

.landing-home .two-column,
.landing-home .attribution-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.landing-home .section-block h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: 46px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.landing-home .copy-stack p,
.landing-home .attribution-grid p,
.landing-home .pricing-heading p {
  margin: 0;
  color: #b4bdc8;
  font-size: 18px;
  line-height: 1.7;
}

.landing-home .early-access-section {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 184, 64, 0.06), transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #07090d;
  background-size: auto, 56px 56px, 56px 56px;
}

.landing-home .early-access-shell {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.landing-home .early-access-shell h2 {
  margin: 14px 0 0;
}

.landing-home .early-access-sub {
  margin: 18px auto 0;
  max-width: 480px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.landing-home .waitlist-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
  margin: 32px auto 0;
  max-width: 480px;
}

.landing-home .waitlist-form input[type="email"] {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink-strong);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.landing-home .waitlist-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 184, 64, 0.05);
}

.landing-home .waitlist-form input[type="email"]::placeholder {
  color: rgba(231, 237, 245, 0.4);
}

.landing-home .waitlist-form button {
  white-space: nowrap;
  padding: 13px 22px;
  font-size: 15px;
}

.landing-home .waitlist-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.landing-home .waitlist-status {
  margin: 14px auto 0;
  min-height: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}

.landing-home .waitlist-status[data-state="success"] {
  color: #6ee7b7;
}

.landing-home .waitlist-status[data-state="error"] {
  color: #fca5a5;
}

.landing-home .early-access-fineprint {
  margin: 26px auto 0;
  max-width: 480px;
  color: rgba(231, 237, 245, 0.45);
  font-size: 13px;
  line-height: 1.55;
}

.landing-home .early-access-fineprint a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.2);
}

.landing-home .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.landing-home .enterprise-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin-top: 28px;
  padding: 28px 32px;
  border: 1px solid var(--line-strong);
  background: rgba(13, 17, 23, 0.6);
}

.landing-home .enterprise-strip h3 {
  margin: 8px 0 6px;
  color: var(--ink-strong);
  font-size: 20px;
}

.landing-home .enterprise-strip p {
  max-width: 640px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}


.landing-home .copy-stack {
  display: grid;
  gap: 20px;
}

.landing-home .feature-matrix,
.landing-home .pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
  border-color: var(--line-strong);
}

.landing-home .feature-matrix {
  margin-top: 58px;
}

.landing-home .feature-matrix article,
.landing-home .pricing-card {
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  border-color: var(--line-strong);
  background: rgba(13, 17, 23, 0.88);
}

.landing-home .feature-matrix article {
  min-height: 245px;
  padding: 22px;
}

.landing-home .feature-matrix article:hover,
.landing-home .pricing-card:hover {
  background: rgba(17, 24, 33, 0.96);
}

.landing-home .feature-matrix span,
.landing-home .plan-label,
.landing-home .cadence {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent);
}

.landing-home .feature-matrix h3,
.landing-home .pricing-card h3 {
  margin: 34px 0 12px;
  color: var(--ink-strong);
  font-size: 21px;
  line-height: 1.2;
}

.landing-home .feature-matrix p,
.landing-home .pricing-card ul,
.landing-home .pricing-card li {
  margin: 0;
  color: #aab3bf;
  font-size: 15px;
  line-height: 1.55;
}

.landing-home .ledger-panel {
  border: 1px solid var(--line-strong);
  border-color: var(--line-strong);
  background: var(--panel);
}

.landing-home .ledger-line {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.55fr;
  gap: 18px;
  padding: 17px;
  border-bottom: 1px solid var(--line);
  border-bottom-color: var(--line);
  color: var(--ink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

.landing-home .ledger-line:last-child {
  border-bottom: 0;
}

.landing-home .ledger-title {
  background: var(--panel-2);
  color: var(--muted);
}

.landing-home .status-paid {
  color: var(--good);
}

.landing-home .pricing-heading {
  max-width: 760px;
  text-align: left;
}

.landing-home .pricing-heading h2 {
  margin-bottom: 18px;
}

.landing-home .billing-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  width: min(1240px, calc(100% - 44px));
  margin: 32px auto 34px;
}

.landing-home .billing-toggle {
  display: inline-flex;
  border: 1px solid var(--line-strong);
  background: var(--panel);
}

.landing-home .toggle-btn {
  min-height: 38px;
  border: 0;
  border-right: 1px solid var(--line-strong);
  padding: 0 16px;
  background: transparent;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  cursor: pointer;
}

.landing-home .toggle-btn:last-child {
  border-right: 0;
}

.landing-home .save-badge {
  border: 1px solid var(--accent);
  padding: 9px 11px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

.landing-home .cancel-banner {
  width: min(440px, calc(100% - 44px));
  margin-left: auto;
  margin-right: auto;
  padding: 12px 16px;
  text-align: center;
}

.landing-home .toggle-btn.active {
  background: var(--accent);
  color: #120d04;
}

.landing-home .save-badge,
.landing-home .cancel-banner {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.landing-home .pricing-card.highlighted {
  background: #14181f;
  box-shadow: inset 0 2px 0 var(--accent);
}

.landing-home .pricing-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
  min-height: 420px;
  padding: 22px;
}

.landing-home .pricing-card.highlighted p,
.landing-home .pricing-card.highlighted li,
.landing-home .pricing-card.highlighted .cadence {
  color: #c7d0dc;
}

.landing-home .plan-label {
  position: absolute;
  top: -1px;
  right: -1px;
  padding: 7px 9px;
  text-transform: uppercase;
  border-color: var(--accent);
  background: var(--accent);
  color: #120d04;
}

.landing-home .price {
  margin: 0;
  color: var(--ink-strong);
  font-size: 46px;
  line-height: 1;
  font-weight: 800;
}

.landing-home .price small {
  margin-left: 3px;
  font-size: 14px;
  font-weight: 500;
}

.landing-home .annual-subtext {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.landing-home .pricing-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.landing-home .pricing-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-color: var(--accent);
  border: 1px solid var(--accent);
  background: transparent;
  vertical-align: 1px;
}

.landing-home .pricing-card .cta-primary,
.landing-home .pricing-card .cta-secondary {
  width: 100%;
}

.landing-home .site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-top-color: var(--line);
  background: #05070a;
  color: var(--muted);
}

.landing-home .footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  font-size: 13px;
}

.landing-home .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.landing-home .footer-mark {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-strong);
  object-fit: cover;
  object-position: center;
}

.landing-home .footer-inner p {
  margin: 0;
  text-align: center;
}

.landing-home .footer-inner nav {
  display: flex;
  justify-content: end;
  gap: 18px;
}

.landing-home .footer-inner a:hover {
  color: var(--accent);
}

.landing-home a:focus-visible,
.landing-home button:focus-visible {
  outline-color: var(--accent);
}

@media (max-width: 1060px) {
  .landing-home .hero-grid {
    grid-template-columns: 1fr;
  }

  .landing-home .proof-board {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .landing-home .site-shell,
  .landing-home .billing-wrap {
    width: min(100% - 28px, 1240px);
  }

  .landing-home .header-inner {
    min-height: 62px;
    grid-template-columns: 1fr auto;
  }

  .landing-home .nav-links {
    display: none;
  }

  .landing-home .hero-section {
    min-height: auto;
    padding: 52px 0 34px;
  }

  .landing-home .hero-copy h1 {
    font-size: 46px;
  }

  .landing-home .run-meta {
    grid-template-columns: auto 1fr;
  }

  .landing-home .signal-grid,
  .landing-home .feature-matrix,
  .landing-home .pricing-grid,
  .landing-home .gap-grid {
    grid-template-columns: 1fr;
  }

  .landing-home .gap-heading h2 {
    font-size: 30px;
  }

  .landing-home .gap-number {
    font-size: 60px;
  }

  .landing-home .gap-number small {
    font-size: 26px;
  }

  .landing-home .signal-grid div,
  .landing-home .signal-grid div + div {
    min-height: auto;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .landing-home .signal-grid div:last-child {
    border-bottom: 0;
  }

  .landing-home .two-column,
  .landing-home .attribution-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .landing-home .waitlist-form {
    grid-template-columns: 1fr;
  }

  .landing-home .enterprise-strip {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
    text-align: left;
  }

  .landing-home .section-block {
    padding: 58px 0;
  }

  .landing-home .section-block h2 {
    font-size: 34px;
  }

  .landing-home .ledger-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .landing-home .timeline-block div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .landing-home .pricing-heading {
    text-align: center;
  }

  .landing-home .billing-wrap {
    justify-content: stretch;
  }

  .landing-home .hero-actions,
  .landing-home .billing-wrap {
    align-items: stretch;
    flex-direction: column;
  }

  .landing-home .cta-primary,
  .landing-home .cta-secondary {
    width: 100%;
  }

  .landing-home .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .landing-home .footer-inner p {
    text-align: left;
  }

  .landing-home .footer-inner nav {
    justify-content: start;
  }
}
