/* ===== SELF-HOSTED FONTS (same-origin, variable woff2, latin subset) ===== */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/inter-variable.woff2') format('woff2')
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/jetbrains-mono-variable.woff2') format('woff2')
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  font-size: 16px;
  /* clip, not hidden: hidden turns html/body into scroll containers and
     silently breaks position:sticky (the scroll-hero pin). clip gives the
     same no-horizontal-scroll guarantee without creating a scroll container. */
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: #0A0A0A;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
  max-width: 100vw;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation
}

input,
textarea,
select {
  font-size: 16px;
  -webkit-appearance: none;
  appearance: none
}

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

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

ul {
  list-style: none
}

img {
  max-width: 100%
}

.mono {
  font-family: 'JetBrains Mono', monospace
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.hero .container {
  max-width: 1240px
}

.section {
  padding: 56px 0
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.95);
  text-wrap: balance
}

.section-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  max-width: 65ch;
  margin-bottom: 32px;
  line-height: 1.65;
  text-wrap: pretty
}

/* small cited-stat line under a section sub */
.section-cite {
  margin: -16px 0 36px;
  max-width: 62ch;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

.section-cite a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.section-cite a:hover {
  color: #60A5FA;
}

.section-cite a:focus-visible {
  outline: 2px solid #93C5FD;
  outline-offset: 2px;
  border-radius: 2px;
}

.brand-intro {
  padding: 64px 0 40px;
}

.brand-intro-card {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px 48px;
  text-align: left;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.brand-intro-card:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.brand-intro-card .section-label {
  margin-bottom: 18px;
}

.brand-definition {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: -0.005em;
  margin: 0;
}

.brand-definition strong {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.98);
}

.brand-definition strong.text-blue {
  font-weight: 700;
}

/* Concrete-credibility chips (under the brand-intro definition) */
.cred-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.cred-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 7px 14px;
}

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

@media(max-width:768px) {
  .cred-chips {
    gap: 8px;
    margin-top: 20px;
  }

  .cred-chip {
    font-size: 11px;
    padding: 6px 12px;
  }
}

@media (max-width: 768px) {
  .brand-intro {
    padding: 44px 0 28px;
  }
  .brand-intro-card {
    padding: 28px 22px;
    border-radius: 14px;
  }
  .brand-intro-card .section-label {
    margin-bottom: 14px;
  }
  .brand-definition {
    font-size: 15.5px;
    line-height: 1.7;
  }
}

@media (max-width: 420px) {
  .brand-intro-card {
    padding: 24px 18px;
  }
  .brand-definition {
    font-size: 14.5px;
  }
}

.text-muted {
  color: rgba(255, 255, 255, 0.45)
}

.text-secondary {
  color: rgba(255, 255, 255, 0.65)
}

.text-blue {
  color: #60A5FA;
}

.text-code {
  color: #60A5FA;
  font-family: 'JetBrains Mono', monospace
}

/* Progressive enhancement: content is visible by default. The hidden/animated
   pre-state only applies when JS is present (html.js set inline in <head>),
   so no-JS crawlers and failed renders still see every section.
   :where() keeps specificity at (0,1,0) so the reduced-motion override wins. */
.fade-up {
  transition: opacity 0.6s ease, transform 0.6s ease
}

:where(.js) .fade-up {
  opacity: 0;
  transform: translateY(30px)
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease
}

.btn-primary {
  background: #3B82F6;
  color: #fff;
  position: relative;
  overflow: hidden
}

.btn-primary:hover {
  background: #2563EB
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s
}

.btn-primary:hover::after {
  left: 100%
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  background: transparent
}

.btn-ghost:hover {
  border-color: #3B82F6;
  color: rgba(255, 255, 255, 0.9)
}

.btn-lg {
  height: 48px;
  padding: 0 32px;
  font-size: 16px
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: all 0.3s ease
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.90);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3)
}

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

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  /* logo PNG is now transparent — no chip, so it blends into the page bg */
  background: transparent;
  padding: 0;
  border: none
}

.nav-logo-img {
  height: 26px;
  width: auto;
  display: block;
  mix-blend-mode: lighten
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  text-decoration: none;
  background: transparent;
  border: none;
  padding: 0;
  width: fit-content
}

.footer-logo-img {
  height: 30px;
  width: auto;
  display: block;
  mix-blend-mode: lighten
}

.nav-links {
  display: flex;
  gap: 28px
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: -0.01em
}

.nav-links a:hover {
  color: rgba(255, 255, 255, 0.9)
}

.nav-cta {
  flex-shrink: 0
}

.btn-nav {
  padding: 9px 20px !important;
  font-size: 14px !important;
  border-radius: 8px;
  font-weight: 600
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  transition: all 0.3s
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.active span:nth-child(2) {
  opacity: 0
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 57px;
  left: 0;
  right: 0;
  background: rgba(12, 12, 12, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 24px 24px;
  z-index: 99
}

.mobile-menu.open {
  display: block
}

.mobile-menu a {
  display: block;
  padding: 13px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color 0.2s
}

.mobile-menu a:hover {
  color: rgba(255, 255, 255, 0.9)
}

.mobile-menu .mobile-cta {
  margin-top: 16px;
  display: block;
  text-align: center;
  padding: 13px 0;
  background: #3B82F6;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  border-bottom: none
}

.mobile-menu .mobile-cta:hover {
  background: #2563EB
}

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

.hero::before {
  display: none
}

.hero-glow-top {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.06) 0%, transparent 65%);
  pointer-events: none
}

.hero-content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 24px
}

/* 2-segment status badge */
.hero-badge {
  display: inline-flex;
  align-items: stretch;
  padding: 0;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  font-size: 13px
}

.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.06) 100%);
  color: #4ADE80;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.08)
}

.badge-info {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: -0.005em
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
  animation: badgePulse 2s ease-in-out infinite;
  flex-shrink: 0
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6)
  }

  50% {
    box-shadow: 0 0 18px rgba(34, 197, 94, 1)
  }
}

.hero h1 {
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: #FFFFFF
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto 32px;
  font-weight: 400
}

/* CTA row */
.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px
}

.btn-hero {
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s ease
}

.btn-hero.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3)
}

.btn-hero.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85)
}

.btn-hero.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff
}

/* Microcopy */
.hero-micro {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 auto 72px;
  text-align: center
}

@media(max-width:768px) {
  .hero { padding: 88px 0 56px }
  .hero h1 { margin-bottom: 20px }
  .hero-sub { margin-bottom: 28px }
  .hero-cta-row {
    flex-direction: column;
    gap: 10px
  }
  .hero-cta-row .btn-hero {
    width: 100%;
    justify-content: center;
    text-align: center
  }
  .hero-micro { margin-bottom: 48px }
}

/* Quiet trust strip — muted credibility between the badge and the H1 */
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
  max-width: 660px;
  margin: -6px auto 26px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em
}

.hero-trust-strip .hts-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap
}

.hero-trust-strip svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.8
}

.hero-trust-strip .hts-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0
}

@media(max-width:768px) {
  .hero-trust-strip {
    font-size: 11px;
    gap: 8px 10px;
    margin-bottom: 22px
  }

  /* drop the dividers once items wrap, so stray dots don't dangle */
  .hero-trust-strip .hts-dot {
    display: none
  }
}

/* ===== PRODUCT MOCKUP — WIDE ===== */
.product-mockup {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d0d0d;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 40px 100px rgba(0, 0, 0, 0.65), 0 0 80px rgba(59, 130, 246, 0.08);
  text-align: left
}

/* Top bar */
.mock-topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: nowrap;
  overflow: hidden
}

.mock-repo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding-right: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.06)
}

.mock-repo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.mock-repo-name {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.2
}

.mock-repo-url {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 2px
}

/* Blurred group container — everything blurred lives here */
.mock-blurred-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  justify-content: flex-end;
  padding-right: 4px
}

/* Audit grade — inside blurred group */
.mock-grade {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 12px 5px 5px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  flex-shrink: 0
}

.mock-grade-ring {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #4ADE80;
  background: rgba(34, 197, 94, 0.08);
  flex-shrink: 0
}

.mock-grade-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4)
}

.mock-grade-score {
  font-size: 13px;
  font-weight: 800;
  color: #4ADE80
}

/* Stat boxes */
.mock-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 11px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  flex-shrink: 0
}

.mock-stat svg {
  opacity: 0.7;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.4)
}

.mock-stat strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700
}

.mock-stat em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 2px;
  font-weight: 400
}

/* Action buttons inside blurred group */
.mock-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 11px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  flex-shrink: 0
}

.mock-action-btn svg {
  opacity: 0.7;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.45)
}

/* BLUR EFFECT — applied to individual items inside the group */
.blurred-box {
  filter: blur(5px);
  opacity: 0.75;
  user-select: none;
  pointer-events: none
}

/* ===== @MENTOR — ALWAYS CLEAR, PROMINENT, GLOWING ===== */
.mock-mentor-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(59, 130, 246, 0.6);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.12) 100%);
  flex-shrink: 0;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.005em;
  position: relative;
  z-index: 5;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.2), 0 0 20px rgba(59, 130, 246, 0.35), 0 0 40px rgba(59, 130, 246, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: mentorGlow 2.6s ease-in-out infinite;
  white-space: nowrap;
  transition: transform 0.2s
}

.mock-mentor-btn:hover {
  transform: translateY(-1px)
}

.mock-mentor-btn svg {
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.7))
}

@keyframes mentorGlow {

  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.2), 0 0 16px rgba(59, 130, 246, 0.3), 0 0 32px rgba(59, 130, 246, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.12)
  }

  50% {
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.5), 0 0 28px rgba(59, 130, 246, 0.6), 0 0 60px rgba(59, 130, 246, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.18)
  }
}

/* Body */
.mock-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 480px
}

/* Sidebar */
.mock-sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.01);
  padding: 14px 0
}

.mock-sidebar-header {
  padding: 0 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  margin-bottom: 8px
}

.mock-sidebar-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35)
}

.mock-sidebar-meta {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 3px
}

.mock-layer {
  padding: 0 12px
}

.mock-layer-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  cursor: default;
  transition: background 0.2s
}

.mock-layer-header:hover,
.mock-layer-header.active-layer {
  background: rgba(255, 255, 255, 0.04)
}

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

.mock-layer-icon {
  flex-shrink: 0;
  opacity: 0.85
}

.mock-layer-name {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  flex: 1;
  letter-spacing: -0.01em
}

.mock-layer-count {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  font-family: 'JetBrains Mono', monospace
}

.mock-layer-arrow {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  transition: transform 0.2s
}

.mock-layer-arrow.open {
  transform: rotate(90deg)
}

.mock-files {
  padding: 4px 0 8px 22px
}

.mock-file {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 6px;
  cursor: default
}

.mock-file:hover {
  background: rgba(255, 255, 255, 0.03)
}

.mock-file>span:nth-child(2) {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500
}

.mock-file.active-file {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2)
}

.mock-file.active-file>span:nth-child(2) {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600
}

.mock-file-bar {
  width: 42px;
  height: 5px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0
}

.mock-file-bar span {
  display: block;
  height: 100%;
  border-radius: 3px;
  opacity: 0.75
}

.mock-file-count {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap;
  min-width: 24px;
  text-align: right
}

/* ===== FILE DETAIL PANEL ===== */
.mock-detail-panel {
  padding: 18px 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px
}

/* File header */
.mock-file-header {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05)
}

.mock-file-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px
}

.mock-file-title strong {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  font-family: 'JetBrains Mono', monospace
}

.mock-file-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0
}

.mock-file-tag.api {
  background: rgba(16, 185, 129, 0.12);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.25)
}

.mock-file-breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3)
}

/* Why This Matters card */
.mock-why-card {
  background: rgba(167, 139, 250, 0.04);
  border: 1px solid rgba(167, 139, 250, 0.15);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.mock-why-header {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #A78BFA;
  margin-bottom: 2px
}

.mock-why-section {
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.mock-why-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.mock-why-content {
  flex: 1;
  min-width: 0
}

.mock-why-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px
}

.mock-why-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0
}

.blurred-text {
  filter: blur(4.5px);
  opacity: 0.75;
  user-select: none;
  pointer-events: none
}

/* Imports section */
.mock-imports {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.mock-imports-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px
}

.mock-import-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s;
  cursor: default
}

.mock-import-row:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1)
}

.mock-import-row svg {
  flex-shrink: 0
}

.mock-import-name {
  flex: 1;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'JetBrains Mono', monospace
}

.mock-import-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0
}

.mock-import-tag.util {
  background: rgba(168, 85, 247, 0.12);
  color: #C4B5FD;
  border: 1px solid rgba(168, 85, 247, 0.25)
}

.mock-import-tag.model {
  background: rgba(16, 185, 129, 0.12);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.25)
}

.mock-import-tag.core {
  background: rgba(6, 182, 212, 0.12);
  color: #67E8F9;
  border: 1px solid rgba(6, 182, 212, 0.25)
}

.mock-import-tag.api {
  background: rgba(16, 185, 129, 0.12);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.25)
}

.mock-import-arrow {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.25);
  flex-shrink: 0
}

/* Learning path bar */
.mock-learningbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.05)
}

.mock-lb-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0
}

.mock-lb-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center
}

.mock-lb-title {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4)
}

.mock-lb-meta {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 2px
}

.mock-lb-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 3px;
  display: flex;
  overflow: hidden;
  gap: 1px
}

.mock-lb-segment {
  height: 100%;
  border-radius: 2px;
  opacity: 0.6
}

.mock-lb-next {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap
}

.mock-lb-next strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace
}

/* Search bar */
.mock-searchbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: #0d0d0d
}

.mock-search-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  flex: 1
}

.mock-search-kbd {
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2px 7px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05)
}

/* Very subtle gradient at bottom edge */
.mock-blur-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 12%;
  background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.4) 100%);
  pointer-events: none;
  z-index: 2
}

/* Trust bar below mockup */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500
}

.trust-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 16px
}

/* Remove old dep-graph styles */
.dep-graph {
  display: none
}

.scroll-indicator {
  display: none
}

/* ===== PAIN CARDS ===== */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.pain-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 30px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden
}

.pain-card:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px)
}

.pain-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid;
  flex-shrink: 0
}

.pain-icon-wrap.blue {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.2)
}

.pain-icon-wrap.orange {
  background: rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.2)
}

.pain-icon-wrap.red {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.2)
}

.pain-icon-wrap.amber {
  background: rgba(234, 179, 8, 0.08);
  border-color: rgba(234, 179, 8, 0.2)
}

.pain-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.3
}

.pain-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1
}

.pain-stat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 7px 12px;
  margin-top: auto;
  align-self: flex-start;
  max-width: 100%
}

.pain-stat strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700
}

/* ===== FEATURE CARDS ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px)
}

.feature-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid;
  flex-shrink: 0
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.95)
}

.feature-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  flex: 1;
  line-height: 1.7
}

.feature-card .terminal {
  margin-top: 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #60A5FA;
  line-height: 1.7
}

/* ===== WHO SECTION ===== */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.who-col {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 36px
}

.who-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.01em
}

.who-badge.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, 0.2)
}

.who-badge.green {
  background: rgba(34, 197, 94, 0.1);
  color: #4ADE80;
  border: 1px solid rgba(34, 197, 94, 0.2)
}

.who-col h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3
}

.who-intro {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 24px
}

.who-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px
}

.who-col li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  align-items: flex-start;
  line-height: 1.5
}

.who-col li svg {
  flex-shrink: 0;
  margin-top: 2px
}

/* ===== METRICS ===== */
.section-dark {
  background: rgba(255, 255, 255, 0.01)
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px
}

.metric-card {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  transition: all 0.3s
}

.metric-card:hover {
  border-color: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px)
}

.metric-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 1px solid
}

.metric-card .number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 42px;
  font-weight: 800;
  color: #3B82F6;
  margin-bottom: 8px;
  line-height: 1
}

.metric-card .label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  line-height: 1.5
}

.terminal-block {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 28px 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  line-height: 2;
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.4)
}

.terminal-block .cmd {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600
}

.terminal-block .ok {
  color: #22C55E
}

.terminal-block .warn {
  color: #EAB308
}

.terminal-block .t-dim {
  color: rgba(255, 255, 255, 0.25)
}

.terminal-block strong {
  color: rgba(255, 255, 255, 0.7)
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative
}

.step {
  display: flex;
  flex-direction: column;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
  transition: all 0.3s;
  overflow: hidden
}

.step:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px)
}

.step-watermark {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 60px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
  font-family: 'Inter', sans-serif
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid
}

.step-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
  color: #3B82F6
}

.step-icon.mauve {
  background: rgba(167, 139, 250, 0.1);
  border-color: rgba(167, 139, 250, 0.2);
  color: #A78BFA
}

.step-icon.green {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.2);
  color: #22C55E
}

.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px
}

.step-num.blue {
  color: rgba(59, 130, 246, 0.7)
}

.step-num.mauve {
  color: rgba(167, 139, 250, 0.7)
}

.step-num.green {
  color: rgba(34, 197, 94, 0.7)
}

.step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.3
}

.step p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1
}

.code-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #60A5FA;
  align-self: flex-start;
  margin-top: auto;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.progress-bar {
  display: inline-block;
  width: 56px;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  vertical-align: middle;
  margin: 0 4px
}

.progress-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #3B82F6, #60A5FA);
  border-radius: 3px;
  animation: progressGlow 2s ease-in-out infinite
}

@keyframes progressGlow {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.65
  }
}

/* ===== PRICING — LOCKED TILES ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px
}

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border-radius: 14px
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4)
}

.pricing-card:hover::before {
  opacity: 1
}

.pricing-locked-featured {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.04)
}

.pricing-locked-featured:hover {
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.15)
}

.pricing-popular {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3B82F6, #2563EB);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
  z-index: 2
}

/* Locked badge */
.pricing-locked-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
  align-self: flex-start
}

.pricing-locked-badge svg {
  flex-shrink: 0;
  opacity: 0.8
}

.featured-badge {
  color: #60A5FA;
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.25)
}

.pricing-plan-name {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em
}

/* Hidden price */
.pricing-price-hidden {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 14px;
  line-height: 1
}

.price-blur {
  font-family: 'JetBrains Mono', monospace;
  font-size: 36px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
  filter: blur(7px);
  letter-spacing: 0.02em;
  user-select: none;
  transition: filter 0.3s
}

.pricing-card:hover .price-blur {
  filter: blur(4px)
}

.price-blur.enterprise-price {
  font-size: 24px;
  font-weight: 700
}

.price-suffix {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400
}

.pricing-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 42px
}

/* Feature hints (compact, dotted) */
.pricing-features-hint {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
  margin-bottom: 24px
}

.pricing-features-hint li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4
}

.pricing-features-hint .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.8
}

/* Claim button */
.btn-plan-claim {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  margin-top: auto;
  cursor: pointer;
  font-family: inherit
}

.btn-plan-claim:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff
}

.btn-plan-claim.claim-featured {
  background: #3B82F6;
  border-color: #3B82F6;
  color: #fff
}

.btn-plan-claim.claim-featured:hover {
  background: #2563EB;
  border-color: #2563EB;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3)
}

/* Selected state (after click) */
.pricing-card.plan-selected {
  border-color: #22C55E;
  background: rgba(34, 197, 94, 0.04)
}

.pricing-card.plan-selected .btn-plan-claim {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.4);
  color: #4ADE80
}

.pricing-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  max-width: 600px;
  margin: 0 auto
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s
}

.faq-item.open {
  border-color: rgba(255, 255, 255, 0.1)
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.2s;
  gap: 16px
}

.faq-q:hover {
  background: rgba(255, 255, 255, 0.04)
}

.faq-q svg {
  transition: transform 0.3s;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.25)
}

.faq-item.open .faq-q {
  color: rgba(255, 255, 255, 0.95)
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
  color: rgba(255, 255, 255, 0.5)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 24px 22px
}

.faq-a p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.75
}

/* ===== WAITLIST CTA ===== */
.final-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.05)
}

.waitlist-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative
}

.waitlist-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none
}

/* Plan selection banner (above form) */
.plan-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 auto 18px;
  backdrop-filter: blur(8px);
  animation: slideInBanner 0.4s ease
}

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

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

.plan-banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px currentColor
}

.plan-banner-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500
}

.plan-banner-text strong {
  font-weight: 700
}

.plan-banner-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0 0 0 4px;
  transition: color 0.2s
}

.plan-banner-close:hover {
  color: rgba(255, 255, 255, 0.85)
}

.waitlist-form {
  max-width: 480px;
  margin: 0 auto 12px;
  display: flex;
  gap: 10px
}

.waitlist-form input {
  flex: 1;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border 0.2s
}

.waitlist-form input:focus {
  border-color: #3B82F6;
  background: rgba(59, 130, 246, 0.04)
}

.waitlist-form input::placeholder {
  color: rgba(255, 255, 255, 0.2)
}

.waitlist-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 40px
}

.waitlist-error {
  max-width: 480px;
  margin: -4px auto 16px;
  font-size: 13px;
  font-weight: 500;
  color: #f87171;
  text-align: center
}

.waitlist-form input.input-error {
  border-color: #EF4444;
  background: rgba(239, 68, 68, 0.05)
}

.step2-title {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px
}

.step2-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 24px
}

.waitlist-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #5fbe82;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 24px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  max-width: 400px;
  margin: 0 auto
}

.waitlist-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap
}

.wp-item {
  text-align: center
}

.wp-item strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'JetBrains Mono', monospace
}

.wp-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3)
}

.wp-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06)
}

/* ===== INVOLVEMENT CARDS ===== */
.involvement-options {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left
}

.involvement-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition: all 0.25s;
  position: relative
}

.involvement-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12)
}

.involvement-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.involvement-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.25s;
  position: relative
}

.involvement-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s
}

.involvement-card input[type="radio"]:checked~.involvement-radio::after {
  transform: translate(-50%, -50%) scale(1)
}

.involvement-card:has(input[type="radio"]:checked) {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04)
}

.involvement-card:has(input[type="radio"]:checked) .involvement-radio {
  border-color: rgba(255, 255, 255, 0.4)
}

.involvement-card[data-accent="#3B82F6"]:has(input[type="radio"]:checked) {
  border-color: #3B82F6;
  background: rgba(59, 130, 246, 0.06)
}

.involvement-card[data-accent="#3B82F6"]:has(input[type="radio"]:checked) .involvement-radio {
  border-color: #3B82F6
}

.involvement-card[data-accent="#3B82F6"]:has(input[type="radio"]:checked) .involvement-radio::after {
  background: #3B82F6
}

.involvement-card[data-accent="#22C55E"]:has(input[type="radio"]:checked) {
  border-color: #22C55E;
  background: rgba(34, 197, 94, 0.06)
}

.involvement-card[data-accent="#22C55E"]:has(input[type="radio"]:checked) .involvement-radio {
  border-color: #22C55E
}

.involvement-card[data-accent="#22C55E"]:has(input[type="radio"]:checked) .involvement-radio::after {
  background: #22C55E
}

.involvement-text {
  display: flex;
  flex-direction: column;
  gap: 3px
}

.involvement-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9)
}

.involvement-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5
}

#waitlist-step-2 {
  animation: fadeSlideUp 0.4s ease forwards
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

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

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 64px 0 32px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.7;
  max-width: 300px
}

.footer-copy {
  margin-top: 20px !important;
  color: rgba(255, 255, 255, 0.35) !important;
  font-size: 13px !important
}

.footer h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.45)
}

.footer a {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color 0.2s
}

.footer a:hover {
  color: rgba(255, 255, 255, 0.95)
}

/* Interactive affordance: footer links and modal triggers underline on hover
   and keyboard focus, so the modal-opening buttons read as clickable */
.footer a:hover,
.footer a:focus-visible,
.footer-modal-btn:hover,
.footer-modal-btn:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px
}

.footer-legal {
  display: flex;
  gap: 20px
}

.footer-legal a {
  display: inline;
  padding: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.85)
}

/* Modal-trigger buttons styled to match footer link appearance */
.footer-modal-btn {
  display: inline;
  padding: 0;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  transition: color 0.2s
}

.footer-modal-btn:hover {
  color: rgba(255, 255, 255, 0.9)
}

/* Company-column modal buttons must read identically to the <a> links beside
   them (the base rule's color:inherit made them brighter than Careers/Contact) */
.footer-grid .footer-modal-btn {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  text-align: left;
  color: rgba(255, 255, 255, 0.6)
}

.footer-grid .footer-modal-btn:hover {
  color: rgba(255, 255, 255, 0.95)
}

.footer-legal .footer-modal-btn {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7)
}

.footer-legal .footer-modal-btn:hover {
  color: rgba(255, 255, 255, 0.85)
}

/* ===== RESPONSIVE — TABLET (1024px) ===== */
@media(max-width:1024px) {

  .feature-grid,
  .steps {
    grid-template-columns: 1fr 1fr
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr
  }

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

  .proof-grid {
    grid-template-columns: 1fr 1fr
  }

  .product-mockup {
    max-width: 100%
  }

  .mock-body {
    grid-template-columns: 240px 1fr
  }

  .hero h1 {
    font-size: 46px
  }

  .section-title {
    font-size: 32px
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px
  }
}

/* ===== RESPONSIVE — TABLET SMALL (900px) ===== */
@media(max-width:900px) {
  .container {
    padding: 0 24px
  }

  .hero {
    padding: 110px 0 64px
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.08
  }

  .hero-content {
    padding: 0 20px
  }

  .product-mockup {
    margin-bottom: 32px
  }
}

/* ===== RESPONSIVE — MOBILE (768px) ===== */
@media(max-width:768px) {

  /* Hero typography */
  .hero {
    padding: 96px 0 56px;
    min-height: auto
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -0.035em;
    margin-bottom: 18px
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 100%
  }

  .hero-badge {
    font-size: 11px;
    flex-wrap: wrap;
    max-width: 90vw
  }

  .badge-status {
    padding: 7px 11px;
    font-size: 10px;
    letter-spacing: 0.06em
  }

  .badge-info {
    padding: 7px 13px;
    font-size: 12px
  }

  /* Section typography */
  .section {
    padding: 40px 0
  }

  .section-title {
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 10px
  }

  .section-sub {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px
  }

  .section-label {
    font-size: 11px;
    margin-bottom: 10px
  }

  /* Grids → single column */
  .pain-grid,
  .feature-grid,
  .who-grid,
  .metrics-grid,
  .pricing-grid,
  .steps {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px
  }

  /* Cards padding */
  .pain-card,
  .feature-card,
  .who-col,
  .metric-card,
  .pricing-card {
    padding: 22px
  }

  .step {
    padding: 24px 22px
  }

  /* Step number watermark - smaller */
  .step-watermark {
    font-size: 44px;
    top: 8px;
    right: 12px
  }

  /* Navbar */
  .nav-links,
  .nav-cta {
    display: none
  }

  .hamburger {
    display: flex;
    padding: 8px;
    margin: -8px
  }

  .navbar {
    padding: 12px 0
  }

  .nav-logo-img {
    height: 26px
  }

  .navbar.scrolled {
    padding: 10px 0
  }

  /* Mobile menu — better experience */
  .mobile-menu {
    padding: 18px 24px 28px
  }

  .mobile-menu a {
    padding: 15px 0;
    font-size: 16px
  }

  /* Waitlist form */
  .waitlist-form {
    flex-direction: column;
    gap: 10px
  }

  .waitlist-form input,
  .waitlist-form button {
    width: 100%;
    min-height: 48px;
    font-size: 16px
  }

  /* Plan banner */
  .plan-banner {
    max-width: 100%;
    font-size: 12px;
    padding: 9px 14px 9px 12px
  }

  .plan-banner-text {
    font-size: 12px
  }

  /* ===== MOBILE MOCKUP — compact ===== */
  .product-mockup {
    margin-bottom: 28px;
    border-radius: 12px
  }

  .mock-topbar {
    padding: 10px 12px;
    gap: 8px;
    flex-wrap: nowrap
  }

  .mock-repo {
    padding-right: 10px;
    gap: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.06)
  }

  .mock-repo-icon {
    width: 30px;
    height: 30px
  }

  .mock-repo-name {
    font-size: 12px
  }

  .mock-repo-url {
    font-size: 10px;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
  }

  .mock-blurred-group {
    display: none
  }

  .mock-mentor-btn {
    padding: 8px 12px;
    font-size: 11px;
    gap: 5px;
    margin-left: auto
  }

  .mock-mentor-btn svg {
    width: 11px;
    height: 11px
  }

  /* Mobile body — sidebar only, hide detail */
  .mock-body {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .mock-sidebar {
    border-right: none;
    padding: 10px 0
  }

  .mock-sidebar-header {
    padding: 0 14px 10px
  }

  .mock-layer {
    padding: 0 10px
  }

  .mock-layer-header {
    padding: 8px 10px
  }

  .mock-layer-name {
    font-size: 12px
  }

  .mock-files {
    padding: 2px 0 4px 16px
  }

  .mock-file {
    padding: 6px 10px;
    gap: 6px
  }

  .mock-file>span:nth-child(2) {
    font-size: 11px
  }

  .mock-file-bar {
    width: 36px
  }

  .mock-detail-panel {
    display: none
  }

  /* Learning bar */
  .mock-learningbar {
    padding: 9px 12px;
    gap: 10px
  }

  .mock-lb-icon {
    width: 26px;
    height: 26px
  }

  .mock-lb-title {
    font-size: 9px
  }

  .mock-lb-meta {
    font-size: 9px
  }

  .mock-lb-next {
    display: none
  }

  .mock-lb-bar {
    height: 5px
  }

  .mock-searchbar {
    padding: 9px 12px
  }

  .mock-search-text {
    font-size: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
  }

  /* Trust bar — wrap nicely */
  .hero-trust {
    gap: 10px 14px;
    font-size: 12px;
    padding: 0 16px
  }

  .trust-sep {
    display: none
  }

  .trust-item {
    font-size: 12px
  }

  /* Metrics */
  .metric-card {
    padding: 22px 18px
  }

  .metric-card .number {
    font-size: 34px
  }

  .metric-card .label {
    font-size: 12px
  }

  .terminal-block {
    font-size: 11px;
    padding: 18px 16px;
    line-height: 1.9;
    overflow-x: auto
  }

  /* Pricing */
  .pricing-grid {
    margin-bottom: 20px
  }

  .pricing-card {
    padding: 24px 20px
  }

  .pricing-price-hidden {
    margin-bottom: 12px
  }

  .price-blur {
    font-size: 30px
  }

  .pricing-note {
    font-size: 12px;
    padding: 0 16px
  }

  /* FAQ */
  .faq-q {
    padding: 18px 20px;
    font-size: 14px;
    min-height: 60px;
    gap: 12px
  }

  .faq-a {
    padding: 0 20px
  }

  .faq-item.open .faq-a {
    padding: 0 20px 20px
  }

  .faq-a p {
    font-size: 13px;
    line-height: 1.7
  }

  /* Buttons — better touch targets */
  .btn {
    min-height: 44px
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 15px
  }

  .btn-nav {
    padding: 9px 16px !important;
    font-size: 13px !important
  }

  /* Footer */
  .footer {
    padding: 48px 0 28px
  }

  .footer-grid {
    margin-bottom: 36px
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    font-size: 12px
  }

  .footer-brand p {
    max-width: 100%;
    font-size: 13px
  }

  .footer h4 {
    font-size: 11px;
    margin-bottom: 14px
  }

  .footer a {
    font-size: 13px;
    padding: 5px 0
  }

  .footer-logo-img {
    height: 32px
  }

  /* Waitlist proof bar */
  .waitlist-proof {
    flex-direction: row;
    justify-content: space-around;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    flex-wrap: wrap
  }

  .wp-sep {
    display: none
  }

  .wp-item strong {
    font-size: 18px
  }

  .wp-item span {
    font-size: 11px
  }

  /* Step 2 — involvement */
  .step2-title {
    font-size: 18px;
    line-height: 1.3
  }

  .step2-sub {
    font-size: 12px
  }

  .involvement-card {
    padding: 14px 14px
  }

  .involvement-label {
    font-size: 14px
  }

  .involvement-desc {
    font-size: 12px;
    line-height: 1.5
  }

  /* Hero glow softer on mobile */
  .hero-glow-top {
    width: 500px;
    height: 300px
  }
}

/* ===== RESPONSIVE — SMALL PHONES (480px) ===== */
@media(max-width:480px) {
  .container {
    padding: 0 18px
  }

  .hero-content {
    padding: 0 18px
  }

  /* Hero */
  .hero {
    padding: 88px 0 44px
  }

  .hero h1 {
    font-size: 28px;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    line-height: 1.12
  }

  .hero-sub {
    font-size: 14px;
    margin-bottom: 28px;
    line-height: 1.55
  }

  /* Section */
  .section {
    padding: 32px 0
  }

  .section-title {
    font-size: 22px;
    line-height: 1.25
  }

  .section-sub {
    font-size: 13px;
    margin-bottom: 24px
  }

  /* Badge wraps cleanly */
  .hero-badge {
    font-size: 10px;
    border-radius: 8px
  }

  .badge-status {
    padding: 6px 10px;
    font-size: 9px
  }

  .badge-info {
    padding: 6px 10px;
    font-size: 11px
  }

  /* Footer single column */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .footer-legal {
    justify-content: center
  }

  /* Cards tighter */
  .pain-card,
  .feature-card,
  .who-col,
  .metric-card,
  .pricing-card {
    padding: 18px
  }

  .pain-card h3,
  .feature-card h3,
  .step h3 {
    font-size: 16px
  }

  .step {
    padding: 22px 18px
  }

  /* Pain stat — keep readable */
  .pain-stat {
    font-size: 10px;
    padding: 6px 10px
  }

  /* Mockup tighter */
  .mock-topbar {
    padding: 9px 10px;
    gap: 6px
  }

  .mock-repo-icon {
    width: 28px;
    height: 28px
  }

  .mock-repo-name {
    font-size: 11px
  }

  .mock-repo-url {
    font-size: 9px;
    max-width: 110px
  }

  .mock-mentor-btn {
    padding: 7px 10px;
    font-size: 10px
  }

  .mock-mentor-btn svg {
    width: 10px;
    height: 10px
  }

  .mock-layer-icon {
    width: 11px;
    height: 11px
  }

  /* Terminal block */
  .feature-card .terminal,
  .code-pill {
    font-size: 10px
  }

  /* Lists smaller */
  .who-col li {
    font-size: 13px;
    gap: 8px
  }

  .pricing-features-hint li {
    font-size: 12px
  }

  .faq-a p {
    font-size: 13px
  }

  /* Pricing on small phones */
  .price-blur {
    font-size: 26px
  }

  .pricing-price-hidden {
    margin-bottom: 10px
  }

  /* Hero CTA */
  .btn-lg {
    padding: 13px 24px;
    font-size: 14px;
    width: 100%;
    max-width: 280px
  }

  /* Modal */
  .modal {
    padding: 24px 20px;
    border-radius: 14px
  }

  .modal h3 {
    font-size: 18px;
    margin-bottom: 14px
  }

  .modal p,
  .modal-list li {
    font-size: 13px;
    line-height: 1.65
  }

  .modal-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 14px
  }

  /* Mobile menu */
  .mobile-menu a {
    font-size: 15px;
    padding: 13px 0
  }
}

/* ===== TINY PHONES (360px) ===== */
@media(max-width:360px) {
  .hero h1 {
    font-size: 26px
  }

  .section-title {
    font-size: 20px
  }

  .hero-badge {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    border-radius: 12px
  }

  .hero-badge .badge-status,
  .hero-badge .badge-info {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08)
  }

  .hero-badge .badge-info {
    border-bottom: none
  }
}

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  animation: fadeInOverlay 0.25s ease
}

.modal-overlay.open {
  display: flex
}

@keyframes fadeInOverlay {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.modal {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 36px 32px;
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  animation: slideUpModal 0.3s ease;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(59, 130, 246, 0.05)
}

@keyframes slideUpModal {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

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

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-family: inherit;
  line-height: 1
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15)
}

.modal-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid
}

.modal h3 {
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 16px;
  letter-spacing: -0.02em
}

.modal p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 14px
}

.modal p strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600
}

.modal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
  padding-left: 0;
  list-style: none
}

.modal-list li {
  padding-left: 18px;
  position: relative;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6
}

.modal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.7)
}

.modal-list li strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  display: inline-block;
  margin-right: 4px
}

.modal-meta {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.45) !important;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 8px
}

@media(max-width:480px) {
  .modal {
    padding: 28px 22px;
    max-height: 90vh
  }

  .modal h3 {
    font-size: 19px
  }

  .modal p,
  .modal-list li {
    font-size: 13px
  }
}

/* =====================================================================
   FROM THE BLOG — homepage teaser section
   ===================================================================== */
.blog-teaser {
  padding: 80px 0
}

.blog-teaser-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap
}

.blog-teaser-all {
  color: #60A5FA;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 10px 18px;
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 8px;
  background: rgba(59, 130, 246, 0.05);
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0
}

.blog-teaser-all:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.5);
  color: #93C5FD
}

.blog-teaser-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px
}

.blog-teaser-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease
}

a.blog-teaser-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(59, 130, 246, 0.35);
  transform: translateY(-2px)
}

.blog-teaser-featured {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.02));
  border-color: rgba(59, 130, 246, 0.25);
  padding: 32px
}

.blog-teaser-side {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.blog-teaser-side .blog-teaser-card {
  padding: 20px 22px;
  flex: 1
}

.blog-teaser-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #60A5FA;
  padding: 4px 10px;
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 4px;
  background: rgba(59, 130, 246, 0.06);
  margin-bottom: 16px;
  width: fit-content
}

.blog-teaser-tag.soon-tag {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03)
}

.blog-teaser-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px
}

.blog-teaser-title-sm {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.82);
  margin: 0
}

.blog-teaser-excerpt {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1
}

.blog-teaser-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px
}

.blog-teaser-dot {
  opacity: 0.5
}

.blog-teaser-link {
  color: #60A5FA;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: auto
}

.blog-teaser-soon {
  opacity: 0.7
}

/* Responsive */
@media (max-width: 1024px) {
  .blog-teaser-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .blog-teaser-side {
    flex-direction: row;
    gap: 12px
  }

  .blog-teaser-side .blog-teaser-card {
    flex: 1
  }
}

@media (max-width: 768px) {
  .blog-teaser {
    padding: 56px 0
  }

  .blog-teaser-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px
  }

  .blog-teaser-featured {
    padding: 24px
  }

  .blog-teaser-title {
    font-size: 20px
  }

  .blog-teaser-side {
    flex-direction: column
  }

  .blog-teaser-side .blog-teaser-card {
    padding: 18px 20px
  }
}

/* =====================================================================
   BLOG INDEX + ARTICLE PAGES
   ===================================================================== */

/* Active nav link state */
.nav-links a.active {
  color: #fff
}

.nav-links a.active::after {
  content: '';
  display: block;
  height: 2px;
  width: 100%;
  margin-top: 4px;
  background: #3B82F6;
  border-radius: 2px
}

/* ===== BLOG INDEX HEADER ===== */
.blog-header {
  position: relative;
  padding: 140px 0 56px;
  overflow: hidden
}

.blog-header::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 280px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0
}

.blog-header-inner {
  position: relative;
  z-index: 1;
  max-width: 760px
}

.blog-h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.98);
  margin-bottom: 18px
}

.blog-intro {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: 640px
}

/* ===== BLOG GRID ===== */
.blog-section {
  padding: 32px 0 96px
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 64px
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.25s ease;
  text-decoration: none;
  color: inherit;
  position: relative
}

a.blog-card:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(59, 130, 246, 0.35);
  transform: translateY(-2px)
}

.blog-card-featured {
  grid-column: 1 / -1;
  padding: 36px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.02));
  border-color: rgba(59, 130, 246, 0.25)
}

.blog-card-featured::after {
  content: 'FEATURED';
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #3B82F6;
  padding: 4px 10px;
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 4px;
  background: rgba(59, 130, 246, 0.08)
}

.blog-card-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #60A5FA;
  padding: 4px 10px;
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 4px;
  background: rgba(59, 130, 246, 0.06);
  margin-bottom: 18px;
  width: fit-content
}

.blog-card-tag.soon-tag {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03)
}

.blog-card-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px
}

.blog-card-featured .blog-card-title {
  font-size: 28px
}

.blog-card-excerpt {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 14px
}

.blog-card-dot {
  opacity: 0.5
}

.blog-card-link {
  color: #60A5FA;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: auto
}

.blog-card-soon {
  opacity: 0.75
}

.blog-card-soon .blog-card-title {
  color: rgba(255, 255, 255, 0.7)
}

/* ===== BLOG NEWSLETTER CTA ===== */
.blog-newsletter {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center
}

.blog-newsletter-inner {
  max-width: 560px;
  margin: 0 auto
}

.blog-newsletter-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px
}

.blog-newsletter-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px
}

/* ===== ARTICLE PAGE ===== */
.article {
  padding: 120px 0 64px
}

.article-container {
  max-width: 760px
}

.article-header {
  margin-bottom: 40px
}

.article-breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  margin-bottom: 24px
}

.article-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s
}

.article-breadcrumb a:hover {
  color: #60A5FA
}

.article-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #60A5FA;
  padding: 4px 10px;
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 4px;
  background: rgba(59, 130, 246, 0.06);
  margin-bottom: 20px
}

.article-h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.98);
  margin-bottom: 16px
}

.article-subtitle {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 24px
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap
}

.article-dot {
  opacity: 0.5
}

/* Article body */
.article-body {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82)
}

.article-body p {
  margin-bottom: 22px;
  text-wrap: pretty
}

.article-body strong {
  color: rgba(255, 255, 255, 0.98);
  font-weight: 600
}

.article-body em {
  color: rgba(255, 255, 255, 0.88)
}

.article-body h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.98);
  text-wrap: balance;
  margin: 56px 0 18px;
  scroll-margin-top: 100px
}

.article-body h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.95);
  text-wrap: balance;
  margin: 36px 0 14px
}

.article-body ol,
.article-body ul {
  margin: 0 0 24px 0;
  padding-left: 24px
}

.article-body ul {
  list-style: disc
}

.article-body ol {
  list-style: decimal
}

.article-body li {
  margin-bottom: 8px;
  padding-left: 6px;
  color: rgba(255, 255, 255, 0.78)
}

.article-body a {
  color: #60A5FA;
  text-decoration: underline;
  text-decoration-color: rgba(96, 165, 250, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s
}

.article-body a:hover {
  text-decoration-color: rgba(96, 165, 250, 0.8)
}

/* Buttons inside article body — restore proper styles (override inline-link rules above) */
.article-body a.btn {
  color: #fff;
  text-decoration: none;
  font-weight: 500
}

.article-body a.btn:hover {
  color: #fff;
  text-decoration: none
}

.article-body a.btn-primary,
.article-body a.btn-primary:hover {
  color: #fff;
  background: #3B82F6
}

.article-body a.btn-primary:hover {
  background: #2563EB
}

.article-body code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  color: #93C5FD
}

/* Table of contents */
.article-toc {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 36px 0
}

.toc-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px !important
}

.article-toc ol {
  margin: 0;
  padding-left: 20px;
  list-style: decimal
}

.article-toc li {
  margin-bottom: 6px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55)
}

.article-toc a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s
}

.article-toc a:hover {
  color: #60A5FA
}

/* Article tables */
.article-table-wrap {
  margin: 28px 0;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px
}

.article-table th,
.article-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.article-table th {
  background: rgba(59, 130, 246, 0.05);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em
}

.article-table td {
  color: rgba(255, 255, 255, 0.75)
}

.article-table tr:last-child td {
  border-bottom: none
}

/* Article code blocks */
.article-code {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13.5px;
  line-height: 1.7;
  background: #0F0F0F;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.85);
  white-space: pre;
  overflow-x: auto
}

/* Checklist style */
.article-checklist {
  list-style: none !important;
  padding-left: 0 !important
}

.article-checklist li {
  position: relative;
  padding-left: 30px !important;
  margin-bottom: 10px
}

.article-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #22C55E;
  font-weight: 700;
  font-size: 16px
}

/* Inline + final CTAs */
.article-cta-inline {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.02));
  border: 1px solid rgba(59, 130, 246, 0.22);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 40px 0
}

.article-cta-inline p {
  margin-bottom: 14px;
  font-size: 16px
}

.article-cta-inline p:last-of-type {
  margin-bottom: 20px
}

.article-cta-final {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.03));
  border: 1px solid rgba(59, 130, 246, 0.28);
  border-radius: 16px;
  padding: 36px;
  margin: 56px 0 32px
}

.article-cta-final h3 {
  font-size: 24px;
  margin-top: 0 !important;
  margin-bottom: 14px !important
}

.article-cta-final p {
  font-size: 16px
}

.article-cta-final .btn {
  margin-top: 12px
}

/* Article footer */
.article-footer {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px
}

.article-footer p {
  margin-bottom: 10px
}

/* Related articles */
.article-related {
  padding: 64px 0 96px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.01)
}

.related-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 28px
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.related-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease
}

.related-card:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(59, 130, 246, 0.3)
}

.related-card h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 14px
}

.related-soon {
  opacity: 0.7
}

/* ===== RESPONSIVE — BLOG/ARTICLE TABLET (1024px) ===== */
@media (max-width: 1024px) {
  .blog-h1 {
    font-size: 40px
  }

  .article-h1 {
    font-size: 36px
  }
}

/* ===== RESPONSIVE — BLOG/ARTICLE MOBILE (768px) ===== */
@media (max-width: 768px) {
  .blog-header {
    padding: 110px 0 40px
  }

  .blog-h1 {
    font-size: 34px
  }

  .blog-intro {
    font-size: 16px
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .blog-card {
    padding: 22px
  }

  .blog-card-featured {
    padding: 22px
  }

  .blog-card-featured::after {
    top: 22px;
    right: 22px;
    font-size: 9.5px;
    padding: 3px 8px;
    letter-spacing: 0.08em
  }

  .blog-card-featured .blog-card-tag {
    max-width: calc(100% - 90px)
  }

  .blog-card-featured .blog-card-title {
    font-size: 21px
  }

  .blog-card-title {
    font-size: 19px
  }

  .blog-newsletter {
    padding: 36px 24px
  }

  .blog-newsletter-title {
    font-size: 22px
  }

  .article {
    padding: 100px 0 48px
  }

  .article-h1 {
    font-size: 30px
  }

  .article-subtitle {
    font-size: 17px
  }

  .article-body {
    font-size: 16px
  }

  .article-body h2 {
    font-size: 24px;
    margin: 44px 0 14px
  }

  .article-body h3 {
    font-size: 18px;
    margin: 28px 0 10px
  }

  .article-code {
    font-size: 12.5px;
    padding: 16px 18px
  }

  .article-cta-final {
    padding: 26px 22px
  }

  .article-cta-final h3 {
    font-size: 20px
  }

  .related-grid {
    grid-template-columns: 1fr;
    gap: 14px
  }
}

/* ===== RESPONSIVE — BLOG/ARTICLE SMALL MOBILE (480px) ===== */
@media (max-width: 480px) {
  .blog-h1 {
    font-size: 28px
  }

  .article-h1 {
    font-size: 26px
  }

  .article-toc {
    padding: 18px 20px
  }

  .article-table th,
  .article-table td {
    padding: 10px 12px;
    font-size: 13px
  }

  /* Featured card: shorten tag label + tighten badge so both fit on one row */
  .blog-card-featured .blog-card-tag {
    font-size: 10px;
    padding: 3px 8px;
    letter-spacing: 0.04em
  }

  .blog-card-featured::after {
    font-size: 9px;
    padding: 2px 7px
  }
}

/* ===== COMPARISON TABLE (landing) ===== */
.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02)
}

.compare-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  font-size: 14px
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05)
}

.compare-table thead th {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  vertical-align: bottom;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12)
}

.compare-table tbody tr:last-child td,
.compare-table tbody tr:last-child th {
  border-bottom: none
}

.compare-table .compare-feature-col {
  width: 40%
}

.compare-table th[scope="row"],
.compare-table .compare-feature-col {
  text-align: left;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82)
}

/* Highlighted Xolvyn column */
.compare-table .compare-col-xolvyn {
  background: rgba(59, 130, 246, 0.06)
}

.compare-table thead th.compare-col-xolvyn {
  color: #60A5FA
}

.cmp-yes {
  color: #4ADE80;
  font-size: 16px;
  font-weight: 700
}

.cmp-no {
  color: rgba(255, 255, 255, 0.25);
  font-size: 15px;
  font-weight: 600
}

@media(max-width:768px) {

  .compare-table th,
  .compare-table td {
    padding: 13px 14px
  }
}

/* =====================================================================
   CAREERS PAGE
   Reuses existing tokens: .section, .container, .section-label,
   .section-title, .fade-up, .btn, .text-blue, card surfaces, .modal.
   ===================================================================== */

/* Careers hero — tighter than the product hero (no product mockup) */
.careers-hero {
  padding: 150px 0 56px
}

.careers-hero .hero-sub {
  margin-bottom: 0
}

/* "1 open role" badge segment uses the blue accent instead of green */
.badge-status.badge-hiring {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18) 0%, rgba(59, 130, 246, 0.07) 100%);
  color: #60A5FA
}

.badge-status.badge-hiring .badge-dot {
  background: #3B82F6;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
  animation-name: badgePulseBlue
}

@keyframes badgePulseBlue {

  0%,
  100% {
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.6)
  }

  50% {
    box-shadow: 0 0 18px rgba(59, 130, 246, 1)
  }
}

/* ===== ROLE CARD (repeatable) ===== */
.roles-list {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.role-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 34px;
  transition: all 0.3s
}

.role-card:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.09)
}

.role-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 6px
}

.role-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.2
}

.role-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.role-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 6px 11px;
  white-space: nowrap
}

.role-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.65;
  margin: 8px 0 26px;
  max-width: 720px
}

.role-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  margin-bottom: 28px
}

.role-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px
}

.role-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px
}

.role-col li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72)
}

.role-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: rgba(59, 130, 246, 0.55)
}

.role-col.nice-to-have li::before {
  background: rgba(167, 139, 250, 0.5)
}

.role-col li strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600
}

.role-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.role-actions .text-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s
}

.role-actions .text-link:hover {
  color: #60A5FA
}

/* ===== "WHAT THIS ACTUALLY IS" — radically honest ===== */
.honest-list {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.honest-block {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 6px 18px;
  align-items: start;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 2px solid rgba(59, 130, 246, 0.35);
  border-radius: 12px;
  padding: 24px 26px;
  transition: all 0.3s
}

.honest-block:hover {
  background: rgba(255, 255, 255, 0.035);
  border-left-color: rgba(59, 130, 246, 0.7)
}

.honest-num {
  grid-row: 1 / span 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1
}

.honest-block h3 {
  font-size: 17px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.01em;
  margin-bottom: 8px
}

.honest-block p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68)
}

.honest-block p + p {
  margin-top: 10px
}

.honest-block p strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600
}

.honest-block .mono-accent {
  font-family: 'JetBrains Mono', monospace;
  color: #60A5FA;
  font-size: 13.5px
}

/* ===== APPLICATION CHALLENGE ===== */
.challenge-card {
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 55%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 40px 42px
}

.challenge-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4ADE80;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 18px
}

.challenge-card > p {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  max-width: 760px
}

.challenge-card > p strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600
}

.challenge-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 30px 0 8px;
  counter-reset: chstep
}

.challenge-step {
  position: relative;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 22px
}

.challenge-step::before {
  counter-increment: chstep;
  content: counter(chstep, decimal-leading-zero);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: #60A5FA;
  display: block;
  margin-bottom: 10px
}

.challenge-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 7px;
  letter-spacing: -0.01em
}

.challenge-step p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62)
}

.challenge-fallback {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 22px
}

.challenge-fallback svg {
  flex-shrink: 0;
  margin-top: 2px
}

.challenge-fallback p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.66)
}

.challenge-fallback strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600
}

.challenge-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.challenge-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6
}

/* ===== APPLY MODAL EXTRAS (reuses .modal) ===== */
.modal .modal-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 4px 0 20px;
  counter-reset: applystep
}

.modal .modal-step {
  position: relative;
  padding-left: 38px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72)
}

.modal .modal-step::before {
  counter-increment: applystep;
  content: counter(applystep);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #60A5FA;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center
}

.modal .modal-step strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600
}

.modal-motive {
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 20px
}

.modal-motive .modal-motive-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #60A5FA;
  margin-bottom: 7px
}

.modal-motive p {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 0 !important;
  font-style: italic
}

.modal .btn-apply-mail {
  width: 100%;
  justify-content: center;
  margin-bottom: 6px
}

/* ===== VIEW-SOURCE EASTER EGG (#secret) ===== */
.secret-reveal {
  display: none
}

.secret-reveal:target {
  display: block;
  animation: slideUpModal 0.4s ease
}

.secret-reveal .secret-card {
  max-width: 680px;
  margin: 0 auto;
  background:
    radial-gradient(120% 160% at 100% 0%, rgba(167, 139, 250, 0.08) 0%, transparent 55%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 16px;
  padding: 36px 38px;
  text-align: center
}

.secret-reveal .secret-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #A78BFA;
  margin-bottom: 14px
}

.secret-reveal h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 14px
}

.secret-reveal p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin: 0 auto 14px
}

.secret-reveal .btn {
  margin-top: 8px
}

/* ===== ROLE: RESPONSIBILITIES + FULL TECH STACK ===== */
.role-do {
  margin-bottom: 30px
}

.role-stack {
  margin-bottom: 28px
}

.role-do > h4,
.role-stack > h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px
}

.role-stack-intro {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 720px;
  margin-bottom: 20px
}

.role-stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px
}

.stack-group {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 18px 18px 20px
}

.stack-group h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #60A5FA;
  margin-bottom: 13px
}

.stack-group ul {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.stack-group li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8)
}

.stack-group li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: rgba(59, 130, 246, 0.4)
}

.stack-group li strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600
}

.stack-group .q {
  display: block;
  font-size: 11.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 1px
}

.stack-note {
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 22px
}

.stack-note p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8)
}

.stack-note strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600
}

/* ===== CAREERS RESPONSIVE ===== */
@media(max-width:900px) {
  .role-cols {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .role-stack-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .challenge-steps {
    grid-template-columns: 1fr
  }
}

@media(max-width:768px) {
  .careers-hero {
    padding: 120px 0 44px
  }

  .role-card {
    padding: 24px 22px
  }

  .role-title {
    font-size: 20px
  }

  .role-card-head {
    gap: 12px
  }

  .role-stack-grid {
    grid-template-columns: 1fr
  }

  .honest-block {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 22px
  }

  .honest-num {
    grid-row: auto;
    font-size: 18px;
    margin-bottom: 4px
  }

  .challenge-card {
    padding: 28px 22px
  }

  .secret-reveal .secret-card {
    padding: 28px 22px
  }

  .secret-reveal h2 {
    font-size: 22px
  }
}

/* ===== MOBILE: comparison table -> stacked cards (≤768px) ===== */
@media(max-width:768px) {
  .compare-wrap { overflow-x: visible }
  .compare-table { min-width: 0 }
  .compare-table thead { display: none }
  .compare-table tbody,
  .compare-table tr,
  .compare-table th,
  .compare-table td { display: block }

  .compare-table tr {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden
  }
  .compare-table th[scope="row"] {
    text-align: left;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: auto
  }
  .compare-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: right
  }
  .compare-table tr td:last-child { border-bottom: none }
  .compare-table td.compare-col-xolvyn { background: rgba(59, 130, 246, 0.06) }

  /* Row labels via the column headers (no markup change needed) */
  .compare-table td::before {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    text-align: left;
    margin-right: 12px
  }
  .compare-table td:nth-child(2)::before { content: "Xolvyn" }
  .compare-table td:nth-child(3)::before { content: "Generic security scanners" }
  .compare-table td:nth-child(4)::before { content: "Generic graph tools" }
}

/* ===== MOBILE: tap targets, trust strips, overflow guards (≤768px) ===== */
@media(max-width:768px) {
  .btn,
  .btn-primary,
  .btn-plan-claim,
  .faq-q { min-height: 44px }
  .mobile-menu a { min-height: 44px }

  /* trust rows wrap instead of overflowing */
  .hero-trust { flex-wrap: wrap; row-gap: 8px }
  .hero-trust-strip { max-width: 100% }

  /* belt-and-suspenders against horizontal overflow */
  .product-mockup,
  img,
  table { max-width: 100% }
}

/* ===== MOBILE: hero type scale (≤480 / ≤390 / ≤360) ===== */
@media(max-width:480px) {
  .hero h1 { font-size: 30px; line-height: 1.12 }
  .hero-sub { font-size: 14.5px }
  .section-title { font-size: 22px }
}

@media(max-width:390px) {
  .hero h1 { font-size: 27px }
}

@media(max-width:360px) {
  .hero h1 { font-size: 24px }
  .hero-sub { font-size: 14px }
}



/* ===== HERO ANCHOR LINE ===== */
.hero-anchor {
  max-width: 620px;
  margin: -28px auto 30px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5)
}
/* ===== FINDINGS CARD (hero visual) ===== */
.findings-card {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: visible
}

.findings-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0
}

.findings-inner {
  position: relative;
  z-index: 1;
  background: #0E0E0E;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
  -webkit-mask-image: linear-gradient(to bottom, #000 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 80%, transparent 100%)
}

.findings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px
}

.findings-repo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: -0.01em
}

.findings-grade {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: #F59E0B;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 100px;
  padding: 5px 12px;
  letter-spacing: 0.01em
}

.findings-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px
}

.findings-list {
  display: flex;
  flex-direction: column
}

.finding-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05)
}

.finding-row-last {
  border-bottom: none
}

.finding-left {
  flex: 1;
  min-width: 0
}

.finding-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px
}

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

.finding-file {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.finding-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
  padding-left: 18px
}

.finding-right {
  width: 140px;
  flex-shrink: 0;
  text-align: right;
  padding-top: 2px
}

.finding-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  display: block;
  margin-bottom: 6px
}

.finding-bar {
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden
}

.finding-bar > span {
  display: block;
  height: 100%;
  border-radius: 2px;
  transition: width 0.6s ease
}

/* Findings card mobile */
@media(max-width:768px) {
  .findings-inner { padding: 20px }
  .finding-row { gap: 16px }
  .finding-right { width: 100px }
  .finding-file { font-size: 13px }
  .finding-desc { font-size: 12px }
  .findings-repo { font-size: 12px }
}

@media(max-width:480px) {
  .findings-inner { padding: 16px }
  .finding-right { width: 80px }
  .finding-file { font-size: 12px }
  .finding-count { font-size: 12px }
}

/* ===== HOW IT WORKS ===== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.how-step {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 26px;
  transition: all .3s
}

.how-step:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px)
}

.how-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px
}

.how-step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.18)
}

.how-step-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center
}

.how-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 9px
}

.how-step p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6)
}

@media(max-width:768px) {
  .how-grid {
    grid-template-columns: 1fr;
    gap: 14px
  }
}

/* =====================================================================
   HERO V3 — TEXT-FORWARD (locked copy from CONTENT.md)
   Type + whitespace are the visual; background stays atmospheric.
   ===================================================================== */

/* Very faint grid, masked so it concentrates behind the headline */
.hero::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 30%, transparent 75%);
  pointer-events: none
}

/* Soft blue glow behind the headline (~0.10) */
.hero-glow-top {
  top: -40px;
  width: 880px;
  height: 560px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.10) 0%, transparent 68%)
}

/* Quiet drifting accent blob, bottom-right corner */
.hero-blob {
  position: absolute;
  right: -140px;
  bottom: -160px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.07), transparent 65%);
  filter: blur(70px);
  pointer-events: none;
  animation: heroBlobDrift 22s ease-in-out infinite alternate
}

@keyframes heroBlobDrift {
  from {
    transform: translate(0, 0)
  }

  to {
    transform: translate(-64px, -48px)
  }
}

/* Minimal muted status pill */
/* Two-segment status pill: green "private beta" badge + launch date */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(13, 13, 13, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 5px 14px 5px 5px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35)
}

/* left segment — green outlined badge */
.hero-pill-beta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border: 1px solid rgba(52, 211, 153, 0.45);
  background: rgba(34, 197, 94, 0.1);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #34D399;
  white-space: nowrap;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.16)
}

.hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.9);
  animation: badgePulseGreen 2s ease-in-out infinite;
  flex-shrink: 0
}

/* divider */
.hero-pill-sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.14);
  flex-shrink: 0
}

/* right segment — launch date */
.hero-pill-launch {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap
}

@keyframes badgePulseGreen {
  0%, 100% {
    box-shadow: 0 0 7px rgba(52, 211, 153, 0.6)
  }
  50% {
    box-shadow: 0 0 13px rgba(52, 211, 153, 1)
  }
}

/* narrow phones: shrink so both segments fit on one line */
@media (max-width: 420px) {
  .hero-pill {
    gap: 7px;
    padding: 4px 11px 4px 4px
  }

  .hero-pill-beta {
    font-size: 9.5px;
    letter-spacing: 0.05em;
    padding: 4px 9px;
    gap: 6px
  }

  .hero-pill-launch {
    font-size: 11.5px
  }
}

/* Final say on hero type scale — overrides earlier mobile shrink rules */
.hero {
  padding: 152px 0 96px
}

.hero h1 {
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  max-width: 580px;
  margin-bottom: 32px
}

.hero-cta-row {
  margin-bottom: 16px
}

.hero-micro {
  margin: 0 auto
}

@media(max-width:768px) {
  .hero {
    padding: 120px 0 64px
  }

}

@media (prefers-reduced-motion: reduce) {

  .hero-blob,
  .hero-pill-dot {
    animation: none
  }

  .fade-up {
    opacity: 1;
    transform: none;
    transition: none
  }
}

/* Keep the careers hero on its own spacing (the .hero override above is landing-only) */
.careers-hero {
  padding: 150px 0 56px
}

@media(max-width:768px) {
  .careers-hero {
    padding: 120px 0 44px
  }
}

/* =====================================================================
   SCROLL HERO — pinned 4-slide showcase
   Track provides scroll distance; sticky viewport pins; JS maps scroll
   progress to slide transforms (transform/opacity only, GPU-friendly).
   ===================================================================== */

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


/* =====================================================================
   SECTIONS 4–9 — NEW LANDING PAGE STRUCTURE
   ===================================================================== */

/* Generous vertical padding for content sections (~96px desktop) */
.section--lg {
  padding: 64px 0
}

/* ===== TWO PILLARS — Understand + Defend (equal weight) ===== */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px
}

.pillar {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pillar) 0%, transparent 85%)
}

.pillar:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035)
}

.pillar-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07)
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  flex-shrink: 0
}

.pillar-name {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff
}

.pillar-tag {
  margin: 5px 0 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5)
}

.pillar-list {
  list-style: none;
  margin: 0;
  padding: 0
}

.pillar-item {
  padding: 18px 0
}

.pillar-item + .pillar-item {
  border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.pillar-item h4 {
  margin: 0 0 5px;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95)
}

.pillar-item p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  text-wrap: pretty
}

@media (max-width: 860px) {
  .pillars {
    grid-template-columns: 1fr
  }
  .pillar {
    padding: 26px
  }
}

/* ===== BUILT FOR TEAMS — the competitive line in the sand ===== */
.teams-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 48px);
  border: 1px solid rgba(59, 130, 246, 0.16);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.05) 0%, rgba(255, 255, 255, 0.015) 62%)
}

.teams-glow {
  position: absolute;
  top: -42%;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 92%);
  height: 440px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.14) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0
}

.teams-band > *:not(.teams-glow) {
  position: relative;
  z-index: 1
}

.teams-title {
  margin: 14px auto 20px;
  max-width: 22ch
}

.teams-body {
  max-width: 60ch;
  margin: 0 auto 16px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.66);
  text-wrap: pretty
}

.teams-kicker {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5)
}

.teams-kicker strong {
  color: #fff;
  font-weight: 600
}

/* ===== SECTION 5 — HOW IT WORKS STEPS ===== */
.hiw-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0
}

.hiw-step {
  flex: 1;
  max-width: 340px;
  text-align: center;
  padding: 32px 24px
}

.hiw-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  color: var(--accent, #3B82F6);
  margin-bottom: 22px
}

/* thin gradient rules that fade into the accent-colored number on each side */
.hiw-num::before,
.hiw-num::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent, #3B82F6))
}

.hiw-num::after {
  transform: scaleX(-1)
}

.hiw-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 1px solid
}

.hiw-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.3
}

.hiw-step p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.65
}

.hiw-connector {
  display: flex;
  align-items: center;
  padding-top: 64px;
  flex-shrink: 0;
  opacity: 0.7
}

/* ===== SECTION 8 — CTA BAND ===== */
.cta-band {
  border-top: 1px solid rgba(255, 255, 255, 0.05)
}

.cta-band-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative
}

.cta-band-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 450px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.09) 0%, rgba(59, 130, 246, 0.02) 40%, transparent 65%);
  pointer-events: none
}

/* ===== SECTION 9 — FOOTER (rebuilt) ===== */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px
}

.footer-cols {
  display: flex;
  gap: 64px
}

.footer-bottom a {
  display: inline;
  padding: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5)
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.85)
}

.footer-tagline {
  font-size: 13px;
  font-weight: 600;
  color: #60A5FA;
}

.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 24px
}

.footer-cr {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap
}

.footer-legal a {
  display: inline;
  padding: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.85)
}

/* ===== RESPONSIVE — NEW SECTIONS ===== */
@media (max-width: 1024px) {
  .section--lg {
    padding: 56px 0
  }

  .footer-cols {
    gap: 40px
  }
}

@media (max-width: 768px) {
  .section--lg {
    padding: 48px 0
  }

  /* Steps → stacked */
  .hiw-steps {
    flex-direction: column;
    align-items: center;
    gap: 4px
  }

  .hiw-step {
    padding: 20px 16px;
    max-width: 100%
  }

  .hiw-connector {
    padding-top: 0;
    transform: rotate(90deg)
  }

  .hiw-num {
    font-size: 12px;
    margin-bottom: 18px
  }

  /* Footer → stacked */
  .footer-top {
    flex-direction: column;
    gap: 32px
  }

  .footer-cols {
    gap: 32px
  }
}

@media (max-width: 480px) {
  .section--lg {
    padding: 40px 0
  }

  .footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }

  .footer-cols > div:last-child {
    grid-column: 1 / -1
  }

  .hiw-step h3 {
    font-size: 15px
  }

  .hiw-step p {
    font-size: 13px
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none
  }

  .hiw-step,
  .faq-item,
  .faq-q svg {
    transition: none
  }

  .faq-a {
    transition: none
  }

  .cta-band-glow {
    display: none
  }
}

/* ===== CAREERS PAGE — CLOSED STATE ===== */

/* Badge — red/amber "Applications Closed" */
.badge-closed {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.06) 100%) !important;
  color: #F87171 !important;
}

.badge-dot-closed {
  background: #EF4444 !important;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.8) !important;
  animation: badgePulseClosed 2s ease-in-out infinite !important;
}

@keyframes badgePulseClosed {
  0%, 100% { box-shadow: 0 0 8px rgba(239, 68, 68, 0.6) }
  50% { box-shadow: 0 0 18px rgba(239, 68, 68, 1) }
}

/* Disabled button — grayed out, no hover */
.btn-disabled {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: not-allowed;
  pointer-events: none;
  user-select: none;
}

/* Closed role cards — slightly dimmed */
.role-card-closed {
  opacity: 0.7;
  position: relative;
}

.role-card-closed::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(10, 10, 10, 0.15);
  pointer-events: none;
}

/* Closed tag — red tint */
.role-tag-closed {
  background: rgba(239, 68, 68, 0.12) !important;
  color: #F87171 !important;
  border-color: rgba(239, 68, 68, 0.2) !important;
}

/* Challenge card — closed state */
.challenge-card-closed {
  opacity: 0.7;
}

/* =====================================================================
   HERO - split layout: copy left, framed product shot right.
   One visible H1; the headline is the first read, the shot supports it.
   ===================================================================== */
.lp-hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 64px;
}

/* Atmospheric blue glow - decorative, biased toward the visual */
.lp-hero-glow {
  position: absolute;
  top: -120px;
  left: 55%;
  transform: translateX(-50%);
  width: min(980px, 96vw);
  height: 620px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.10) 0%, transparent 66%);
  pointer-events: none;
  z-index: 0;
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 45fr 55fr;
  grid-template-areas:
    "copy  shot"
    "trust shot";
  column-gap: 56px;
  row-gap: 0;
  align-items: center;
}

.lp-hero-copy {
  grid-area: copy;
  align-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.lp-hero-title {
  margin: 0;
  font-size: clamp(1.85rem, 2.9vw, 2.55rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #fff;
  text-wrap: balance;
}

/* Sole emphasized word - solid brand blue, no gradient */
.lp-hero-em {
  color: #3B82F6;
}

.lp-hero-sub {
  max-width: 48ch;
  margin: 18px 0 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.66);
  text-wrap: pretty;
}

/* Hero microcopy — the short reassurance line under the CTAs */
.lp-hero-micro {
  margin: 16px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.lp-hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 30px;
}

/* Dominant CTA - #2563EB keeps white text at 5.2:1 (WCAG AA) */
.lp-hero-cta-primary {
  background: #2563EB;
  color: #fff;
  font-size: 15.5px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 10px;
  min-height: 48px;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.28);
}

.lp-hero-cta-primary:hover {
  background: #1D4ED8;
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.36);
}

.lp-hero-cta-primary:active {
  background: #1E40AF;
  transform: translateY(0);
}

.lp-hero-cta-primary:focus-visible {
  outline: 2px solid #93C5FD;
  outline-offset: 3px;
}

.lp-hero-arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.lp-hero-cta-primary:hover .lp-hero-arrow {
  transform: translateX(3px);
}

/* Ghost secondary sized to match the primary */
.lp-hero-cta-ghost {
  font-size: 15px;
  font-weight: 500;
  padding: 13px 22px;
  border-radius: 10px;
  min-height: 48px;
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.75);
}

.lp-hero-cta-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.lp-hero-cta-ghost:focus-visible {
  outline: 2px solid #93C5FD;
  outline-offset: 3px;
}

/* Compact trust strip inside the copy column */
.lp-hero-trust {
  grid-area: trust;
  align-self: start;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: flex-start;
  gap: 12px 28px;
  margin-top: 34px;
  padding: 0;
  list-style: none;
}

.lp-hero-trust li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

.lp-hero-trust-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.45);
}

.lp-hero-trust-icon svg {
  width: 15px;
  height: 15px;
  display: block;
}

.lp-hero-trust-logos {
  gap: 6px;
}

/* Layered product composition: ambient glow behind, a gently tilted
   screenshot window whose bottom edge fades into the page, and a floating
   security-finding card overlapping its lower-left corner. */
.lp-hero-shot {
  grid-area: shot;
  position: relative;
  margin: 0;
  min-width: 0;
  perspective: 1500px;
}

/* Layer 2 - soft brand-blue ambient glow behind the window; reads as one
   light source with the section glow (blue only, no gradient of hues) */
.lp-hero-shot-glow {
  position: absolute;
  z-index: 0;
  inset: -16% -8% -6% -8%;
  background: radial-gradient(ellipse 72% 62% at 52% 42%, rgba(59, 130, 246, 0.16) 0%, rgba(59, 130, 246, 0.05) 42%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

/* Layer 1 - the product window, gently tilted in space. The drop shadow
   lives here (unmasked) so depth is preserved; the 1px border and the
   bottom edge-fade live on the image so they melt together. */
.lp-hero-frame {
  position: relative;
  z-index: 2;
  /* left-anchored and scaled down so all four edges sit clearly inside the
     column with room to spare on the right, even with the perspective */
  width: 86%;
  border-radius: 12px;
  transform: perspective(2400px) rotateY(3.5deg) rotateX(1.5deg);
  transform-origin: 34% 50%;
  box-shadow:
    0 34px 70px -26px rgba(6, 10, 22, 0.92),
    0 12px 30px -14px rgba(6, 10, 22, 0.7);
  will-change: transform;
}

.lp-hero-frame picture {
  display: block;
}

.lp-hero-shot-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  /* crisp 1px frame border on all four edges. No mask/overlay/opacity dims
     the panel - the screenshot reads bright and legible. */
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.11);
  /* high-quality resampling when downscaled (not pixelated) */
  image-rendering: auto;
}

/* Layer 3 - floating security finding card (HTML/CSS), overlapping the
   lower-left corner in front of the window with its own shadow */
.lp-hero-finding {
  position: absolute;
  z-index: 3;
  /* rests on the window's lower-left corner - most of the card over solid
     window content (blast bar on the window), hanging off to the lower-left */
  left: -60px;
  bottom: -34px;
  width: 210px;
  padding: 12px 13px 13px;
  background: rgba(14, 16, 21, 0.84);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  box-shadow:
    0 24px 46px -14px rgba(0, 0, 0, 0.62),
    0 6px 16px -6px rgba(0, 0, 0, 0.5);
  animation: findingFloat 7s ease-in-out infinite;
}

.finding-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}

.finding-sev {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #F87171;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.38);
  border-radius: 6px;
  padding: 2px 7px;
}

.finding-cvss {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.5);
  font-variant-numeric: tabular-nums;
}

.finding-file {
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.92);
}

.finding-desc {
  margin: 4px 0 0;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}

.finding-blast {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.finding-blast-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.finding-blast-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.5);
}

/* the point of the card - most eye-catching element */
.finding-blast-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: #60A5FA;
  font-variant-numeric: tabular-nums;
}

.finding-blast-track {
  height: 5px;
  margin-top: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.finding-blast-fill {
  display: block;
  height: 100%;
  width: 86%;
  border-radius: 4px;
  background: #3B82F6;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.55);
  transform-origin: left center;
  animation: blastFill 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

@keyframes findingFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes blastFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* gentle continuous lift for the product image (mobile) + a soft glow breath */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes glowBreath {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}

/* Entrance: gentle fade-up, copy first. CSS-only so the final state
   renders even without JS; disabled under prefers-reduced-motion. */
@keyframes lpHeroIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.lp-hero-inner > * {
  animation: lpHeroIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lp-hero-copy { animation-delay: 0.05s; }
.lp-hero-shot { animation-delay: 0.18s; }
.lp-hero-trust { animation-delay: 0.26s; }

@media (prefers-reduced-motion: reduce) {
  .lp-hero-inner > * { animation: none; }
  .lp-hero-cta-primary:hover { transform: none; }
  .lp-hero-arrow { transition: none; }
  .lp-hero-finding { animation: none; }
  .finding-blast-fill { animation: none; }
  .lp-hero-frame { animation: none; }
  .lp-hero-shot-glow { animation: none; }
}

/* Tablet and below: stack - copy on top, framed shot below (full width,
   natural aspect, nothing cropped). Flatten the tilt and move the finding
   card inside the window's lower-left so it can't overflow. */
@media (max-width: 1023px) {
  .lp-hero { padding: 112px 0 64px; }
  .lp-hero-glow { left: 50%; }
  /* single column - items flow in DOM order: copy, image, trust */
  .lp-hero-inner { grid-template-columns: 1fr; grid-template-areas: none; gap: 40px; }
  .lp-hero-copy, .lp-hero-shot, .lp-hero-trust { grid-area: auto; align-self: auto; }
  .lp-hero-copy { align-items: center; text-align: center; }
  .lp-hero-title { font-size: clamp(2rem, 5.2vw, 3rem); }
  .lp-hero-sub { max-width: 58ch; }
  .lp-hero-cta { justify-content: center; }
  .lp-hero-trust { justify-content: center; }
  .lp-hero-shot { perspective: none; }
  /* the product image gently lifts; the glow behind it breathes */
  .lp-hero-frame { transform: none; width: 100%; animation: heroFloat 7s ease-in-out infinite; }
  .lp-hero-shot-glow { animation: glowBreath 6s ease-in-out infinite; }
  /* the animated finding card flows in centered below the image (its float +
     blast-bar fill carry the desktop motion) rather than covering the panel */
  .lp-hero-finding {
    position: static;
    display: block;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 26px auto 0;
    width: 212px;
  }
}

/* Phone: compact centered CTAs (tap targets stay >= 48px) */
@media (max-width: 480px) {
  .lp-hero { padding: 104px 0 48px; }
  .lp-hero-title { letter-spacing: -0.02em; }
  .lp-hero-cta { flex-direction: column; gap: 10px; width: 100%; }
  .lp-hero-cta-primary { width: auto; min-width: 220px; justify-content: center; }
  .lp-hero-cta-ghost { width: auto; min-width: 220px; justify-content: center; }
  .lp-hero-trust { grid-template-columns: repeat(2, auto); gap: 10px 20px; }
  .lp-hero-trust li { font-size: 12px; }
  .lp-hero-shot-img { border-radius: 10px; }
}

/* =====================================================================
   FOUNDING ACCESS panel (replaces the removed 4-tier pricing grid)
   ===================================================================== */
.founding-panel {
  max-width: 720px;
  margin: 52px auto 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 48px 44px;
}

.founding-copy {
  max-width: 56ch;
  margin: 8px auto 30px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.66);
}

.founding-cta {
  background: #2563EB;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 10px;
  min-height: 50px;
}

.founding-cta:hover {
  background: #1D4ED8;
}

.founding-cta:focus-visible {
  outline: 2px solid #93C5FD;
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .founding-panel {
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .founding-panel {
    padding: 32px 22px;
  }
  .founding-cta {
    width: 100%;
    justify-content: center;
  }
}

/* =====================================================================
   SKIP-TO-CONTENT LINK (a11y) - hidden until keyboard focus, then slides in
   ===================================================================== */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: #2563EB;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.18s ease;
}

.skip-link:focus {
  top: 12px;
  outline: 2px solid #93C5FD;
  outline-offset: 2px;
}

/* the skip target is a whole section; don't paint a focus ring across it */
.lp-hero:focus,
.blog-header:focus,
.careers-hero:focus {
  outline: none;
}

/* =====================================================================
   Global focus-visible ring + pressed feedback (a11y)
   Keyboard focus gets a clear ring on every interactive element; the
   outline follows each element's own border-radius. Pointer clicks stay
   ring-free (focus-visible, not focus).
   ===================================================================== */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid #93C5FD;
  outline-offset: 2px;
}

.btn:active,
.mobile-cta:active {
  transform: scale(0.98);
}

@media (prefers-reduced-motion: reduce) {
  .btn:active,
  .mobile-cta:active { transform: none; }
}
