/* ———— ALL STYLES REMAIN 100% INTACT ———— */
:root[data-theme="dark"] {
  --bg: #000000;
  --bg2: #0a0a0a;
  --bg3: #111111;
  --bg4: #1a1a1a;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --text2: rgba(255, 255, 255, 0.6);
  --text3: rgba(255, 255, 255, 0.35);
  --accent: #ffffff;
  --accent-inv: #000000;
  --glow: rgba(255, 255, 255, 0.04);
  --glow2: rgba(255, 255, 255, 0.08);
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-hover: rgba(255, 255, 255, 0.06);
  --gradient-hero: radial-gradient(
    ellipse 80% 50% at 50% -10%,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 60%
  );
  --gradient-orb: radial-gradient(
      circle at 30% 50%,
      rgba(99, 102, 241, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(168, 85, 247, 0.1) 0%,
      transparent 50%
    );
  --shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 8px 40px rgba(0, 0, 0, 0.8);
  --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

:root[data-theme="light"] {
  --bg: #fafafa;
  --bg2: #f4f4f5;
  --bg3: #ececed;
  --bg4: #e4e4e7;
  --border: rgba(0, 0, 0, 0.07);
  --border-hover: rgba(0, 0, 0, 0.15);
  --text: #09090b;
  --text2: rgba(9, 9, 11, 0.55);
  --text3: rgba(9, 9, 11, 0.35);
  --accent: #09090b;
  --accent-inv: #ffffff;
  --glow: rgba(0, 0, 0, 0.03);
  --glow2: rgba(0, 0, 0, 0.06);
  --card-bg: rgba(0, 0, 0, 0.02);
  --card-hover: rgba(0, 0, 0, 0.04);
  --gradient-hero: radial-gradient(
    ellipse 80% 50% at 50% -10%,
    rgba(0, 0, 0, 0.05) 0%,
    transparent 60%
  );
  --gradient-orb: radial-gradient(
      circle at 30% 50%,
      rgba(99, 102, 241, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(168, 85, 247, 0.05) 0%,
      transparent 50%
    );
  --shadow: 0 0 0 1px rgba(0, 0, 0, 0.06), 0 8px 40px rgba(0, 0, 0, 0.08);
  --noise: none;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--noise);
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.01);
  backdrop-filter: blur(20px) saturate(1.8);
  transition: all 0.3s;
}

[data-theme="light"] nav {
  background: rgba(250, 250, 250, 0.8);
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links li a.active {
  color: var(--link-active-color);
  font-weight: 600;
  background: rgba(99, 102, 241, 0.12);
  color: #818cf8;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: var(--text);
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo-mark {
  width: 45px;
  height: 45px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.logo-mark svg {
  fill: var(--accent-inv);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text2);
  font-size: 14px;
  font-weight: 400;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.15s;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--glow2);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--text2);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.15s;
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  border-color: var(--border-hover);
  color: var(--text);
  background: var(--glow2);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  position: absolute;
  transition: all 0.3s;
}

[data-theme="dark"] .icon-sun {
  opacity: 1;
  transform: scale(1);
}

[data-theme="dark"] .icon-moon {
  opacity: 0;
  transform: scale(0.5) rotate(90deg);
}

[data-theme="light"] .icon-sun {
  opacity: 0;
  transform: scale(0.5) rotate(-90deg);
}

[data-theme="light"] .icon-moon {
  opacity: 1;
  transform: scale(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-ghost {
  color: var(--text2);
  border-color: var(--border);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: var(--glow2);
}

.btn-primary {
  background: var(--text);
  color: var(--accent-inv);
  border-color: var(--text);
}

.btn-primary:hover {
  opacity: 0.85;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  background: var(--gradient-orb);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite alternate;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(20px, -20px) scale(1.05);
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    black 30%,
    transparent 80%
  );
}

.hero-grid svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--text);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  animation: fadeUp 0.6s ease both;
  cursor: default;
}

.badge-dot {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  display: grid;
  place-items: center;
  font-size: 10px;
  color: white;
  flex-shrink: 0;
}

.hero h1 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.95;
  letter-spacing: -4px;
  color: var(--text);
  max-width: 900px;
  animation: fadeUp 0.6s 0.1s ease both;
  position: relative;
}

.hero h1 em {
  font-style: normal;
  color: var(--text3);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text2);
  max-width: 560px;
  line-height: 1.6;
  margin: 24px 0 40px;
  font-weight: 300;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-hero {
  padding: 12px 24px;
  font-size: 15px;
  border-radius: 10px;
}

.logos-section {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.logos-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 28px;
  font-family: "Geist Mono", monospace;
}

.logos-track {
  display: flex;
  gap: 56px;
  align-items: center;
  animation: logoScroll 60s linear infinite;
  width: max-content;
}

.logos-track:hover {
  animation-play-state: paused;
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logos-track span {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text3);
  white-space: nowrap;
  transition: color 0.2s;
  cursor: default;
}

.logos-track span:hover {
  color: var(--text2);
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}

.section-tag {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 16px;
}

.section-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--text);
  max-width: 640px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text2);
  max-width: 480px;
  line-height: 1.6;
  font-weight: 300;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 12px;
  margin-top: 56px;
}

.bento-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    var(--glow2) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.bento-card:hover {
  border-color: var(--border-hover);
  background: var(--card-hover);
}

.bento-card:hover::before {
  opacity: 1;
}

.bc1 {
  grid-column: span 7;
  min-height: 300px;
}

.bc2 {
  grid-column: span 5;
  min-height: 300px;
}

.bc3 {
  grid-column: span 4;
  min-height: 260px;
}

.bc4 {
  grid-column: span 4;
  min-height: 260px;
}

.bc5 {
  grid-column: span 4;
  min-height: 260px;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg3);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--text2);
}

.card-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 10px;
}

.card-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
  font-weight: 300;
}

.code-window {
  margin-top: 20px;
  border-radius: 10px;
  background: var(--bg3);
  border: 1px solid var(--border);
  overflow: hidden;
}

.code-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-r {
  background: #ff5f57;
}

.dot-y {
  background: #febc2e;
}

.dot-g {
  background: #28c840;
}

.code-body {
  padding: 16px 18px;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.7;
  color: var(--text2);
  white-space: pre;
  overflow: hidden;
}

.tok-k {
  color: #a78bfa;
}

.tok-s {
  color: #34d399;
}

.tok-f {
  color: #60a5fa;
}

.tok-c {
  color: var(--text3);
}

.stat-big {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -3px;
  color: var(--text);
  line-height: 1;
  margin: 16px 0 8px;
}

.deploy-visual {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.deploy-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-family: "Geist Mono", monospace;
  color: var(--text2);
}

.deploy-step .ds-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 10px;
}

.ds-done {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.ds-run {
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.3);
  animation: pulse 1.5s ease-in-out infinite;
}

.ds-wait {
  background: var(--bg4);
  color: var(--text3);
  border: 1px solid var(--border);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.globe-wrap {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 200px;
  height: 200px;
  opacity: 0.15;
  pointer-events: none;
}

[data-theme="light"] .globe-wrap {
  opacity: 0.08;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 56px;
}

.metric-cell {
  background: var(--bg);
  padding: 40px 36px;
  transition: background 0.2s;
}

.metric-cell:hover {
  background: var(--card-hover);
}

.metric-num {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -3px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 14px;
  color: var(--text2);
  font-weight: 300;
}

.workflow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wf-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.wf-step:first-child {
  border-top: 1px solid var(--border);
}

.wf-step:hover .wf-title {
  color: var(--text);
}

.wf-num {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  color: var(--text3);
  padding-top: 3px;
  flex-shrink: 0;
  width: 28px;
}

.wf-title {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text2);
  margin-bottom: 6px;
  transition: color 0.2s;
}

.wf-desc {
  font-size: 14px;
  color: var(--text3);
  line-height: 1.6;
}

.terminal {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.term-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg4);
}

.term-title {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  color: var(--text3);
  margin-left: 8px;
}

.term-body {
  padding: 20px 22px;
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  line-height: 1.8;
}

.term-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.term-prompt {
  color: var(--text3);
  flex-shrink: 0;
}

.term-cmd {
  color: var(--text);
}

.term-out {
  color: var(--text2);
  padding-left: 18px;
}

.term-success {
  color: #34d399;
  padding-left: 18px;
}

.term-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: var(--text);
  border-radius: 1px;
  animation: blink 1s step-end infinite;
  vertical-align: middle;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 56px;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  background: var(--card-bg);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.pricing-card.featured {
  background: var(--text);
  border-color: var(--text);
  color: var(--accent-inv);
}

.pricing-card.featured .price-label,
.pricing-card.featured .price-sub,
.pricing-card.featured .feat-item {
  color: rgba(0, 0, 0, 0.6) !important;
}

[data-theme="light"] .pricing-card.featured .price-label,
[data-theme="light"] .pricing-card.featured .price-sub,
[data-theme="light"] .pricing-card.featured .feat-item {
  color: rgba(255, 255, 255, 0.6) !important;
}

[data-theme="light"] .pricing-card.featured {
  background: #09090b;
  border-color: #09090b;
}

[data-theme="light"] .pricing-card.featured .price-name,
[data-theme="light"] .pricing-card.featured .price-amount {
  color: white !important;
}

.price-name {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
}

.price-label {
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 24px;
}

.price-amount {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 42px;
  letter-spacing: -2px;
  margin-bottom: 4px;
}

.price-sub {
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 28px;
}

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text2);
}

.feat-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.3);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #34d399;
  font-size: 10px;
}

.btn-pricing {
  width: 100%;
  justify-content: center;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
}

.testimonials {
  padding: 100px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}

.t-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 56px;
}

.t-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s;
}

.t-card:hover {
  border-color: var(--border-hover);
}

.t-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text2);
  margin-bottom: 24px;
  font-weight: 300;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}

.t-name {
  font-weight: 500;
  font-size: 14px;
}

.t-role {
  font-size: 12px;
  color: var(--text3);
}

.cta-section {
  padding: 100px 24px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(99, 102, 241, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -3px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
}

.cta-sub {
  font-size: 17px;
  color: var(--text2);
  max-width: 400px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.6;
}

footer {
  border-top: 1px solid var(--border);
  padding: 60px 24px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text3);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 220px;
}

.footer-col-title {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text3);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--text2);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 13px;
  color: var(--text3);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text3);
  font-family: "Geist Mono", monospace;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  /* Make all bento cards full width on mobile */
  .bento {
    gap: 16px;
  }

  .bento-card,
  .bc1,
  .bc2,
  .bc3,
  .bc4,
  .bc5,
  .bento-card[style*="grid-column"] {
    grid-column: span 12 !important;
    min-height: auto !important;
  }

  /* Adjust nav buttons for small screens */
  .nav-right .btn {
    padding: 6px 12px;
    font-size: 13px;
  }

  .nav-right .btn-primary {
    white-space: nowrap;
  }

  /* Reduce logo marquee gap on mobile */
  .logos-track {
    gap: 32px;
  }

  .logos-track span {
    font-size: 14px;
  }

  /* Code window and terminal horizontal scroll */
  .code-window,
  .terminal {
    overflow-x: auto;
  }

  .code-body {
    white-space: pre;
    overflow-x: auto;
    font-size: 11px;
    padding: 12px;
  }

  .term-body {
    overflow-x: auto;
    font-size: 12px;
    padding: 16px;
  }

  /* Adjust hero spacing */
  .hero {
    padding: 100px 20px 60px;
  }

  .hero-badge {
    font-size: 11px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .hero-cta {
    gap: 10px;
  }

  .btn-hero {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* Workflow section */
  .workflow {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
  }

  /* Pricing / project cards (if you later replace pricing with projects) */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Testimonials grid */
  .t-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
    margin: 0 auto;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Metrics grid */
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .metric-cell {
    padding: 32px 24px;
    text-align: center;
  }

  .metric-num {
    font-size: 40px;
  }

  /* Section padding */
  .section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .section-sub {
    font-size: 15px;
  }

  /* CTA section */
  .cta-section {
    padding: 60px 20px 80px;
  }

  .cta-title {
    font-size: 36px;
    letter-spacing: -2px;
  }

  /* Stat big text */
  .stat-big {
    font-size: 44px;
  }
}

.logos-track span i {
  margin-right: 8px;
  font-size: 1.2em;
  vertical-align: middle;
}

.logos-track span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text2);
  white-space: nowrap;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
