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

@font-face {
  font-family: 'Geist';
  src: url('https://cdn.jsdelivr.net/npm/@vercel/geist@1.3.1/dist/fonts/geist-sans/Geist-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist';
  src: url('https://cdn.jsdelivr.net/npm/@vercel/geist@1.3.1/dist/fonts/geist-sans/Geist-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist';
  src: url('https://cdn.jsdelivr.net/npm/@vercel/geist@1.3.1/dist/fonts/geist-sans/Geist-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist';
  src: url('https://cdn.jsdelivr.net/npm/@vercel/geist@1.3.1/dist/fonts/geist-sans/Geist-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #5865F2;
  --primary-dim: rgba(88, 101, 242, 0.1);
  --primary-glow: rgba(88, 101, 242, 0.25);
  --secondary: #5865F2;
  --secondary-dim: rgba(88, 101, 242, 0.1);
  --secondary-glow: rgba(88, 101, 242, 0.25);
  --support: #5865F2;
  --support-dim: rgba(88, 101, 242, 0.1);
  --support-glow: rgba(88, 101, 242, 0.25);
  --bg: #1E1F22;
  --bg-elevated: #2B2D31;
  --bg-card: #313338;
  --bg-card-hover: #3F4148;
  --text: #F2F3F5;
  --text-secondary: #B5BAC1;
  --text-tertiary: #949BA4;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.1);
  --success: #23A55A;
  --warning: #F0B232;
  --error: #ED4245;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0s;
  --font-sans: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'Geist', 'Inter', monospace;
}

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

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

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

::selection {
  background: var(--primary);
  color: var(--bg);
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--bg-card-hover);
  border-radius: 3px;
}

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

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

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

ul {
  list-style: none;
}

/* ── Grid Background ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── Grain Overlay ── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ── Ambient Orbs ── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.orb--primary {
  width: 600px;
  height: 600px;
  background: var(--primary-dim);
  top: -200px;
  right: -200px;

}

.orb--secondary {
  width: 500px;
  height: 500px;
  background: var(--secondary-dim);
  bottom: -200px;
  left: -150px;

}



/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.container--narrow {
  max-width: 800px;
}

.container--wide {
  max-width: 1400px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5, 8, 22, 0.8);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(5, 8, 22, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
  font-family: 'Inter', var(--font-sans);
  font-weight: 800;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 101;
}

.nav-logo:hover {
  opacity: 0.9;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu a {
  color: var(--text-secondary);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
  font-family: var(--font-sans);
  position: relative;
}

.nav-menu a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-menu a.active {
  color: var(--primary);
}

.nav-menu .nav-cta {
  background: var(--primary);
  color: var(--text);
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  margin-left: 0.5rem;
}

.nav-menu .nav-cta:hover {
  background: #4752C4;
  color: var(--text);
  box-shadow: 0 0 30px var(--primary-glow);
}

.nav-menu .nav-cta.active {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

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

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    background: rgba(5, 8, 22, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    gap: 0.75rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid var(--border);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu a {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .nav-menu .nav-cta {
    margin-left: 0;
    margin-top: 1rem;
    text-align: center;
  }
}

/* ── Page Hero ── */
.page-hero {
  padding: 8rem 0 4rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero--sm {
  padding: 7rem 0 3rem;
}

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-family: var(--font-mono);
  margin-bottom: 1rem;
}

.page-hero-label::before,
.page-hero-label::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--primary-dim);
}

.page-hero-title {
  font-family: 'Inter', var(--font-sans);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.page-hero-title .gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.page-hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Section ── */
.section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.section--sm {
  padding: 3rem 0;
}

.section--lg {
  padding: 7rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header--left {
  text-align: left;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-mono);
}

.section-title {
  font-family: 'Inter', var(--font-sans);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.7;
}

.section-header--left .section-desc {
  margin: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: none;
  line-height: 1.4;
  white-space: nowrap;
}

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

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--primary);
  color: var(--text);
}

.btn--primary:hover {
  box-shadow: 0 0 40px var(--primary-glow);
}

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

.btn--secondary:hover {
  box-shadow: 0 0 40px var(--secondary-glow);
}

.btn--support {
  background: var(--support);
  color: var(--text);
}

.btn--support:hover {
  box-shadow: 0 0 40px var(--support-glow);
}

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

.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-dim);
}

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

.btn--ghost:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn--lg {
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
}

.btn--sm {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

.btn--block {
  width: 100%;
  justify-content: center;
}

.btn--icon {
  width: 40px;
  height: 40px;
  padding: 0;
  justify-content: center;
  border-radius: var(--radius-sm);
}

/* ── Grid Layouts ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

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

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

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

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

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

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

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: all var(--transition);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.card--accent {
  position: relative;
  overflow: hidden;
}

.card--accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.card--accent-cyan::before {
  background: var(--primary);
}

.card--accent-pink::before {
  background: var(--secondary);
}

.card--accent-purple::before {
  background: var(--support);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.card-icon--blurple {
  background: var(--primary-dim);
  color: var(--primary);
}

.card-icon--green {
  background: var(--secondary-dim);
  color: var(--secondary);
}

.card-icon--yellow {
  background: var(--support-dim);
  color: var(--support);
}

.card h3 {
  font-family: 'Inter', var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ── Feature Items ── */
.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card--blurple::before {
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
}

.feature-card--green::before {
  background: var(--secondary);
  box-shadow: 0 0 10px var(--secondary-glow);
}

.feature-card--yellow::before {
  background: var(--support);
  box-shadow: 0 0 10px var(--support-glow);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card h4 {
  font-family: 'Inter', var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Tags / Badges ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-family: var(--font-mono);
}

.tag--primary {
  background: var(--primary-dim);
  color: var(--primary);
}

.tag--secondary {
  background: var(--secondary-dim);
  color: var(--secondary);
}

.tag--support {
  background: var(--support-dim);
  color: var(--support);
}

.tag--success {
  background: rgba(34, 197, 94, 0.08);
  color: var(--success);
}

.tag--warning {
  background: rgba(245, 158, 11, 0.08);
  color: var(--warning);
}

/* ── Tables ── */
.table-wrap {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.table-wrap th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.015);
  border-bottom: 1px solid var(--border);
}

.table-wrap td {
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

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

.table-wrap code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text);
}

.table-wrap tr:hover td {
  background: rgba(255, 255, 255, 0.015);
}

/* ── Setup Steps ── */
.setup-steps {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.setup-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.15rem;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.setup-step:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.setup-step-num {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font-mono);
}

.setup-step-num--blurple {
  background: var(--primary-dim);
  color: var(--primary);
}

.setup-step-num--green {
  background: var(--secondary-dim);
  color: var(--secondary);
}

.setup-step-num--yellow {
  background: var(--support-dim);
  color: var(--support);
}

.setup-step-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.setup-step-code {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  margin: 0 0.15rem;
}

.setup-step-code--blurple {
  background: var(--primary-dim);
  color: var(--primary);
}

.setup-step-code--green {
  background: var(--secondary-dim);
  color: var(--secondary);
}

.setup-step-code--yellow {
  background: var(--support-dim);
  color: var(--support);
}

/* ── Terminal Window ── */
.terminal {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
}

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

.terminal-dot--r {
  background: #ff5f57;
}

.terminal-dot--y {
  background: #ffbd2e;
}

.terminal-dot--g {
  background: #28c840;
}

.terminal-title {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  margin-left: 0.5rem;
  opacity: 0.6;
}

.terminal-body {
  padding: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.8;
}

.terminal-prompt {
  color: var(--primary);
  font-weight: 500;
}

.terminal-output {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.terminal-line {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.35rem 0;
}

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

.terminal-line-dot--blurple {
  background: var(--primary);
  box-shadow: 0 0 6px var(--primary-glow);
}

.terminal-line-dot--green {
  background: var(--secondary);
  box-shadow: 0 0 6px var(--secondary-glow);
}

.terminal-line-dot--yellow {
  background: var(--support);
  box-shadow: 0 0 6px var(--support-glow);
}

.terminal-line-name {
  color: var(--text);
  font-weight: 500;
  min-width: 52px;
}

.terminal-line-status {
  color: var(--success);
  font-size: 0.75rem;
}

.terminal-line-version {
  color: var(--text-secondary);
  font-size: 0.72rem;
  margin-left: auto;
  opacity: 0.5;
}

.terminal-cursor-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.5rem;
}

.terminal-cursor {
  display: inline-block;
  width: 7px;
  height: 15px;
  background: var(--primary);

}



.terminal-cursor-text {
  color: var(--text-secondary);
  opacity: 0.5;
}

/* ── Stats Bar ── */
.stats-bar {
  padding: 0 0 4rem;
  position: relative;
  z-index: 1;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.stats-bar-item {
  background: var(--bg-card);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background var(--transition);
}

.stats-bar-item:hover {
  background: var(--bg-card-hover);
}

.stats-bar-num {
  font-family: 'Inter', var(--font-sans);
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 0.35rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-bar-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

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

  .stats-bar-item {
    padding: 1.5rem 1rem;
  }
}

/* ── Tech Marquee ── */
.tech-marquee {
  padding: 3rem 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.tech-marquee-inner {
  display: flex;
  gap: 3rem;
  align-items: center;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.tech-marquee-track {
  display: flex;
  gap: 3rem;
  align-items: center;

}



.tech-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  opacity: 0.4;
  transition: opacity var(--transition);
  font-family: var(--font-mono);
}

.tech-item:hover {
  opacity: 0.8;
}

.tech-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-secondary);
  opacity: 0.3;
}

/* ── CTA Section ── */
.cta-section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-section .container {
  max-width: 650px;
}

.cta-title {
  font-family: 'Inter', var(--font-sans);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.cta-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

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

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: 'Inter', var(--font-sans);
  font-weight: 800;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 0.75rem;
}

.footer-col h4 {
  font-family: 'Inter', var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 0.35rem 0;
  transition: color var(--transition);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-tertiary);
  font-size: 0.8rem;
}

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

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

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

/* ── Hero (Homepage) ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 4rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
  opacity: 0.3;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
}

.hero-label-line {
  width: 24px;
  height: 1px;
  background: var(--text-secondary);
}

.hero-title {
  font-family: 'Inter', var(--font-sans);
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-title-line {
  display: block;
}

.hero-title .gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .hero-subtitle {
    max-width: none;
  }
}

/* ── Bot Cards (Homepage) ── */
.bots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
}

.bot-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  opacity: 0;
  transition: opacity var(--transition);
}

.bot-card--blurple::before {
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
}

.bot-card--green::before {
  background: var(--secondary);
  box-shadow: 0 0 12px var(--secondary-glow);
}

.bot-card--yellow::before {
  background: var(--support);
  box-shadow: 0 0 12px var(--support-glow);
}

.bot-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.bot-card:hover::before {
  opacity: 1;
}

.bot-card-body {
  padding: 1.5rem 1.5rem 0;
  flex: 1;
}

.bot-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.bot-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bot-card-icon--blurple {
  background: var(--primary-dim);
  color: var(--primary);
}

.bot-card-icon--green {
  background: var(--secondary-dim);
  color: var(--secondary);
}

.bot-card-icon--yellow {
  background: var(--support-dim);
  color: var(--support);
}

.bot-card-name {
  font-family: 'Inter', var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.bot-card-name-code {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-left: 0.4rem;
  opacity: 0.5;
}

.bot-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.bot-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.bot-card-actions {
  display: flex;
  border-top: 1px solid var(--border);
}

.bot-card-actions .btn {
  flex: 1;
  justify-content: center;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  border-radius: 0;
  background: transparent;
  color: var(--text-secondary);
  border: none;
  box-shadow: none;
  gap: 0.4rem;
}

.bot-card-actions .btn:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  transform: none;
}

.bot-card-actions .btn:first-child {
  border-right: 1px solid var(--border);
}

.bot-card-actions .btn--download-primary:hover {
  color: var(--primary);
  background: var(--primary-dim);
}

.bot-card-actions .btn--download-secondary:hover {
  color: var(--secondary);
  background: var(--secondary-dim);
}

.bot-card-actions .btn--download-support:hover {
  color: var(--support);
  background: var(--support-dim);
}

/* ── Bot Detail Page ── */
.bot-detail {
  padding-top: 8rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.bot-detail-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: start;
}

.bot-detail-head {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.bot-detail-head-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--font-mono);
  color: var(--text-tertiary);
}

.bot-detail-head h1 {
  font-family: 'Inter', var(--font-sans);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.bot-detail-head .tagline {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 0.25rem;
}

.bot-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--font-mono);
}

.meta-item-badge {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  flex-shrink: 0;
}

.bot-detail-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.bot-detail-terminal {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.bot-detail-term-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0.85rem;
  background: rgba(255, 255, 255, 0.015);
  border-bottom: 1px solid var(--border);
}

.bot-detail-term-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.bot-detail-term-dot--r {
  background: #ff5f57;
}

.bot-detail-term-dot--y {
  background: #ffbd2e;
}

.bot-detail-term-dot--g {
  background: #28c840;
}

.bot-detail-term-title {
  font-size: 0.65rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  opacity: 0.5;
  margin-left: 0.35rem;
}

.bot-detail-term-body {
  padding: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.9;
}

.bot-detail-term-prompt {
  color: var(--text-secondary);
  opacity: 0.4;
}

.bot-detail-term-output {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.bot-detail-term-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bot-detail-term-key {
  color: var(--text-secondary);
  opacity: 0.6;
  min-width: 72px;
}

.bot-detail-term-val {
  color: var(--text);
}

@media (max-width: 768px) {
  .bot-detail {
    padding-top: 6rem;
  }

  .bot-detail-header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── Back Link ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
  transition: color var(--transition);
}

.back-link:hover {
  color: var(--primary);
}

/* ── Section Divider ── */
.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}

.section-divider:first-of-type {
  margin-top: 0;
}

.section-divider h2 {
  font-family: 'Inter', var(--font-sans);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.section-divider-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--border), transparent);
}

/* ── Download Section ── */
.download-section {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  margin-top: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  transition: all var(--transition);
}

.download-section:hover {
  border-color: var(--border-hover);
}

.download-section-info h3 {
  font-family: 'Inter', var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.download-section-info p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .download-section {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
}

/* ── Disclaimer / Callout ── */
.disclaimer {
  background: rgba(245, 158, 11, 0.06);
  border-left: 3px solid var(--warning);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.disclaimer strong {
  color: var(--text);
}
.disclaimer a {
  color: var(--primary);
  text-decoration: underline;
}

/* ── Pricing Cards ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card--featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--bg-card), rgba(0, 229, 255, 0.03));
  transform: scale(1.03);
}

.pricing-card--featured:hover {
  border-color: var(--primary);
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 20px 80px var(--primary-dim);
}

.pricing-card--featured .pricing-badge {
  display: inline-block;
}

.pricing-badge {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  background: var(--primary-dim);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
}

.pricing-name {
  font-family: 'Inter', var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.pricing-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.pricing-amount {
  font-family: 'Inter', var(--font-sans);
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.pricing-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.pricing-period {
  color: var(--text-tertiary);
  font-size: 0.8rem;
  margin-bottom: 2rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  padding: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--primary-dim);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2300E5FF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 8px;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card--featured {
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: 'Inter', var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
  user-select: none;
}

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

.faq-question svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: transform var(--transition);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0s;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ── Contact Form ── */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: all var(--transition);
  outline: none;
}

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

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

.form-textarea {
  height: 140px;
  resize: none;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--bg-card);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23B5BAC1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.75rem;
  cursor: pointer;
}

.form-select:hover {
  border-color: var(--border-hover);
  background-color: var(--bg-card-hover);
}

.form-select option {
  background: var(--bg-elevated);
  color: var(--text);
  padding: 0.5rem;
}

/* ── Custom Select Dropdown ── */
.custom-select {
  position: relative;
}

.custom-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  cursor: pointer;
  outline: none;
  text-align: left;
}

.custom-select-trigger:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.custom-select-trigger:focus-visible {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}

.custom-select-trigger svg {
  flex-shrink: 0;
  color: var(--text-tertiary);
  transition: transform 0s;
}

.custom-select.open .custom-select-trigger svg {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: none;
}

.custom-select.open .custom-select-options {
  display: block;
}

.custom-select-options li {
  list-style: none;
  padding: 0.65rem 1rem;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  cursor: pointer;
}

.custom-select-options li:hover {
  background: var(--bg-card-hover);
  color: var(--text);
}

.custom-select-options li.active {
  color: var(--primary);
  background: var(--primary-dim);
}

/* ── Blog Cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.75rem;
  transition: all var(--transition);
}

.blog-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.blog-card-date {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-family: 'Inter', var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.blog-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.blog-card .btn {
  font-size: 0.8rem;
  padding: 0.4rem 0;
  background: none;
  color: var(--primary);
}

.blog-card .btn:hover {
  background: none;
  box-shadow: none;
}

/* ── Testimonial Cards ── */
.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-tertiary);
}

/* ── Docs Layout ── */
.docs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  padding-top: 7rem;
  position: relative;
  z-index: 1;
}

.docs-sidebar {
  position: sticky;
  top: 5rem;
  height: fit-content;
  max-height: calc(100vh - 6rem);
  overflow-y: auto;
  padding: 1.5rem 0 1.5rem 1.5rem;
}

.docs-sidebar h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: var(--font-mono);
}

.docs-sidebar a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.docs-sidebar a:hover {
  color: var(--primary);
}

.docs-sidebar a.active {
  color: var(--primary);
}

.docs-content {
  min-height: 60vh;
}

.docs-content h1 {
  font-family: 'Inter', var(--font-sans);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.docs-content h2 {
  font-family: 'Inter', var(--font-sans);
  font-weight: 700;
  font-size: 1.4rem;
  margin: 2.5rem 0 0.75rem;
}

.docs-content h3 {
  font-family: 'Inter', var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 2rem 0 0.5rem;
}

.docs-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.docs-content ul,
.docs-content ol {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.docs-content ul {
  list-style: disc;
}

.docs-content ol {
  list-style: decimal;
}

.docs-content li {
  margin-bottom: 0.3rem;
}

.docs-content code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  padding: 0.15rem 0.4rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  color: var(--primary);
}

.docs-content pre {
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 1rem;
  overflow-x: auto;
  border: 1px solid var(--border);
}

.docs-content pre code {
  background: none;
  padding: 0;
  color: var(--text);
  font-size: 0.85rem;
  line-height: 1.6;
}

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

  .docs-sidebar {
    display: none;
  }
}

/* ── Legal Pages ── */
.legal-content h1 {
  font-family: 'Inter', var(--font-sans);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.legal-content .last-updated {
  color: var(--text-tertiary);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-family: 'Inter', var(--font-sans);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

.legal-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-content ul {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  list-style: disc;
}

.legal-content li {
  margin-bottom: 0.3rem;
}

/* ── 404 Page ── */
.page-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.page-404-code {
  font-family: 'Inter', var(--font-sans);
  font-weight: 900;
  font-size: clamp(5rem, 15vw, 10rem);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.page-404 h1 {
  font-family: 'Inter', var(--font-sans);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.page-404 p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 400px;
}



/* ── Divider ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 1rem 0;
}

/* ── Text Utilities ── */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 2.5rem;
}

.mt-6 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}
