/* ==============================================================================
   DISTINCTION LABS — Enterprise Design System v2.0
   A research lab that ships axioms, not assumptions.
   ============================================================================== */

/* --- Font Import (Outfit + JetBrains Mono) --- */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap");

/* ==============================================================================
   DESIGN TOKENS
   ============================================================================== */
:root {
  /* Core Palette — Dark (default) */
  --bg: #06060b;
  --bg-alt: #0c0c14;
  --bg-card: rgba(18, 18, 28, 0.6);
  --bg-card-solid: #12121c;
  --text: #f0f0f5;
  --text-secondary: #a0a0b8;
  --text-tertiary: #5a5a70;

  /* Accent — Amber/Gold signature */
  --accent: #e8b824;
  --accent-glow: rgba(232, 184, 36, 0.15);
  --accent-hover: #d4a017;
  --accent-gradient: linear-gradient(
    135deg,
    #e8b824 0%,
    #f5d060 50%,
    #d4a017 100%
  );

  /* Semantic Colors */
  --green: #10b981;
  --green-glow: rgba(16, 185, 129, 0.12);
  --blue: #818cf8;
  --blue-glow: rgba(129, 140, 248, 0.12);
  --red: #f87171;
  --red-glow: rgba(248, 113, 113, 0.12);
  --purple: #c084fc;
  --purple-glow: rgba(192, 132, 252, 0.12);
  --amber: #fbbf24;
  --cyan: #22d3ee;

  /* Surfaces & Borders */
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(232, 184, 36, 0.08);

  /* Layout */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --max-width: 1200px;
  --nav-height: 72px;

  /* Typography */
  --font-primary: "Outfit", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: 0.2s var(--ease-out-quart);
  --transition-medium: 0.4s var(--ease-out-expo);
  --transition-slow: 0.8s var(--ease-out-expo);
}

/* --- Light Theme Override --- */
html.light {
  --bg: #f8f8fc;
  --bg-alt: #f0f0f6;
  --bg-card: rgba(255, 255, 255, 0.7);
  --bg-card-solid: #ffffff;
  --text: #11111a;
  --text-secondary: #44445a;
  --text-tertiary: #88889a;
  --border: rgba(0, 0, 0, 0.06);
  --border-hover: rgba(0, 0, 0, 0.12);
  --glass: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 40px rgba(232, 184, 36, 0.12);
  --accent-glow: rgba(232, 184, 36, 0.1);
}

/* ==============================================================================
   RESET & BASE
   ============================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition:
    background-color var(--transition-medium),
    color var(--transition-medium);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
code,
pre {
  font-family: var(--font-mono);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

/* ==============================================================================
   LAYOUT
   ============================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
section {
  padding: 7rem 0;
  position: relative;
}

.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  section {
    padding: 4.5rem 0;
  }
}

/* ==============================================================================
   NAVIGATION — Glassmorphism
   ============================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(6, 6, 11, 0.7);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--glass-border);
  transition: all var(--transition-medium);
}
html.light .navbar {
  background: rgba(248, 248, 252, 0.75);
}
.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  letter-spacing: -0.02em;
}
.logo span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.nav-link {
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: var(--glass);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100dvh - var(--nav-height));
    background: var(--bg);
    flex-direction: column;
    padding: 2rem;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform var(--transition-medium);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .mobile-toggle {
    display: block;
  }
}

/* ==============================================================================
   THEME TOGGLE
   ============================================================================== */
.theme-toggle {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-fast);
}
.theme-toggle:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(15deg);
}

/* ==============================================================================
   BUTTONS — Premium with Gradient
   ============================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  font-family: var(--font-primary);
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--accent-gradient);
  color: #000;
  border: none;
  box-shadow: 0 2px 12px rgba(232, 184, 36, 0.2);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 184, 36, 0.35);
}
.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--border-hover);
  color: var(--text);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
}
.btn--ghost:hover {
  color: var(--accent);
}

/* ==============================================================================
   CARDS — Glass Morphism
   ============================================================================== */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  opacity: 0;
  transition: opacity var(--transition-medium);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}
.card:hover::before {
  opacity: 1;
}

.card__header {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.card__title {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 600;
}
.card__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}
.card__footer {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Card icon circle */
.card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid rgba(232, 184, 36, 0.15);
}

/* ==============================================================================
   BADGES — Pill Style
   ============================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.badge--live,
.badge--production {
  background: var(--green-glow);
  color: var(--green);
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.badge--dev {
  background: rgba(251, 191, 36, 0.1);
  color: var(--amber);
  border: 1px solid rgba(251, 191, 36, 0.2);
}
.badge--alpha {
  background: var(--blue-glow);
  color: var(--blue);
  border: 1px solid rgba(129, 140, 248, 0.2);
}
.badge--published {
  background: var(--purple-glow);
  color: var(--purple);
  border: 1px solid rgba(192, 132, 252, 0.2);
}
.badge--planned {
  background: var(--glass);
  color: var(--text-tertiary);
  border: 1px solid var(--border);
}

/* Badge dot animation */
.badge--live::before,
.badge--production::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* ==============================================================================
   HERO — Cinematic with Gradient Mesh
   ============================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(
      ellipse 600px 400px at 30% 20%,
      rgba(232, 184, 36, 0.06) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 500px 500px at 70% 80%,
      rgba(129, 140, 248, 0.04) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 400px 300px at 50% 50%,
      rgba(192, 132, 252, 0.03) 0%,
      transparent 70%
    );
  animation: meshShift 20s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes meshShift {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(-2%, -2%) rotate(2deg);
  }
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}

.hero__content {
  max-width: 840px;
  z-index: 1;
  position: relative;
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  background: linear-gradient(
    135deg,
    var(--text) 40%,
    var(--text-secondary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero__stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ==============================================================================
   SECTION HEADERS
   ============================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  margin-bottom: 0.75rem;
}
.section-header p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-secondary);
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(232, 184, 36, 0.2);
  border-radius: 999px;
  background: var(--accent-glow);
}

/* ==============================================================================
   PROBLEM CARDS — Split Layout
   ============================================================================== */
.problem-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}
.problem-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-gradient);
  border-radius: 0 3px 3px 0;
}
.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.problem-card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.problem-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.problem-card__problem {
  font-size: 0.85rem;
  color: var(--red);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.problem-card__solution {
  font-size: 0.85rem;
  color: var(--green);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.problem-card__product {
  margin-top: auto;
}

/* ==============================================================================
   AXIOM LIST — Numbered
   ============================================================================== */
.axiom-list {
  counter-reset: axiom;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.axiom-item {
  counter-increment: axiom;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.axiom-item:hover {
  background: var(--glass);
}
.axiom-item::before {
  content: counter(axiom);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  border: 1px solid rgba(232, 184, 36, 0.15);
}
.axiom-item strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.15rem;
}
.axiom-item span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ==============================================================================
   FEATURE CARDS — Compact
   ============================================================================== */
.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition-medium);
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}
.feature-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.feature-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.55;
}

/* ==============================================================================
   ECOSYSTEM STATS — Glowing
   ============================================================================== */
.ecosystem-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.eco-stat {
  text-align: center;
  padding: 1.5rem;
  min-width: 140px;
}
.eco-stat__value {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.eco-stat__label {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-top: 0.25rem;
}

/* ==============================================================================
   FOOTER — Minimal
   ============================================================================== */
.footer {
  background: var(--bg-alt);
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}
.footer__links {
  display: flex;
  gap: 2rem;
}
.footer__links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}
.footer__links a:hover {
  color: var(--accent);
}
.footer__copy {
  color: var(--text-tertiary);
  font-size: 0.8rem;
}

/* ==============================================================================
   SCROLL REVEAL — Staggered
   ============================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease-out-expo),
    transform 0.7s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s var(--ease-out-expo),
    transform 0.5s var(--ease-out-expo);
}
.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.stagger.visible > *:nth-child(1) {
  transition-delay: 0.05s;
}
.stagger.visible > *:nth-child(2) {
  transition-delay: 0.1s;
}
.stagger.visible > *:nth-child(3) {
  transition-delay: 0.15s;
}
.stagger.visible > *:nth-child(4) {
  transition-delay: 0.2s;
}
.stagger.visible > *:nth-child(5) {
  transition-delay: 0.25s;
}
.stagger.visible > *:nth-child(6) {
  transition-delay: 0.3s;
}
.stagger.visible > *:nth-child(7) {
  transition-delay: 0.35s;
}
.stagger.visible > *:nth-child(8) {
  transition-delay: 0.4s;
}
.stagger.visible > *:nth-child(9) {
  transition-delay: 0.45s;
}
.stagger.visible > *:nth-child(10) {
  transition-delay: 0.5s;
}
.stagger.visible > *:nth-child(11) {
  transition-delay: 0.55s;
}
.stagger.visible > *:nth-child(12) {
  transition-delay: 0.6s;
}

/* ==============================================================================
   DIVIDER — Gradient
   ============================================================================== */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ==============================================================================
   UTILITIES
   ============================================================================== */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-accent {
  color: var(--accent);
}
.text-mono {
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
.text-sm {
  font-size: 0.85rem;
}
.text-xs {
  font-size: 0.75rem;
}
.mb-05 {
  margin-bottom: 0.5rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-4 {
  margin-bottom: 4rem;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-4 {
  margin-top: 4rem;
}
.bg-alt {
  background-color: var(--bg-alt);
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
}
.container--x-narrow {
  max-width: 600px;
  margin: 0 auto;
}

/* Code Block */
.code-block {
  background: #0d1117;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #e6edf3;
  line-height: 1.5;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}
th,
td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
th {
  font-weight: 600;
  color: var(--text-tertiary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
td {
  color: var(--text);
}
tr:hover td {
  background: var(--bg-alt);
}

/* Hero Variants */
.hero--large {
  min-height: 85vh;
}
.hero--medium {
  min-height: 70vh;
}
.hero--small {
  min-height: 55vh;
}

/* Legacy utilities kept for compatibility */
.quote-large {
  font-size: 1.5rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 2rem;
}
.badge--hero {
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
}
.border-accent {
  border-left: 3px solid var(--accent);
}
.border-green {
  border-left: 3px solid var(--green);
}
.border-red {
  border-left: 3px solid var(--red);
}
.list-decimal-large {
  list-style: decimal inside;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 2;
}
.list-disc {
  list-style: disc inside;
  margin-top: 1rem;
}
.font-xl {
  font-size: 1.5rem;
}
.font-xxl {
  font-size: 2.5rem;
}
.p-4 {
  padding: 2.5rem;
}
.p-2 {
  padding: 1rem;
}
.w-50 {
  width: 50%;
}
.overflow-x-auto {
  overflow-x: auto;
}

/* Pricing */
.pricing-amount {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.pricing-period {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 400;
}
