/* ================================
   HITLINT DESIGN SYSTEM
   Dark-first. Technical. Modern.
   ================================ */

:root {
  /* Surfaces */
  --bg-primary: #0C0E12;
  --bg-secondary: #131620;
  --bg-elevated: #1A1E2A;
  --bg-card: #161A25;
  --bg-hover: #1E2333;
  
  /* Text */
  --text-primary: #E8EAF0;
  --text-secondary: #8B90A0;
  --text-muted: #747A92;
  
  /* Accent - verification green */
  --accent: #22D68A;
  --accent-dim: #1AAF6F;
  --accent-glow: rgba(34, 214, 138, 0.15);
  --accent-text: #0C0E12;
  --accent-glow-strong: rgba(34, 214, 138, 0.25);
  --accent-glow-soft: rgba(34, 214, 138, 0.06);

  /* Status colors */
  --pass: #22D68A;
  --fail: #F04E4E;
  --warn: #F0A030;
  --info: #3B9EFF;

  /* Borders */
  --border: #1E2233;
  --border-subtle: #161A25;
  --border-accent: rgba(34, 214, 138, 0.3);

  /* Shadows & Glows */
  --glow-sm: 0 0 20px rgba(34, 214, 138, 0.1);
  --glow-md: 0 0 40px rgba(34, 214, 138, 0.15);
  --glow-lg: 0 0 80px rgba(34, 214, 138, 0.2);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  
  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Spacing */
  --section-pad: clamp(60px, 8vw, 120px);
  --container-max: 1200px;
  
  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ================================
   RESET & BASE
   ================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--text-primary);
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ================================
   LAYOUT
   ================================ */

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

.section {
  padding: var(--section-pad) 0;
}

/* ================================
   NAV
   ================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 3, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0;
}

.logo-tagline {
  display: block;
  width: 100%;
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: -1px;
  line-height: 1;
}

.logo-hit {
  color: var(--text-primary);
}

.logo-lint {
  color: var(--accent);
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s var(--ease);
  letter-spacing: 0.01em;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s var(--ease);
  box-shadow: 0 0 8px rgba(34, 214, 138, 0.4);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

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

.nav-cta {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-text);
  background: var(--accent);
  padding: 8px 20px;
  text-decoration: none;
  transition: all 0.2s var(--ease);
  box-shadow: 0 0 16px rgba(34, 214, 138, 0.3);
}

.nav-cta:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  box-shadow: 0 0 20px rgba(232, 234, 240, 0.15);
}

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

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: 0.2s;
}

/* ================================
   HERO
   ================================ */

.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  background-color: #000003;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(34, 214, 138, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(59, 158, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 214, 138, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 214, 138, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
  animation: grid-fade 8s ease-in-out infinite alternate;
}

@keyframes grid-fade {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  padding: 6px 14px;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--glow-sm);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-split {
  position: relative;
  min-height: 560px;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.hero-image {
  position: absolute;
  top: -20px;
  right: -8%;
  bottom: 10px;
  left: 25%;
  z-index: 1;
  overflow: hidden;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 5% 10% 10% 5%;
  background: radial-gradient(ellipse at 55% 35%, rgba(34, 214, 138, 0.07) 0%, transparent 65%);
  filter: blur(50px);
  z-index: -1;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 20%;
  mix-blend-mode: lighten;
  mask-image: radial-gradient(ellipse 95% 90% at 55% 45%, black 50%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 95% 90% at 55% 45%, black 50%, transparent 85%);
  filter: brightness(1.05) contrast(1.1);
}

.hero-accent {
  color: var(--accent);
  text-shadow: 0 0 40px rgba(34, 214, 138, 0.3), 0 0 80px rgba(34, 214, 138, 0.1);
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
  text-shadow: 0 1px 8px rgba(12, 14, 18, 0.9);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(34, 214, 138, 0.3);
}

.proof-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

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

/* ================================
   BUTTONS
   ================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.2s var(--ease);
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-text);
  box-shadow: 0 0 20px rgba(34, 214, 138, 0.3), 0 0 60px rgba(34, 214, 138, 0.1);
}

.btn-primary:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  box-shadow: 0 0 30px rgba(232, 234, 240, 0.15);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--glow-sm);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
}

.btn-full {
  width: 100%;
}

/* ================================
   SECTION COMMON
   ================================ */

.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(34, 214, 138, 0.4);
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ================================
   PROBLEM SECTION
   ================================ */

.section-problem {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

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

.problem-text h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.problem-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.75;
}

/* Terminal */
.problem-terminal {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(34, 214, 138, 0.05);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-dot.red { background: #F04E4E; }
.terminal-dot.yellow { background: #F0A030; }
.terminal-dot.green { background: #22D68A; }

.terminal-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 8px;
}

.terminal-body {
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 2;
  overflow: hidden;
}

.terminal-line {
  display: flex;
  gap: 12px;
  white-space: nowrap;
  overflow: hidden;
}

.t-time { color: var(--text-muted); }
.t-pass { color: var(--pass); font-weight: 600; }
.t-fail { color: var(--fail); font-weight: 600; }
.t-warn { color: var(--warn); font-weight: 600; }
.t-info { color: var(--info); font-weight: 600; }
.t-msg { color: var(--text-secondary); }

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

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ================================
   SOLUTION / FLOW
   ================================ */

.section-solution {
  border-top: 1px solid var(--border);
  position: relative;
}

.section-solution::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(34, 214, 138, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.flow-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  min-width: 200px;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-card);
}

.flow-step:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card), var(--glow-sm);
  transform: translateY(-2px);
}

.flow-step-hitlint {
  border-color: var(--border-accent);
  background: rgba(34, 214, 138, 0.04);
  box-shadow: var(--shadow-card), var(--glow-md);
}

.flow-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
}

.flow-icon svg {
  width: 100%;
  height: 100%;
}

.flow-label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
}

.flow-arrow {
  width: 40px;
  color: var(--text-muted);
}

.flow-arrow svg {
  width: 100%;
}

/* ================================
   USE CASES
   ================================ */

.section-usecases {
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

.usecase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.usecase-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-card);
}

.usecase-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card), var(--glow-sm);
  transform: translateY(-2px);
}

.usecase-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: 16px;
}

.usecase-icon svg {
  width: 100%;
  height: 100%;
}

.usecase-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.usecase-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ================================
   WHY SECTION
   ================================ */

.section-why {
  border-top: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}

.why-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.why-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ================================
   CTA SECTION
   ================================ */

.section-cta {
  padding: 80px 0;
}

.cta-box {
  text-align: center;
  padding: 72px 40px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(34, 214, 138, 0.03) 50%, var(--bg-secondary) 100%);
  border: 1px solid var(--border-accent);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(34, 214, 138, 0.08), var(--shadow-card);
}

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

.cta-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.cta-box h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cta-box p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 32px;
}

/* ================================
   PAGE HERO (subpages)
   ================================ */

.page-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(34, 214, 138, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-short {
  padding: 140px 0 60px;
}

.page-hero-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.page-hero-sub {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.7;
}

/* ================================
   SERVICES - DO/DON'T
   ================================ */

.do-dont-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.do-card,
.dont-card {
  padding: 36px;
  border: 1px solid var(--border);
}

.do-card {
  background: rgba(34, 214, 138, 0.03);
  border-color: var(--border-accent);
  box-shadow: 0 0 40px rgba(34, 214, 138, 0.06), var(--shadow-card);
}

.dont-card {
  background: rgba(240, 78, 78, 0.03);
  border-color: rgba(240, 78, 78, 0.2);
  box-shadow: 0 0 40px rgba(240, 78, 78, 0.04), var(--shadow-card);
}

.do-title,
.dont-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.do-icon { color: var(--pass); font-size: 20px; }
.dont-icon { color: var(--fail); font-size: 20px; }

.do-list,
.dont-list {
  list-style: none;
}

.do-list li,
.dont-list li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
  line-height: 1.6;
}

.do-list li:last-child,
.dont-list li:last-child {
  border-bottom: none;
}

/* ================================
   SERVICE TIERS
   ================================ */

.section-tiers {
  border-top: 1px solid var(--border);
}

.tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-card);
}

.tier-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card), var(--glow-sm);
  transform: translateY(-3px);
}

.tier-featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-card), var(--glow-md);
}

.tier-featured:hover {
  box-shadow: var(--shadow-card), var(--glow-lg);
}

.tier-badge {
  position: absolute;
  top: -1px;
  left: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-text);
  background: var(--accent);
  padding: 4px 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(34, 214, 138, 0.4);
}

.tier-header {
  padding: 32px 28px 24px;
  border-bottom: 1px solid var(--border);
}

.tier-name {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tier-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.tier-body {
  padding: 24px 28px;
  flex: 1;
}

.tier-features {
  list-style: none;
}

.tier-features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--accent);
}

.tier-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--border);
}

.tier-best {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

.tier-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ================================
   VERIFICATION TYPES
   ================================ */

.section-types {
  border-top: 1px solid var(--border);
}

.types-grid {
  margin-top: 40px;
}

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

.type-name {
  font-weight: 600;
  font-size: 16px;
  min-width: 260px;
}

.type-checks {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.check-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  padding: 4px 10px;
  letter-spacing: 0.02em;
  transition: all 0.2s var(--ease);
}

.check-tag:hover {
  background: var(--accent-glow-strong);
  box-shadow: var(--glow-sm);
}

/* ================================
   HOW IT WORKS - STEPS
   ================================ */

.steps-vertical {
  max-width: 760px;
  margin: 0 auto;
}

.step-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  padding-top: 4px;
  text-shadow: 0 0 30px rgba(34, 214, 138, 0.4);
}

.step-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-content > p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}

.step-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.step-detail {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s var(--ease);
}

.step-detail:hover {
  border-color: var(--border-accent);
}

.step-detail h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.step-detail p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-connector {
  width: 2px;
  height: 48px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--border) 100%);
  margin: 16px 0 16px 38px;
}

/* ================================
   INTEGRATION
   ================================ */

.section-integration {
  border-top: 1px solid var(--border);
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.int-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-card);
}

.int-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card), var(--glow-sm);
  transform: translateY(-2px);
}

.int-card h3 {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.int-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ================================
   QUALITY
   ================================ */

.section-quality {
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.quality-item {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.3s var(--ease);
}

.quality-item:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card), var(--glow-sm);
  transform: translateY(-2px);
}

.quality-stat {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  text-shadow: 0 0 30px rgba(34, 214, 138, 0.4);
}

.quality-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ================================
   FAQ
   ================================ */

.section-faq {
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 720px;
  margin-top: 40px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-toggle {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--text-muted);
  transition: transform 0.2s var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  padding-bottom: 20px;
}

/* ================================
   CONTACT
   ================================ */

.section-contact {
  padding-top: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
}

.contact-form-wrap h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 15px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 14px;
  transition: border-color 0.2s var(--ease);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(34, 214, 138, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23747A92' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-group input[type="date"],
.form-group input[type="number"] {
  color-scheme: dark;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 56px;
}

.info-block {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.3s var(--ease);
}

.info-block:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card), var(--glow-sm);
}

.info-block h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.info-block p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ================================
   FOOTER
   ================================ */

.footer {
  padding: 48px 0;
  border-top: 1px solid transparent;
  background-image: linear-gradient(var(--bg-primary), var(--bg-primary)), linear-gradient(90deg, transparent, var(--border-accent), transparent);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

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

.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

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

.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

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

.footer-legal p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 900px) {
  .hero-split {
    min-height: auto;
  }

  .hero-image {
    left: -10%;
    right: -10%;
    top: 34%;
    bottom: 10%;
    opacity: 0.6;
    max-width: none;
    margin: 0;
  }

  .hero-image img {
    object-position: 55% 18%;
  }

  .hero-image::before {
    display: none;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }
  
  .usecase-grid {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .tier-grid {
    grid-template-columns: 1fr;
  }
  
  .do-dont-grid {
    grid-template-columns: 1fr;
  }
  
  .integration-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .quality-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info {
    padding-top: 0;
  }
  
  .step-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .flow-visual {
    flex-direction: column;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-top: 1px solid var(--border);
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .nav-link {
    font-size: 18px;
  }
  
  .nav-cta {
    display: none;
  }
  
  .nav-mobile-toggle {
    display: flex;
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .page-hero {
    padding: 120px 0 60px;
  }
  
  .hero-proof {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  .proof-divider {
    display: none;
  }
  
  .integration-grid {
    grid-template-columns: 1fr;
  }
  
  .quality-grid {
    grid-template-columns: 1fr;
  }
  
  .type-row {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .step-block {
    grid-template-columns: 1fr;
  }
  
  .step-number {
    font-size: 28px;
  }
  
  .step-connector {
    margin-left: 0;
  }
  
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .terminal-line {
    font-size: 10px;
  }
  
}

/* ================================
   JOIN PAGE - HIRE STEPS
   ================================ */

.hire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.hire-step {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-card);
}

.hire-step:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card), var(--glow-sm);
  transform: translateY(-2px);
}

.hire-num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 2px;
}

.hire-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.hire-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ================================
   JOIN PAGE - VALUES
   ================================ */

.section-values {
  border-top: 1px solid var(--border);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-card);
}

.value-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card), var(--glow-sm);
  transform: translateY(-2px);
}

.value-header {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.value-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ================================
   JOIN PAGE - NO FEAR BOX
   ================================ */

.section-nofear {
  padding: 60px 0;
}

.nofear-box {
  padding: 48px 40px;
  background: rgba(240, 78, 78, 0.04);
  border: 1px solid rgba(240, 78, 78, 0.2);
  max-width: 800px;
  box-shadow: 0 0 60px rgba(240, 78, 78, 0.06), var(--shadow-card);
}

.nofear-box h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fail);
}

.nofear-box p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ================================
   JOIN PAGE - EXPECTATIONS
   ================================ */

.section-expect {
  border-top: 1px solid var(--border);
}

.expect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.expect-item {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-card);
}

.expect-item:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card), var(--glow-sm);
  transform: translateY(-2px);
}

.expect-icon-wrap {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: 16px;
}

.expect-icon {
  width: 100%;
  height: 100%;
}

.expect-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.expect-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ================================
   JOIN PAGE - APPLY
   ================================ */

.section-apply {
  border-top: 1px solid var(--border);
}

.apply-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  margin-top: 40px;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
}

.apply-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-block {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s var(--ease);
}

.sidebar-block:hover {
  border-color: var(--border-accent);
}

.sidebar-block h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sidebar-block p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.sidebar-list {
  list-style: none;
}

.sidebar-list li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}

.sidebar-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border: 1.5px solid var(--accent);
}

/* ================================
   JOIN PAGE - MINIMUMS
   ================================ */

.section-minimums {
  padding-top: 0;
}

.minimums-box {
  padding: 48px 40px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.minimums-box h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent);
}

.minimums-box > p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 700px;
}

.minimums-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.min-item {
  padding: 24px;
  border: 1px solid var(--border);
}

.min-yes {
  background: rgba(34, 214, 138, 0.03);
  border-color: var(--border-accent);
}

.min-no {
  background: rgba(240, 78, 78, 0.03);
  border-color: rgba(240, 78, 78, 0.15);
}

.min-icon {
  font-size: 20px;
  margin-bottom: 12px;
}

.min-yes .min-icon { color: var(--pass); }
.min-no .min-icon { color: var(--fail); }

.min-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

.min-item ul {
  list-style: none;
}

.min-item li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 5px 0;
  line-height: 1.6;
}

.minimums-note {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.7;
  font-weight: 500;
}

/* ================================
   JOIN PAGE - GROWTH LADDER
   ================================ */

.section-ladder {
  border-top: 1px solid var(--border);
}

.ladder-visual {
  max-width: 700px;
  margin-top: 40px;
}

.ladder-step-v {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-card);
}

.ladder-step-v:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card), var(--glow-sm);
}

.ladder-step-elite {
  border-color: var(--accent);
  background: rgba(34, 214, 138, 0.04);
  box-shadow: var(--shadow-card), var(--glow-md);
}

.ladder-level-v {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  width: 40px;
  text-align: center;
  padding-top: 2px;
}

.ladder-info-v h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.ladder-timeline {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 8px;
}

.ladder-info-v p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.ladder-connector-v {
  width: 2px;
  height: 24px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--border) 100%);
  margin-left: 47px;
}

.ladder-note {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
  margin-top: 28px;
  line-height: 1.7;
}

/* Sidebar highlight block */
.sidebar-block-highlight {
  border-color: var(--accent);
  background: rgba(34, 214, 138, 0.04);
  box-shadow: var(--shadow-card), var(--glow-sm);
}

@media (max-width: 640px) {
  .minimums-grid {
    grid-template-columns: 1fr;
  }
  
  .minimums-box {
    padding: 32px 20px;
  }
  
  .ladder-step-v {
    flex-direction: column;
    gap: 12px;
  }
  
  .ladder-connector-v {
    margin-left: 20px;
  }

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

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

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

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