/**
 * Anonymize.dev - Neon Protocol Theme
 * Cyberpunk Developer-First Design System
 */

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */

:root {
  /* Colors - Neon Protocol Palette */
  --void-black: #0a0a0f;
  --terminal-dark: #12121a;
  --matrix-gray: #1e1e2e;
  --syntax-slate: #9ca3af;
  --electric-cyan: #00ffff;
  --neon-magenta: #ff00ff;
  --terminal-green: #00ff41;
  --pulse-blue: #0080ff;
  --hot-coral: #ff3366;
  --pure-white: #ffffff;
  --ghost-white: #e5e5e5;

  /* Semantic Colors */
  --bg-primary: var(--void-black);
  --bg-secondary: var(--terminal-dark);
  --bg-tertiary: var(--matrix-gray);
  --text-primary: var(--pure-white);
  --text-secondary: var(--ghost-white);
  --text-muted: var(--syntax-slate);
  --accent-primary: var(--electric-cyan);
  --accent-secondary: var(--neon-magenta);
  --accent-success: var(--terminal-green);
  --accent-warning: var(--neon-magenta);
  --accent-error: var(--hot-coral);

  /* Glow Effects */
  --glow-cyan: 0 0 20px rgba(0, 255, 255, 0.4), 0 0 40px rgba(0, 255, 255, 0.2);
  --glow-magenta: 0 0 20px rgba(255, 0, 255, 0.4), 0 0 40px rgba(255, 0, 255, 0.2);
  --glow-green: 0 0 20px rgba(0, 255, 65, 0.4), 0 0 40px rgba(0, 255, 65, 0.2);
  --glow-text: 0 0 10px currentColor;

  /* Typography */
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Source Code Pro', monospace;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --nav-height: 70px;
  --container-max: 1200px;
  --container-narrow: 800px;

  /* Borders & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --border-width: 1px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --easing: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Selection */
::selection {
  background: var(--accent-primary);
  color: var(--bg-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--matrix-gray);
  border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--syntax-slate);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

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

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
}

a:hover {
  color: var(--pure-white);
  text-shadow: var(--glow-text);
}

code, pre, .mono {
  font-family: var(--font-mono);
}

code {
  background: var(--bg-tertiary);
  padding: 0.2em 0.4em;
  border-radius: var(--radius-sm);
  font-size: 0.9em;
  color: var(--accent-primary);
}

pre {
  background: var(--bg-secondary);
  border: 1px solid var(--matrix-gray);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  overflow-x: auto;
  font-size: var(--text-sm);
  line-height: 1.7;
}

pre code {
  background: none;
  padding: 0;
  font-size: inherit;
}

.text-gradient {
  background: linear-gradient(90deg, var(--electric-cyan), var(--neon-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-glow {
  text-shadow: var(--glow-text);
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--dark {
  background: var(--bg-secondary);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section__title {
  margin-bottom: var(--space-md);
}

.section__subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Grid Systems */
.grid {
  display: grid;
  gap: var(--space-xl);
}

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

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ========================================
   SKIP LINK (Accessibility)
   ======================================== */

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-primary);
  color: var(--bg-primary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  z-index: 10000;
  font-weight: 600;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-md);
  outline: 2px solid var(--pure-white);
  outline-offset: 2px;
}

/* Screen Reader Only */
.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;
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--matrix-gray);
  z-index: 1000;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.nav--scrolled {
  background: rgba(10, 10, 15, 0.98);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
}

.nav__logo:hover {
  color: var(--accent-primary);
  text-shadow: var(--glow-cyan);
}

.nav__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--bg-secondary);
  border: 1px solid var(--accent-primary);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--accent-primary);
  box-shadow: var(--glow-cyan);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--space-sm) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width var(--transition-base);
  box-shadow: var(--glow-cyan);
}

.nav__link:hover,
.nav__link--active {
  color: var(--accent-primary);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Mobile Navigation */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  padding: var(--space-xl);
  flex-direction: column;
  gap: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.nav__mobile.is-open {
  opacity: 1;
  visibility: visible;
}

.nav__mobile .nav__link {
  font-size: var(--text-xl);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--matrix-gray);
}

@media (max-width: 900px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__mobile {
    display: flex;
  }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 44px;
  min-width: 44px;
}

.btn--primary {
  background: var(--accent-primary);
  color: var(--bg-primary);
  border-color: var(--accent-primary);
}

.btn--primary:hover {
  background: transparent;
  color: var(--accent-primary);
  box-shadow: var(--glow-cyan);
}

.btn--secondary {
  background: transparent;
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}

.btn--secondary:hover {
  background: var(--accent-primary);
  color: var(--bg-primary);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--matrix-gray);
}

.btn--ghost:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.btn--green {
  background: var(--terminal-green);
  color: var(--bg-primary);
  border-color: var(--terminal-green);
}

.btn--green:hover {
  background: transparent;
  color: var(--terminal-green);
  box-shadow: var(--glow-green);
}

.btn--large {
  padding: var(--space-md) var(--space-2xl);
  font-size: var(--text-base);
}

.btn svg {
  width: 16px;
  height: 16px;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--matrix-gray) 1px, transparent 1px),
    linear-gradient(90deg, var(--matrix-gray) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
}

.hero__content {
  max-width: 700px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  background: var(--bg-secondary);
  border: 1px solid var(--terminal-green);
  border-radius: var(--radius-xl);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--terminal-green);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--terminal-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero__title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.hero__subtitle {
  font-size: var(--text-xl);
  color: var(--text-muted);
  margin-bottom: var(--space-2xl);
  max-width: 500px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}

.hero__terminal {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  max-width: 45%;
}

@media (max-width: 1024px) {
  .hero__terminal {
    display: none;
  }
}

/* ========================================
   TERMINAL COMPONENT
   ======================================== */

.terminal {
  background: var(--bg-secondary);
  border: 1px solid var(--matrix-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.terminal__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--matrix-gray);
}

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

.terminal__dot--red { background: var(--hot-coral); }
.terminal__dot--yellow { background: var(--neon-magenta); }
.terminal__dot--green { background: var(--terminal-green); }

.terminal__title {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

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

.terminal__line {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
}

.terminal__prompt {
  color: var(--terminal-green);
}

.terminal__command {
  color: var(--text-secondary);
}

.terminal__output {
  color: var(--text-muted);
  padding-left: var(--space-lg);
}

.terminal__comment {
  color: var(--syntax-slate);
}

.terminal__string {
  color: var(--terminal-green);
}

.terminal__keyword {
  color: var(--neon-magenta);
}

.terminal__cursor {
  display: inline-block;
  width: 8px;
  height: 18px;
  background: var(--accent-primary);
  animation: blink 1s infinite;
  vertical-align: text-bottom;
}

/* ========================================
   TRUST BAR
   ======================================== */

.trust {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--matrix-gray);
  border-bottom: 1px solid var(--matrix-gray);
  background: var(--bg-secondary);
}

.trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-2xl);
}

.trust__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.trust__icon {
  width: 24px;
  height: 24px;
  color: var(--accent-primary);
}

.trust__badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-md);
  background: var(--bg-tertiary);
  border: 1px solid var(--matrix-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--accent-primary);
}

/* ========================================
   CARDS
   ======================================== */

.card {
  background: var(--bg-secondary);
  border: 1px solid var(--matrix-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.card:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--glow-cyan);
  transform: translateY(-4px);
}

.card--featured {
  border-color: var(--terminal-green);
  position: relative;
}

.card--featured::before {
  content: 'FEATURED';
  position: absolute;
  top: -1px;
  right: var(--space-lg);
  background: var(--terminal-green);
  color: var(--bg-primary);
  padding: var(--space-xs) var(--space-md);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.card--featured:hover {
  border-color: var(--terminal-green);
  box-shadow: var(--glow-green);
}

.card__icon {
  width: 60px;
  height: 60px;
  margin-bottom: var(--space-lg);
}

.card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.card__description {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--accent-primary);
}

.card__link:hover {
  gap: var(--space-sm);
}

/* ========================================
   FEATURE LIST
   ======================================== */

.features-list {
  display: grid;
  gap: var(--space-lg);
}

.feature-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--bg-secondary);
  border: 1px solid var(--matrix-gray);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.feature-item:hover {
  border-color: var(--accent-primary);
}

.feature-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  color: var(--accent-primary);
}

.feature-item__content {
  flex: 1;
}

.feature-item__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.feature-item__description {
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin: 0;
}

/* ========================================
   CODE BLOCK
   ======================================== */

.code-block {
  position: relative;
  margin: var(--space-xl) 0;
}

.code-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-lg);
  background: var(--bg-tertiary);
  border: 1px solid var(--matrix-gray);
  border-bottom: none;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.code-block__language {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
}

.code-block__copy {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: var(--bg-secondary);
  border: 1px solid var(--matrix-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.code-block__copy:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.code-block__copy.copied {
  border-color: var(--terminal-green);
  color: var(--terminal-green);
}

.code-block pre {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  margin: 0;
}

/* Syntax Highlighting */
.hljs-comment { color: var(--syntax-slate); }
.hljs-string { color: var(--terminal-green); }
.hljs-keyword { color: var(--neon-magenta); }
.hljs-number { color: var(--pulse-blue); }
.hljs-attr { color: var(--accent-primary); }
.hljs-built_in { color: var(--neon-magenta); }

/* ========================================
   PRICING
   ======================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background: var(--bg-secondary);
  border: 1px solid var(--matrix-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-fast);
}

.pricing-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--terminal-green);
  position: relative;
}

.pricing-card--featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--terminal-green);
  color: var(--bg-primary);
  padding: var(--space-xs) var(--space-md);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  border-radius: var(--radius-xl);
}

.pricing-card__name {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.pricing-card__price {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.pricing-card__price span {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card__tokens {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--accent-primary);
  margin-bottom: var(--space-xl);
}

.pricing-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-xl);
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  border-bottom: 1px solid var(--matrix-gray);
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.pricing-card__features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300ff41'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

.pricing-card__features li.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-card__features li.disabled::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236b7280'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.pricing-card .btn {
  width: 100%;
}

/* ========================================
   HOW IT WORKS / FLOW
   ======================================== */

.flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
}

.flow__step {
  flex: 1;
  text-align: center;
  padding: var(--space-lg);
}

.flow__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--bg-secondary);
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: var(--space-md);
}

.flow__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.flow__description {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
}

.flow__arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--accent-primary);
}

@media (max-width: 768px) {
  .flow {
    flex-direction: column;
  }

  .flow__arrow {
    transform: rotate(90deg);
  }
}

/* ========================================
   FORMS
   ======================================== */

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-md);
  background: var(--bg-secondary);
  border: 1px solid var(--matrix-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--syntax-slate);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236b7280'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-md) center;
  background-size: 20px;
  padding-right: var(--space-3xl);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info__title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
}

.contact-info__text {
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.contact-info__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info__link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--text-secondary);
}

.contact-info__link svg {
  color: var(--accent-primary);
}

.contact-form {
  background: var(--bg-secondary);
  border: 1px solid var(--matrix-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contact-form__header {
  padding: var(--space-lg);
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--matrix-gray);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.contact-form__body {
  padding: var(--space-xl);
}

.form-success {
  text-align: center;
  padding: var(--space-3xl);
}

.form-success svg {
  margin-bottom: var(--space-lg);
}

.form-success h3 {
  color: var(--terminal-green);
  margin-bottom: var(--space-sm);
}

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

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--matrix-gray);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-3xl);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  margin-bottom: var(--space-3xl);
}

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

.footer__logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  display: block;
}

.footer__tagline {
  color: var(--text-muted);
  font-size: var(--text-sm);
  max-width: 250px;
}

.footer__title {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.footer__link {
  display: block;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--accent-primary);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-lg);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg) 0;
  border-top: 1px solid var(--matrix-gray);
}

.footer__copyright {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: var(--space-xl);
}

.footer__legal a {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.footer__legal a:hover {
  color: var(--accent-primary);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-0 { margin-bottom: 0; }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

.hidden { display: none; }
.block { display: block; }

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

@media (max-width: 768px) {
  :root {
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.5rem;
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  }

  .hero__title {
    font-size: var(--text-3xl);
  }

  .hero__subtitle {
    font-size: var(--text-base);
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1rem;
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 3rem;
    --space-4xl: 4rem;
  }
}

/* ========================================
   REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
