@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;700&family=Inter:wght@300;400;500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

:root {
  --clr-void: #0e0e10;
  --clr-concrete: #1a1a1e;
  --clr-slate: #26262d;
  --clr-muted: #3a3a44;
  --clr-border: #2e2e38;
  --clr-acid: #c8f000;
  --clr-acid-dim: #a0c200;
  --clr-acid-glow: rgba(200,240,0,0.12);
  --clr-white: #f5f5f0;
  --clr-off: #c0c0b8;
  --clr-ghost: #7a7a72;
  --clr-surface: #16161a;
  --clr-card: #1e1e24;
  --clr-card-hover: #222228;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.5);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.6);
  --shadow-acid: 0 0 24px rgba(200,240,0,0.15);
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --font-sans: 'Inter', system-ui, sans-serif;
  --space-1: clamp(4px, 0.5vw, 6px);
  --space-2: clamp(8px, 1vw, 12px);
  --space-3: clamp(12px, 1.5vw, 18px);
  --space-4: clamp(16px, 2vw, 24px);
  --space-5: clamp(24px, 3vw, 36px);
  --space-6: clamp(32px, 4vw, 48px);
  --space-7: clamp(48px, 6vw, 72px);
  --space-8: clamp(64px, 8vw, 96px);
  --space-9: clamp(80px, 10vw, 128px);
  --text-xs: clamp(10px, 1.1vw, 12px);
  --text-sm: clamp(12px, 1.3vw, 14px);
  --text-base: clamp(14px, 1.5vw, 16px);
  --text-md: clamp(16px, 1.8vw, 18px);
  --text-lg: clamp(18px, 2vw, 22px);
  --text-xl: clamp(22px, 2.5vw, 28px);
  --text-2xl: clamp(28px, 3.5vw, 40px);
  --text-3xl: clamp(36px, 5vw, 60px);
  --text-4xl: clamp(44px, 6.5vw, 80px);
}

body {
  background-color: var(--clr-void);
  color: var(--clr-white);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ─── CONTAINER ─────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 60px);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-mono);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-white);
  letter-spacing: -0.01em;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-md); }

p {
  color: var(--clr-off);
  font-size: var(--text-base);
  line-height: 1.75;
  max-width: 68ch;
}

p.wide { max-width: 100%; }

a {
  color: var(--clr-acid);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--clr-white);
}

strong { color: var(--clr-white); font-weight: 600; }
em { font-style: italic; color: var(--clr-off); }

code, pre {
  font-family: var(--font-mono);
  background: var(--clr-slate);
  color: var(--clr-acid);
  border-radius: var(--radius-sm);
}

code {
  font-size: var(--text-sm);
  padding: 2px 6px;
}

pre {
  padding: var(--space-4);
  overflow-x: auto;
  font-size: var(--text-sm);
  line-height: 1.6;
  border-left: 2px solid var(--clr-acid);
}

hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin-block: var(--space-6);
}

ul, ol {
  padding-left: var(--space-5);
  color: var(--clr-off);
}

li { margin-bottom: var(--space-2); }

/* ─── HEADER / NAV ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14,14,16,0.92);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid var(--clr-border);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 64px;
  gap: var(--space-4);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
}

.nav-right {
  justify-content: flex-end;
}

.site-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 2px;
  flex-shrink: 0;
}

.site-logo__mark {
  display: block;
  width: 32px;
  height: 32px;
}

.site-logo__name {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--clr-ghost);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--clr-white);
  border-bottom-color: var(--clr-acid);
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  background: var(--clr-acid);
  color: var(--clr-void);
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--clr-white);
  color: var(--clr-void);
  box-shadow: var(--shadow-acid);
}

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

.nav-burger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ─── MOBILE NAV ─────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--clr-concrete);
  border-top: 1px solid var(--clr-border);
  padding: var(--space-4) 0;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav__link {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--clr-off);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-3) clamp(16px, 5vw, 60px);
  border-bottom: 1px solid var(--clr-border);
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav__link:hover {
  color: var(--clr-white);
  background: var(--clr-slate);
}

.mobile-nav__cta {
  margin: var(--space-4) clamp(16px, 5vw, 60px);
  text-align: center;
  background: var(--clr-acid);
  color: var(--clr-void);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--clr-acid);
  color: var(--clr-void);
  border-color: var(--clr-acid);
}

.btn--primary:hover {
  background: var(--clr-white);
  color: var(--clr-void);
  border-color: var(--clr-white);
  box-shadow: var(--shadow-acid);
}

.btn--outline {
  background: transparent;
  color: var(--clr-white);
  border-color: var(--clr-border);
}

.btn--outline:hover {
  border-color: var(--clr-acid);
  color: var(--clr-acid);
  background: var(--clr-acid-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-ghost);
  border-color: transparent;
  padding-inline: 0;
}

.btn--ghost:hover {
  color: var(--clr-white);
}

.btn--sm {
  font-size: var(--text-xs);
  padding: 10px 20px;
}

.btn--lg {
  font-size: var(--text-md);
  padding: 18px 36px;
}

/* ─── SECTIONS ───────────────────────────────────────────────── */
.section {
  padding-block: var(--space-9);
}

.section--sm {
  padding-block: var(--space-7);
}

.section--dark {
  background: var(--clr-surface);
}

.section--concrete {
  background: var(--clr-concrete);
}

.section--bordered {
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-acid);
  margin-bottom: var(--space-3);
}

.section-eyebrow::before {
  content: '// ';
  opacity: 0.6;
}

.section-title {
  margin-bottom: var(--space-4);
}

.section-lead {
  font-size: var(--text-md);
  color: var(--clr-off);
  max-width: 60ch;
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.section-body {
  color: var(--clr-off);
  max-width: 72ch;
}

.section-body p + p {
  margin-top: var(--space-4);
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero-section {
  padding-block: clamp(60px, 10vw, 120px);
  background: var(--clr-void);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(200,240,0,0.06) 0%, transparent 70%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(255,255,255,0.018) 39px,
      rgba(255,255,255,0.018) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(255,255,255,0.018) 79px,
      rgba(255,255,255,0.018) 80px
    );
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-acid);
  margin-bottom: var(--space-4);
}

.hero-eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-acid);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-size: var(--text-4xl);
  font-family: var(--font-mono);
  font-weight: 700;
  line-height: 1.08;
  color: var(--clr-white);
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}

.hero-title__accent {
  color: var(--clr-acid);
}

.hero-subtitle {
  font-size: var(--text-md);
  color: var(--clr-off);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: var(--space-6);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.hero-image-slot {
  position: relative;
}

.hero-image-slot img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-lg);
  display: block;
}

.hero-image-slot__frame {
  position: relative;
}

.hero-image-slot__frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--clr-acid) 0%, transparent 60%);
  opacity: 0.3;
  z-index: -1;
}

.hero-terminal {
  background: var(--clr-concrete);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-terminal__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--clr-slate);
  border-bottom: 1px solid var(--clr-border);
}

.hero-terminal__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-terminal__dot:nth-child(1) { background: #ff5f57; }
.hero-terminal__dot:nth-child(2) { background: #febc2e; }
.hero-terminal__dot:nth-child(3) { background: #28c840; }

.hero-terminal__title {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--clr-ghost);
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.06em;
}

.hero-terminal__body {
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  line-height: 1.8;
}

.hero-terminal__line { display: flex; gap: var(--space-2); }
.hero-terminal__prompt { color: var(--clr-acid); user-select: none; }
.hero-terminal__cmd { color: var(--clr-white); }
.hero-terminal__out { color: var(--clr-ghost); padding-left: 16px; }
.hero-terminal__cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--clr-acid);
  vertical-align: middle;
  animation: blink 1.1s step-end infinite;
}

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

/* ─── CARDS ──────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

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

.card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--clr-acid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover {
  border-color: var(--clr-muted);
  background: var(--clr-card-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card:hover::before {
  transform: scaleX(1);
}

.card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-4);
  color: var(--clr-acid);
}

.card__tag {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-acid);
  margin-bottom: var(--space-3);
}

.card__title {
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-3);
  line-height: 1.25;
}

.card__body {
  font-size: var(--text-sm);
  color: var(--clr-off);
  line-height: 1.7;
  max-width: 100%;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-acid);
  margin-top: var(--space-4);
  transition: gap 0.2s ease;
}

.card__link:hover {
  gap: 10px;
  color: var(--clr-white);
}

/* ─── STATS ──────────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.stat-item {
  text-align: center;
  padding: var(--space-5);
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background: var(--clr-acid);
  border-radius: 0 0 2px 2px;
}

.stat-number {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--clr-acid);
  line-height: 1.1;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-ghost);
}

/* ─── CTA BAND ───────────────────────────────────────────────── */
.cta-band {
  padding-block: var(--space-9);
  background: var(--clr-acid);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 18px,
      rgba(0,0,0,0.04) 18px,
      rgba(0,0,0,0.04) 19px
    );
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.cta-band__text h2 {
  color: var(--clr-void);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

.cta-band__text p {
  color: rgba(14,14,16,0.7);
  max-width: 52ch;
  font-size: var(--text-md);
}

.cta-band__actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn--dark {
  background: var(--clr-void);
  color: var(--clr-white);
  border-color: var(--clr-void);
}

.btn--dark:hover {
  background: var(--clr-concrete);
  border-color: var(--clr-concrete);
  color: var(--clr-acid);
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-5) var(--space-5);
  cursor: pointer;
  text-align: left;
  gap: var(--space-4);
}

.faq-item__q-text {
  font-family: var(--font-mono);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--clr-white);
  line-height: 1.4;
}

.faq-item__icon {
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  color: var(--clr-acid);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  line-height: 1;
}

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

.faq-item__answer {
  display: none;
  padding: 0 var(--space-5) var(--space-5);
  font-size: var(--text-sm);
  color: var(--clr-off);
  line-height: 1.75;
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-4);
  max-width: 100%;
}

.faq-item.is-open .faq-item__answer {
  display: block;
}

/* ─── PRICING CARD ───────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  align-items: start;
}

.pricing-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}

.pricing-card--featured {
  background: var(--clr-slate);
  border-color: var(--clr-acid);
  position: relative;
  box-shadow: var(--shadow-acid);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-acid);
  color: var(--clr-void);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.pricing-card__name {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-ghost);
  margin-bottom: var(--space-3);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: var(--space-5);
}

.pricing-card__amount {
  font-family: var(--font-mono);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--clr-white);
}

.pricing-card__period {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--clr-ghost);
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.pricing-card__features li {
  font-size: var(--text-sm);
  color: var(--clr-off);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  margin-bottom: 0;
}

.pricing-card__features li::before {
  content: '→';
  color: var(--clr-acid);
  font-family: var(--font-mono);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── FORM ───────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.form-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-ghost);
}

.form-input,
.form-textarea,
.form-select {
  background: var(--clr-slate);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--clr-white);
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--clr-ghost);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--clr-acid);
  box-shadow: 0 0 0 3px var(--clr-acid-glow);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ─── BADGE / TAG ─────────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: var(--clr-acid-glow);
  color: var(--clr-acid);
  border: 1px solid rgba(200,240,0,0.2);
}

/* ─── DIVIDER / SEPARATOR ─────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-block: var(--space-6);
}

.divider__line {
  flex: 1;
  height: 1px;
  background: var(--clr-border);
}

.divider__text {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--clr-ghost);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--clr-concrete);
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-7);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid var(--clr-border);
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  margin-bottom: var(--space-4);
}

.footer-logo__mark {
  width: 36px;
  height: 36px;
}

.footer-logo__name {
  font-family: var(--font-mono);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 0.08em;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--clr-ghost);
  margin-bottom: var(--space-5);
  max-width: 36ch;
  line-height: 1.6;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: #4ade80;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.footer-status__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}

.footer-col__heading {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-ghost);
  margin-bottom: var(--space-4);
}

.footer-col__links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col__links li { margin-bottom: 0; }

.footer-col__links a {
  font-size: var(--text-sm);
  color: var(--clr-off);
  text-decoration: none;
  font-family: var(--font-sans);
  transition: color 0.2s ease;
}

.footer-col__links a:hover {
  color: var(--clr-white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-5);
  flex-wrap: wrap;
}

.footer-bottom__copy {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--clr-ghost);
}

.footer-bottom__legal {
  display: flex;
  gap: var(--space-5);
}

.footer-bottom__legal a {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--clr-ghost);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom__legal a:hover {
  color: var(--clr-white);
}

/* ─── IMAGES ─────────────────────────────────────────────────── */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

figcaption {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--clr-ghost);
  margin-top: var(--space-2);
  text-align: center;
}

/* ─── UTILITIES ──────────────────────────────────────────────── */
.text-acid { color: var(--clr-acid) !important; }
.text-ghost { color: var(--clr-ghost) !important; }
.text-white { color: var(--clr-white) !important; }
.text-off { color: var(--clr-off) !important; }
.text-mono { font-family: var(--font-mono) !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }

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

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }
  .hero-image-slot {
    order: -1;
  }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-band__text p { margin-inline: auto; }
  .cta-band__actions { justify-content: center; }
}

@media (max-width: 768px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }
  .nav-left,
  .nav-right {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .card-grid,
  .card-grid--2,
  .card-grid--4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
}
img,svg,video{max-width:100%;height:auto}
body{margin:0}
*{box-sizing:border-box}
