* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg: #050816;
  --navy: #080d1f;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --cyan: #06b6d4;
  --pink: #ec4899;
  --green: #10b981;
  --text: #e2e8f0;
  --muted: #64748b;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  max-width: 100vw;
}
body.menu-open {
  overflow: hidden;
}
/* Custom cursor */
#cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.6);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    transform 0.1s,
    width 0.3s,
    height 0.3s,
    background 0.3s;
  mix-blend-mode: screen;
}
#cursor-trail {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.3);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}

/* Aurora */
.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.aurora-1 {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.12) 0%,
    transparent 70%
  );
  top: -200px;
  left: -200px;
  animation: drift1 20s ease-in-out infinite;
}
.aurora-2 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.1) 0%,
    transparent 70%
  );
  top: 20%;
  right: -100px;
  animation: drift2 25s ease-in-out infinite;
}
.aurora-3 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.08) 0%,
    transparent 70%
  );
  bottom: 10%;
  left: 20%;
  animation: drift3 18s ease-in-out infinite;
}
@keyframes drift1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(80px, 60px) scale(1.1);
  }
}
@keyframes drift2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-60px, 80px) scale(1.15);
  }
}
@keyframes drift3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, -50px) scale(0.9);
  }
}

/* Particles */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-20px) translateX(var(--dx));
    opacity: 0;
  }
}

/* Nav */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 8, 22, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo span {
  color: #06b6d4;
  -webkit-text-fill-color: #06b6d4;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width 0.3s;
}
.nav-links a:hover {
  color: #e2e8f0;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.btn-ghost {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: transparent;
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Inter", sans-serif;
}
.btn-ghost:hover {
  border-color: rgba(59, 130, 246, 0.5);
  color: #e2e8f0;
  background: rgba(59, 130, 246, 0.05);
}
.btn-primary {
  padding: 0.5rem 1.4rem;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Inter", sans-serif;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

/* Mobile burger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  padding: 0 8px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #e2e8f0;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(78vw, 320px);
  height: 100vh;
  background: rgba(8, 13, 31, 0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--glass-border);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-menu-links a {
  color: #e2e8f0;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
}
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.mobile-menu-actions button {
  width: 100%;
  padding: 0.75rem;
}

/* Sections */
section {
  position: relative;
  z-index: 10;
  max-width: 100vw;
  overflow: hidden;
}

/* Hero — centered */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 4rem 5rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.hero-center {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 100px;
  background: rgba(59, 130, 246, 0.05);
  font-size: 0.8rem;
  color: #93c5fd;
  margin-bottom: 1.5rem;
  max-width: 100%;
  text-align: center;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}
h1.hero-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
}
.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-shift 4s ease infinite;
}
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.hero-sub {
  color: #94a3b8;
  font-size: 1.15rem;
  line-height: 1.75;
  margin: 0 auto 2.5rem;
  max-width: 540px;
  padding: 0 0.5rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-primary {
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Inter", sans-serif;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.35);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(59, 130, 246, 0.5);
}
.cta-secondary {
  padding: 0.9rem 2.2rem;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  background: var(--glass);
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Inter", sans-serif;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cta-secondary:hover {
  border-color: rgba(6, 182, 212, 0.4);
  background: rgba(6, 182, 212, 0.05);
}
.play-icon {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* hero trust row */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #475569;
  font-size: 0.82rem;
  white-space: nowrap;
}
.trust-item span {
  color: #64748b;
}
.trust-sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.08);
}
/* hero glow orb */
.hero-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.08) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: orb-pulse 6s ease-in-out infinite;
}
@keyframes orb-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
  }
}

/* Portfolio / Dashboard Boxes */
#portfolio-boxes {
  padding: 4rem 4rem 5rem;
}
.pb-header {
  text-align: center;
  margin-bottom: 3rem;
}
.pb-label {
  color: #3b82f6;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.pb-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 0.75rem;
}
.pb-sub {
  color: #64748b;
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto;
}
.pb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* Individual box card */
.pb-card {
  border-radius: 20px;
  padding: 1.6rem 1.4rem 1.4rem;
  border: 1px solid;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: default;
}
.pb-card:hover {
  transform: translateY(-6px);
}
/* corner glow blob */
.pb-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  top: -35px;
  right: -35px;
  opacity: 0.15;
  transition: opacity 0.35s;
  pointer-events: none;
}
.pb-card:hover::after {
  opacity: 0.28;
}
/* shine sweep on hover */
.pb-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.pb-card:hover::before {
  opacity: 1;
}

/* color themes */
.pb-pink {
  background: linear-gradient(
    160deg,
    rgba(125, 45, 110, 0.92),
    rgba(85, 35, 95, 0.88)
  );
  border-color: rgba(244, 114, 182, 0.55);
}
.pb-pink::after {
  background: radial-gradient(circle, #f472b6, transparent);
}
.pb-cyan {
  background: linear-gradient(
    160deg,
    rgba(15, 115, 135, 0.92),
    rgba(10, 80, 110, 0.88)
  );
  border-color: rgba(34, 211, 238, 0.55);
}
.pb-cyan::after {
  background: radial-gradient(circle, #67e8f9, transparent);
}
.pb-blue {
  background: linear-gradient(
    160deg,
    rgba(45, 95, 185, 0.92),
    rgba(30, 65, 145, 0.88)
  );
  border-color: rgba(96, 165, 250, 0.55);
}
.pb-blue::after {
  background: radial-gradient(circle, #93c5fd, transparent);
}
.pb-purple {
  background: linear-gradient(
    160deg,
    rgba(120, 65, 200, 0.92),
    rgba(90, 45, 160, 0.88)
  );
  border-color: rgba(168, 85, 247, 0.55);
}
.pb-purple::after {
  background: radial-gradient(circle, #c084fc, transparent);
}

.pb-card {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 25px rgba(59, 130, 246, 0.08);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.pb-card:hover {
  transform: translateY(-8px);
}
.pb-card::after {
  opacity: 0.35;
}
.pb-card:hover::after {
  opacity: 0.7;
}

.pb-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 2;
  transition: all 0.35s ease;
}

.pb-pink .pb-icon {
  color: #ffd1e8;
  background: linear-gradient(
    135deg,
    rgba(255, 77, 166, 0.25),
    rgba(236, 72, 153, 0.12)
  );
  border: 1px solid rgba(255, 77, 166, 0.4);
  box-shadow:
    0 0 15px rgba(255, 77, 166, 0.35),
    0 0 35px rgba(255, 77, 166, 0.2);
}
.pb-cyan .pb-icon {
  color: #d9fdff;
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.25),
    rgba(6, 182, 212, 0.12)
  );
  border: 1px solid rgba(34, 211, 238, 0.4);
  box-shadow:
    0 0 15px rgba(34, 211, 238, 0.35),
    0 0 35px rgba(34, 211, 238, 0.2);
}
.pb-blue .pb-icon {
  color: #e0ecff;
  background: linear-gradient(
    135deg,
    rgba(96, 165, 250, 0.25),
    rgba(59, 130, 246, 0.12)
  );
  border: 1px solid rgba(96, 165, 250, 0.4);
  box-shadow:
    0 0 15px rgba(96, 165, 250, 0.35),
    0 0 35px rgba(96, 165, 250, 0.2);
}
.pb-purple .pb-icon {
  color: #f1e8ff;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.25),
    rgba(139, 92, 246, 0.12)
  );
  border: 1px solid rgba(168, 85, 247, 0.4);
  box-shadow:
    0 0 15px rgba(168, 85, 247, 0.35),
    0 0 35px rgba(168, 85, 247, 0.2);
}
.pb-card:hover .pb-icon {
  transform: translateY(-3px) scale(1.08);
  box-shadow:
    0 0 25px currentColor,
    0 0 50px currentColor;
}
.pb-pill {
  display: inline-flex;
  padding: 0.22rem 0.7rem;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  border: 1px solid;
  position: relative;
  z-index: 1;
}
.pb-pink .pb-pill {
  background: rgba(236, 72, 153, 0.1);
  color: #f9a8d4;
  border-color: rgba(236, 72, 153, 0.2);
}
.pb-cyan .pb-pill {
  background: rgba(6, 182, 212, 0.1);
  color: #67e8f9;
  border-color: rgba(6, 182, 212, 0.2);
}
.pb-blue .pb-pill {
  background: rgba(59, 130, 246, 0.1);
  color: #93c5fd;
  border-color: rgba(59, 130, 246, 0.2);
}
.pb-purple .pb-pill {
  background: rgba(139, 92, 246, 0.1);
  color: #c4b5fd;
  border-color: rgba(139, 92, 246, 0.2);
}
.pb-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.pb-pink .pb-card-title {
  color: #fce7f3;
}
.pb-cyan .pb-card-title {
  color: #cffafe;
}
.pb-blue .pb-card-title {
  color: #dbeafe;
}
.pb-purple .pb-card-title {
  color: #ede9fe;
}
.pb-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
}
.pb-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 1;
}
.pb-row:last-child {
  border-bottom: none;
}
.pb-row-label {
  font-size: 13px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.3px;
}
.pb-row-val {
  font-size: 12px;
  font-weight: 700;
  color: white;
}
.pb-pink .pb-row-val {
  color: #f472b6;
}
.pb-cyan .pb-row-val {
  color: #22d3ee;
}
.pb-blue .pb-row-val {
  color: #60a5fa;
}
.pb-purple .pb-row-val {
  color: #a78bfa;
}
.pb-row-val.zero {
  color: #374151;
  font-style: italic;
  font-weight: 500;
}
.pb-action {
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}
.pb-btn {
  width: 100%;
  padding: 0.6rem;
  border-radius: 9px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: 1px solid;
  background: transparent;
  transition:
    background 0.2s,
    opacity 0.2s;
  font-family: "Inter", sans-serif;
}
.pb-pink .pb-btn {
  border-color: rgba(236, 72, 153, 0.25);
  color: #f9a8d4;
}
.pb-pink .pb-btn:hover {
  background: rgba(236, 72, 153, 0.08);
}
.pb-cyan .pb-btn {
  border-color: rgba(6, 182, 212, 0.25);
  color: #67e8f9;
}
.pb-cyan .pb-btn:hover {
  background: rgba(6, 182, 212, 0.08);
}
.pb-blue .pb-btn {
  border-color: rgba(59, 130, 246, 0.25);
  color: #93c5fd;
}
.pb-blue .pb-btn:hover {
  background: rgba(59, 130, 246, 0.08);
}
.pb-purple .pb-btn {
  border-color: rgba(139, 92, 246, 0.25);
  color: #c4b5fd;
}
.pb-purple .pb-btn:hover {
  background: rgba(139, 92, 246, 0.08);
}

@media (max-width: 900px) {
  #portfolio-boxes {
    padding: 3rem 1.5rem;
  }
  .pb-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .pb-grid {
    grid-template-columns: 1fr;
  }
}

/* Floating badges — keep */
.badge-ring {
  position: absolute;
  inset: -60px;
  pointer-events: none;
}
.fbadge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  background: rgba(15, 20, 40, 0.9);
  border: 1px solid var(--glass-border);
  font-size: 0.78rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  animation: float 8s ease-in-out infinite;
}
.fbadge-emoji {
  font-size: 1rem;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Light beams */
.beam {
  position: fixed;
  top: 0;
  width: 2px;
  height: 100vh;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(59, 130, 246, 0.3),
    transparent
  );
  transform-origin: top center;
  pointer-events: none;
  z-index: 2;
}
.beam1 {
  left: 25%;
  transform: rotate(-15deg);
  animation: beam-anim 8s ease-in-out infinite;
}
.beam2 {
  right: 30%;
  transform: rotate(15deg);
  animation: beam-anim 10s ease-in-out infinite 3s;
}
.beam3 {
  left: 60%;
  transform: rotate(5deg);
  animation: beam-anim 12s ease-in-out infinite 6s;
}
@keyframes beam-anim {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.6;
  }
}

/* Stats */
#stats {
  padding: 3rem 4rem;
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 1.5rem;
  position: relative;
  min-width: 130px;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: var(--glass-border);
}
.stat-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  position: relative;
}
.stat-ring::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(var(--c) var(--p), transparent var(--p));
  animation: ring-fill 2s ease-out both;
}
@keyframes ring-fill {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}
.stat-lbl {
  color: #64748b;
  font-size: 0.8rem;
}
.s1 .stat-ring {
  background: rgba(59, 130, 246, 0.1);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
  --c: #3b82f6;
  --p: 85%;
}
.s2 .stat-ring {
  background: rgba(139, 92, 246, 0.1);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
  --c: #8b5cf6;
  --p: 99%;
}
.s3 .stat-ring {
  background: rgba(6, 182, 212, 0.1);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
  --c: #06b6d4;
  --p: 78%;
}
.s4 .stat-ring {
  background: rgba(236, 72, 153, 0.1);
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
  --c: #ec4899;
  --p: 92%;
}

/* Features Bento */
#features {
  padding: 5rem 4rem;
}
.section-label {
  text-align: center;
  color: #3b82f6;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}
.section-sub {
  text-align: center;
  color: #64748b;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 3rem;
}
.bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1rem;
}
.bento-card {
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.05),
    transparent 60%
  );
}
.bento-card:hover {
  transform: translateY(-4px);
}
.bento-card:hover::before {
  opacity: 1;
}
.bc-analytics {
  grid-column: 1;
  grid-row: 1/3;
  padding: 2rem;
}
.bc-analytics:hover {
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.3);
}
.bc-ai {
  grid-column: 2/4;
  grid-row: 1;
}
.bc-ai:hover {
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.3);
}
.bc-security {
  grid-column: 2;
  grid-row: 2;
}
.bc-security:hover {
  box-shadow: 0 0 40px rgba(6, 182, 212, 0.2);
  border-color: rgba(6, 182, 212, 0.3);
}
.bc-auto {
  grid-column: 3;
  grid-row: 2;
}
.bc-auto:hover {
  box-shadow: 0 0 40px rgba(236, 72, 153, 0.2);
  border-color: rgba(236, 72, 153, 0.3);
}
.bc-integrations {
  grid-column: 1/3;
  grid-row: 3;
}
.bc-integrations:hover {
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.3);
}
.bc-reports {
  grid-column: 3;
  grid-row: 3;
}
.bc-reports:hover {
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.3);
}
.bc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.bc-icon.blue {
  background: rgba(59, 130, 246, 0.15);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}
.bc-icon.purple {
  background: rgba(139, 92, 246, 0.15);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}
.bc-icon.cyan {
  background: rgba(6, 182, 212, 0.15);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}
.bc-icon.pink {
  background: rgba(236, 72, 153, 0.15);
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.2);
}
.bc-icon.green {
  background: rgba(16, 185, 129, 0.15);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}
.bc-icon.amber {
  background: rgba(245, 158, 11, 0.15);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}
.bc-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.bc-desc {
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.6;
}
.bc-big-num {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1rem 0;
}
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 60px;
  margin-top: 1rem;
}
.mc-bar {
  flex: 1;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    rgba(59, 130, 246, 0.8),
    rgba(59, 130, 246, 0.3)
  );
  min-height: 8px;
}
.trend-line {
  width: 100%;
  height: 50px;
  margin-top: 1rem;
  position: relative;
  overflow: visible;
}
.glow-border {
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.4),
    rgba(139, 92, 246, 0.4),
    rgba(6, 182, 212, 0.4)
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}
.bento-card:hover .glow-border {
  opacity: 1;
}

/* Integrations */
#integrations {
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.integrations-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.int-orbit {
  position: relative;
  width: 480px;
  height: 480px;
  margin: 2rem auto;
  border-radius: 50%;
  border: 1px dashed rgba(59, 130, 246, 0.15);
  max-width: 100%;
}
.int-orbit-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px dashed rgba(139, 92, 246, 0.15);
}
.int-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.int-center-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.3),
    rgba(124, 58, 237, 0.3)
  );
  border: 1px solid rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 0.5rem;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
}
.orbit-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  background: rgba(15, 20, 40, 0.95);
  border: 1px solid var(--glass-border);
  font-size: 0.8rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  animation: orbit-float 5s ease-in-out infinite;
}
@keyframes orbit-float {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-8px);
  }
}
.ob1 {
  top: 0%;
  left: 50%;
  animation-delay: 0s;
}
.ob2 {
  top: 25%;
  right: -10%;
  animation-delay: 0.6s;
}
.ob3 {
  bottom: 5%;
  right: 5%;
  animation-delay: 1.2s;
}
.ob4 {
  bottom: 0%;
  left: 50%;
  animation-delay: 1.8s;
}
.ob5 {
  bottom: 25%;
  left: -10%;
  animation-delay: 2.4s;
}
.ob6 {
  top: 25%;
  left: 0%;
  animation-delay: 3s;
}
.ob7 {
  top: 50%;
  right: -15%;
  animation-delay: 0.3s;
}
.ob8 {
  top: 50%;
  left: -15%;
  animation-delay: 1.5s;
}
.int-cta {
  margin-top: 1rem;
}

/* Insights */
#insights {
  padding: 5rem 4rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.blog-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(59, 130, 246, 0.3);
}
.blog-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.blog-img-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
}
.blog-card:hover .blog-img-inner {
  transform: scale(1.05);
}
.blog-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.b1-bg {
  background: linear-gradient(135deg, #0f172a, #1e1b4b 50%, #312e81);
}
.b2-bg {
  background: linear-gradient(135deg, #0f172a, #164e63 50%, #083344);
}
.b3-bg {
  background: linear-gradient(135deg, #0f172a, #3b0764 50%, #4c1d95);
}
.blog-content {
  padding: 1.25rem;
}
.blog-cat {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}
.cat-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}
.cat-cyan {
  background: rgba(6, 182, 212, 0.15);
  color: #22d3ee;
}
.cat-purple {
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
}
.blog-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.read-time {
  font-size: 0.75rem;
  color: #64748b;
}
.read-more {
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 6px;
  background: transparent;
  color: #60a5fa;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Inter", sans-serif;
}
.read-more:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.6);
}

/* ============================================
   WORKFLOW STEPS (new section, replaces dashboard preview)
============================================ */
#workflow {
  padding: 5rem 4rem;
}
.workflow-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.workflow-rail::before {
  content: "";
  position: absolute;
  top: 84px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(59, 130, 246, 0.4),
    rgba(139, 92, 246, 0.4),
    rgba(6, 182, 212, 0.4),
    rgba(236, 72, 153, 0.4)
  );
  z-index: 0;
}
.wf-step {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.wf-step:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.12);
}
.wf-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #475569;
  margin-bottom: 0.75rem;
}
.wf-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.wf-icon.wf-blue {
  background: rgba(59, 130, 246, 0.15);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}
.wf-icon.wf-purple {
  background: rgba(139, 92, 246, 0.15);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}
.wf-icon.wf-cyan {
  background: rgba(6, 182, 212, 0.15);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}
.wf-icon.wf-pink {
  background: rgba(236, 72, 153, 0.15);
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.2);
}
.wf-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.wf-desc {
  color: #64748b;
  font-size: 0.83rem;
  line-height: 1.6;
}

/* ============================================
   FAQ (new section, replaces dashboard preview)
============================================ */
#faq {
  padding: 5rem 4rem;
}
.faq-list {
  max-width: 720px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open {
  border-color: rgba(59, 130, 246, 0.3);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  background: transparent;
  border: none;
  color: #e2e8f0;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.faq-toggle {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  transition: transform 0.3s;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a {
  max-height: 220px;
}
.faq-a p {
  padding: 0 1.4rem 1.3rem;
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.7;
}

/* Testimonials */
#testimonials {
  padding: 5rem 4rem;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll-track 30s linear infinite;
}
.testimonials-track:hover {
  animation-play-state: paused;
}
@keyframes scroll-track {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.test-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s;
}
.test-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
}
.stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.test-text {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}
.ta1 {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}
.ta2 {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}
.ta3 {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}
.ta4 {
  background: linear-gradient(135deg, #ec4899, #be185d);
}
.ta5 {
  background: linear-gradient(135deg, #10b981, #059669);
}
.ta6 {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.test-name {
  font-weight: 600;
  font-size: 0.88rem;
}
.test-role {
  font-size: 0.75rem;
  color: #64748b;
}

/* Pricing */
#pricing {
  padding: 5rem 4rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.price-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.price-card.popular {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(30, 40, 80, 0.5);
  transform: scale(1.02);
}
.price-card.popular::before {
  content: "Most Popular";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 0 0 10px 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.price-card:hover {
  transform: scale(1.04);
  box-shadow: 0 0 50px rgba(59, 130, 246, 0.15);
}
.price-card.popular:hover {
  transform: scale(1.06);
}
.price-tier {
  font-size: 0.85rem;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.price-amount {
  font-size: 3rem;
  font-weight: 900;
  margin: 0.75rem 0 0.25rem;
  letter-spacing: -2px;
}
.price-period {
  font-size: 0.8rem;
  color: #64748b;
}
.price-divider {
  height: 1px;
  background: var(--glass-border);
  margin: 1.25rem 0;
}
.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #94a3b8;
  padding: 0.35rem 0;
}
.price-features li::before {
  content: "✦";
  color: #3b82f6;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.price-features li.pop::before {
  color: #a78bfa;
}
.price-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Inter", sans-serif;
}
.price-btn.outline {
  border: 1px solid var(--glass-border);
  background: transparent;
  color: #e2e8f0;
}
.price-btn.outline:hover {
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(59, 130, 246, 0.05);
}
.price-btn.filled {
  border: none;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}
.price-btn.filled:hover {
  box-shadow: 0 0 50px rgba(59, 130, 246, 0.5);
  transform: translateY(-1px);
}

/* Footer */
footer {
  padding: 4rem 4rem 2rem;
  border-top: 1px solid var(--glass-border);
  position: relative;
  max-width: 100vw;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.5),
    rgba(139, 92, 246, 0.5),
    transparent
  );
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}
.footer-desc {
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 260px;
}
.newsletter-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.nl-input {
  flex: 1;
  min-width: 0;
  padding: 0.6rem 1rem;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: #e2e8f0;
  font-size: 0.82rem;
  font-family: "Inter", sans-serif;
  outline: none;
  transition: border-color 0.3s;
}
.nl-input:focus {
  border-color: rgba(59, 130, 246, 0.5);
}
.nl-btn {
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  flex-shrink: 0;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 0.5rem;
}
.footer-col a {
  color: #64748b;
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col a:hover {
  color: #94a3b8;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  color: #475569;
  font-size: 0.8rem;
}
.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 34px;
  height: 34px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s;
}
.social-link:hover {
  border-color: rgba(59, 130, 246, 0.4);
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.05);
}

/* Scroll animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animated counter */
.counter {
  display: inline-block;
}

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

/* Disable custom cursor on touch devices */
@media (hover: none), (pointer: coarse) {
  body {
    cursor: auto;
  }
  #cursor,
  #cursor-trail {
    display: none;
  }
}

@media (max-width: 1100px) {
  .workflow-rail {
    grid-template-columns: repeat(2, 1fr);
  }
  .workflow-rail::before {
    display: none;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
  }
  .nav-links,
  .nav-actions {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  #hero {
    padding: 7rem 1.5rem 4rem;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-ctas button {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .hero-trust {
    gap: 1rem;
  }
  .trust-sep {
    display: none;
  }
  #stats {
    padding: 2rem 1.5rem;
    flex-wrap: wrap;
  }
  .stat-item {
    flex: 1 1 40%;
  }
  .stat-item:nth-child(2)::after,
  .stat-item:nth-child(4)::after {
    display: none;
  }
  #features {
    padding: 3rem 1.5rem;
  }
  .bento {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }
  .bc-analytics,
  .bc-ai,
  .bc-security,
  .bc-auto,
  .bc-integrations,
  .bc-reports {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  #integrations,
  #insights,
  #workflow,
  #faq,
  #testimonials,
  #pricing {
    padding: 3rem 1.5rem;
  }
  .workflow-rail {
    grid-template-columns: 1fr;
  }
  .blog-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-card.popular {
    transform: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  footer {
    padding: 3rem 1.5rem 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .int-orbit {
    width: 100%;
    max-width: 340px;
    height: 340px;
  }
  .int-orbit-inner {
    width: 180px;
    height: 180px;
  }
  .orbit-badge {
    font-size: 0.68rem;
    padding: 0.35rem 0.65rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-desc {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  h1.hero-title {
    letter-spacing: -1px;
  }
  .hero-badge {
    font-size: 0.72rem;
    padding: 0.3rem 0.8rem;
  }
  .cta-primary,
  .cta-secondary {
    padding: 0.85rem 1.5rem;
    font-size: 0.88rem;
  }
  .stat-item {
    flex: 1 1 100%;
    max-width: none;
  }
  .stat-item::after {
    display: none !important;
  }
  .pb-row-label {
    font-size: 10.5px;
  }
  .faq-q {
    padding: 1rem 1.1rem;
    font-size: 0.88rem;
  }
  .faq-a p {
    padding: 0 1.1rem 1.1rem;
  }
}
