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

:root {
  --white: #ffffff;
  --gray-25: #fcfcfd;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gray-950: #030712;

  --indigo-50: #eef2ff;
  --indigo-100: #e0e7ff;
  --indigo-200: #c7d2fe;
  --indigo-300: #a5b4fc;
  --indigo-400: #818cf8;
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;
  --indigo-700: #4338ca;

  --violet-50: #f5f3ff;
  --violet-100: #ede9fe;
  --violet-400: #a78bfa;
  --violet-500: #8b5cf6;
  --violet-600: #7c3aed;

  --purple-500: #a855f7;

  --emerald-50: #ecfdf5;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;

  --amber-50: #fffbeb;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;

  --rose-50: #fff1f2;
  --rose-400: #fb7185;
  --rose-500: #f43f5e;

  --cyan-50: #ecfeff;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;

  --blue-50: #eff6ff;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--indigo-600) 0%,
    var(--violet-500) 50%,
    var(--purple-500) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================
           ANIMATED BACKGROUND
        ================================================ */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    var(--gray-25) 0%,
    var(--white) 50%,
    var(--gray-50) 100%
  );
}

.bg-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbFloat 20s ease-in-out infinite;
}

.bg-gradient-orb-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.15),
    rgba(139, 92, 246, 0.1)
  );
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.bg-gradient-orb-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1),
    rgba(168, 85, 247, 0.08)
  );
  bottom: -150px;
  left: -100px;
  animation-delay: -7s;
}

.bg-gradient-orb-3 {
  width: 400px;
  height: 400px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.08),
    rgba(99, 102, 241, 0.1)
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(20px, 30px) scale(1.02);
  }
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(99, 102, 241, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.bg-noise {
  position: absolute;
  inset: 0;
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ================================================
           HEADER
        ================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.header-blur {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.header.scrolled .header-blur {
  background: rgba(255, 255, 255, 0.85);
  border-bottom-color: var(--gray-200);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--gray-900);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(
    135deg,
    var(--indigo-500) 0%,
    var(--violet-500) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
}

.logo-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 50%
  );
}

.logo-text {
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav-links {
  display: flex;
  gap: 0.5rem;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-links a:hover {
  color: var(--gray-900);
  background: var(--gray-100);
}

.nav-cta {
  display: flex;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
}

.btn-ghost:hover {
  background: var(--gray-100);
  color: var(--gray-900);
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--indigo-500) 0%,
    var(--violet-500) 100%
  );
  color: white;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 50%
  );
  border-radius: inherit;
}

.btn-secondary {
  background: var(--white);
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.btn-secondary:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-large {
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  border-radius: 12px;
}

.btn-xl {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 14px;
}

/* ================================================
           HERO SECTION
        ================================================ */
.hero {
  padding: 11rem 0 7rem;
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-text {
  max-width: 580px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.5rem 0.5rem 0.75rem;
  background: linear-gradient(135deg, var(--indigo-50), var(--violet-50));
  border: 1px solid var(--indigo-100);
  border-radius: 100px;
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.6s ease;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald-500);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.1);
  }
}

.hero-eyebrow-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--indigo-700);
}

.hero-eyebrow-badge {
  padding: 0.25rem 0.625rem;
  background: linear-gradient(135deg, var(--indigo-500), var(--violet-500));
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
  animation: fadeInUp 0.6s ease 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-metrics {
  display: flex;
  gap: 3.5rem;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-metric {
  position: relative;
  padding-left: 1rem;
}

.hero-metric::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 3px;
  background: linear-gradient(180deg, var(--indigo-400), var(--violet-400));
  border-radius: 2px;
}

.hero-metric-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.hero-metric-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse,
    rgba(99, 102, 241, 0.12) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.hero-window {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.02),
    0 12px 24px rgba(0, 0, 0, 0.06), 0 48px 80px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.5s ease;
}

.hero-window:hover {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.window-chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.window-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transition: transform 0.2s;
}

.window-dot:hover {
  transform: scale(1.2);
}
.window-dot.red {
  background: #ff5f57;
}
.window-dot.yellow {
  background: #ffbd2e;
}
.window-dot.green {
  background: #28c840;
}

.window-url {
  flex: 1;
  margin-left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--gray-500);
  font-family: "JetBrains Mono", monospace;
}

.window-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 380px;
}

.window-sidebar {
  background: var(--gray-900);
  padding: 1.25rem;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem;
  margin-bottom: 1.25rem;
}

.sidebar-brand-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--indigo-500), var(--violet-500));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-brand-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--gray-400);
  transition: all 0.2s;
}

.sidebar-item:hover {
  color: var(--gray-200);
  background: rgba(255, 255, 255, 0.05);
}
.sidebar-item.active {
  background: rgba(99, 102, 241, 0.2);
  color: var(--indigo-300);
}
.sidebar-item svg {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

.window-main {
  background: var(--gray-50);
  padding: 1.5rem;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.main-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
}

.main-actions {
  display: flex;
  gap: 0.5rem;
}

.main-btn {
  padding: 0.5rem 0.875rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
}

.main-btn.primary {
  background: linear-gradient(135deg, var(--indigo-500), var(--violet-500));
  border: none;
  color: white;
}

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

.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1rem;
}

.stat-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.stat-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card-icon.indigo {
  background: var(--indigo-50);
  color: var(--indigo-500);
}
.stat-card-icon.emerald {
  background: var(--emerald-50);
  color: var(--emerald-500);
}
.stat-card-icon.amber {
  background: var(--amber-50);
  color: var(--amber-500);
}

.stat-card-badge {
  padding: 0.125rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  border-radius: 100px;
}

.stat-card-badge.up {
  background: var(--emerald-50);
  color: var(--emerald-600);
}
.stat-card-badge.down {
  background: var(--rose-50);
  color: var(--rose-500);
}

.stat-card-value {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.stat-card-label {
  font-size: 0.6875rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.chart-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1rem;
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.chart-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
}

.chart-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background: var(--emerald-50);
  border-radius: 100px;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--emerald-600);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.375rem;
  height: 80px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--indigo-400), var(--indigo-500));
  border-radius: 4px 4px 0 0;
  transition: height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.chart-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 4px 4px 0 0;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.02);
  animation: float 5s ease-in-out infinite;
}

.floating-element-1 {
  top: 5%;
  right: -30px;
  animation-delay: 0s;
}

.floating-element-2 {
  bottom: 10%;
  left: -40px;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

.floating-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.625rem;
}

.floating-icon.gradient-purple {
  background: linear-gradient(135deg, var(--indigo-500), var(--violet-500));
  color: white;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.floating-icon.gradient-emerald {
  background: linear-gradient(135deg, var(--emerald-400), var(--emerald-500));
  color: white;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.floating-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 0.125rem;
}
.floating-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

/* ================================================
           LOGOS SECTION
        ================================================ */
.logos {
  padding: 5rem 0;
  border-top: 1px solid var(--gray-100);
  background: linear-gradient(180deg, var(--gray-50), var(--white));
}

.logos-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

.logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-300);
  transition: color 0.3s;
}

.logo-item:hover {
  color: var(--gray-500);
}
.logo-item svg {
  width: 28px;
  height: 28px;
}

/* ================================================
           FEATURES SECTION
        ================================================ */
.features {
  padding: 8rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: var(--indigo-50);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--indigo-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray-500);
  line-height: 1.7;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--indigo-500), var(--violet-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  border-color: var(--indigo-200);
  box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.15);
  transform: translateY(-8px);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon-wrapper {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  z-index: 1;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-icon-glow {
  position: absolute;
  inset: -8px;
  border-radius: 20px;
  opacity: 0.3;
  filter: blur(12px);
  z-index: 0;
}

.feature-icon.indigo {
  background: linear-gradient(135deg, var(--indigo-500), var(--indigo-600));
}
.feature-icon.indigo + .feature-icon-glow {
  background: var(--indigo-500);
}

.feature-icon.violet {
  background: linear-gradient(135deg, var(--violet-500), var(--violet-600));
}
.feature-icon.violet + .feature-icon-glow {
  background: var(--violet-500);
}

.feature-icon.emerald {
  background: linear-gradient(135deg, var(--emerald-400), var(--emerald-500));
}
.feature-icon.emerald + .feature-icon-glow {
  background: var(--emerald-500);
}

.feature-icon.amber {
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
}
.feature-icon.amber + .feature-icon-glow {
  background: var(--amber-500);
}

.feature-icon.cyan {
  background: linear-gradient(135deg, var(--cyan-400), var(--cyan-500));
}
.feature-icon.cyan + .feature-icon-glow {
  background: var(--cyan-500);
}

.feature-icon.rose {
  background: linear-gradient(135deg, var(--rose-400), var(--rose-500));
}
.feature-icon.rose + .feature-icon-glow {
  background: var(--rose-500);
}

.feature-icon.blue {
  background: linear-gradient(135deg, var(--blue-400), var(--blue-500));
}
.feature-icon.blue + .feature-icon-glow {
  background: var(--blue-500);
}

.feature-icon.purple {
  background: linear-gradient(135deg, var(--violet-400), var(--purple-500));
}
.feature-icon.purple + .feature-icon-glow {
  background: var(--purple-500);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.625rem;
  letter-spacing: -0.02em;
}

.feature-description {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  padding: 0.25rem 0.625rem;
  background: var(--gray-100);
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gray-600);
}

/* ================================================
           BENTO SHOWCASE
        ================================================ */
.showcase {
  padding: 5rem 0 8rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

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

.bento-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 2rem;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.bento-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.bento-card-xl {
  grid-column: span 8;
  padding: 2.5rem;
}
.bento-card-tall {
  grid-column: span 4;
  grid-row: span 2;
}
.bento-card-wide {
  grid-column: span 6;
}

.bento-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--indigo-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.875rem;
}

.bento-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.625rem;
  letter-spacing: -0.02em;
}

.bento-description {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Code Block */
.code-block {
  background: var(--gray-900);
  border-radius: 16px;
  overflow: hidden;
}

.code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  background: var(--gray-800);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.code-dots {
  display: flex;
  gap: 0.375rem;
}

.code-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.code-dots span:nth-child(1) {
  background: #ff5f57;
}
.code-dots span:nth-child(2) {
  background: #ffbd2e;
}
.code-dots span:nth-child(3) {
  background: #28c840;
}

.code-filename {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: var(--gray-400);
}

.code-content {
  padding: 1.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  line-height: 1.9;
  overflow-x: auto;
  white-space: pre;
  color: #e5e7eb;
}

.code-content .comment {
  color: #6b7280;
}
.code-content .keyword {
  color: #c084fc;
}
.code-content .function {
  color: #67e8f9;
}
.code-content .string {
  color: #86efac;
}
.code-content .variable {
  color: #fcd34d;
}
.code-content .operator {
  color: #f472b6;
}

/* Stats Bento */
.bento-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.bento-stat {
  background: var(--gray-50);
  border-radius: 14px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s;
}

.bento-stat:hover {
  background: var(--indigo-50);
}

.bento-stat-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.bento-stat-value span {
  color: var(--indigo-500);
}

.bento-stat-label {
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Theme Cards */
.theme-cards {
  display: flex;
  gap: 1rem;
}

.theme-card {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--gray-200);
  transition: all 0.3s;
  cursor: pointer;
}

.theme-card:hover {
  border-color: var(--indigo-300);
  transform: translateY(-4px);
}

.theme-card-preview {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-card.dark .theme-card-preview {
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
}
.theme-card.light .theme-card-preview {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}
.theme-card.nova .theme-card-preview {
  background: linear-gradient(135deg, #eef2ff, #c7d2fe);
}

.theme-card-label {
  padding: 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  text-align: center;
  background: var(--gray-50);
}

/* Block Grid */
.block-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.625rem;
}

.block-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 0.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all 0.2s;
}

.block-item:hover {
  background: var(--indigo-50);
  border-color: var(--indigo-200);
  color: var(--indigo-700);
  transform: translateY(-2px);
}

.block-item svg {
  color: var(--gray-500);
  transition: color 0.2s;
}

.block-item:hover svg {
  color: var(--indigo-500);
}

.block-item.new {
  position: relative;
}

.block-item.new::after {
  content: "NEW";
  position: absolute;
  top: -6px;
  right: -6px;
  padding: 0.1rem 0.35rem;
  background: linear-gradient(135deg, var(--emerald-400), var(--emerald-500));
  color: white;
  font-size: 0.45rem;
  font-weight: 700;
  border-radius: 100px;
}

/* Field Tags */
.field-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.field-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--gray-100);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all 0.2s;
}

.field-tag svg {
  color: var(--gray-400);
  flex-shrink: 0;
}

.field-tag:hover {
  background: var(--indigo-100);
  color: var(--indigo-700);
  transform: translateY(-2px);
}

.field-tag:hover svg {
  color: var(--indigo-500);
}

/* SEO Features Grid */
.seo-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.seo-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: all 0.2s;
}

.seo-feature-item:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.seo-feature-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--indigo-500), var(--violet-500));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.seo-feature-title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gray-800);
  margin-bottom: 0.125rem;
}

.seo-feature-desc {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

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

/* ================================================
           COMPARISON TABLE
        ================================================ */
.comparison {
  padding: 8rem 0;
}

.comparison-table {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.comparison-header-cell {
  padding: 1.5rem;
  text-align: center;
}

.comparison-header-cell:first-child {
  text-align: left;
}

.comparison-header-cell.highlight {
  background: linear-gradient(135deg, var(--indigo-500), var(--violet-500));
  color: white;
}

.comparison-product {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-800);
}

.comparison-header-cell.highlight .comparison-product {
  color: white;
}

.comparison-tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  margin-top: 0.375rem;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  border-bottom: 1px solid var(--gray-100);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-cell {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-cell:first-child {
  justify-content: flex-start;
}

.comparison-feature {
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.comparison-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-check.yes {
  background: var(--emerald-50);
  color: var(--emerald-500);
}

.comparison-check.no {
  background: var(--gray-100);
  color: var(--gray-400);
}

.comparison-check.highlight {
  background: var(--indigo-100);
  color: var(--indigo-500);
}

/* ================================================
           CTA SECTION
        ================================================ */
.cta {
  padding: 8rem 0;
}

.cta-card {
  background: linear-gradient(
    135deg,
    var(--gray-900) 0%,
    #1a1a2e 50%,
    var(--gray-900) 100%
  );
  border-radius: 32px;
  padding: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at 20% 20%,
      rgba(99, 102, 241, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 80%,
      rgba(139, 92, 246, 0.15) 0%,
      transparent 50%
    );
}

.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.cta p {
  font-size: 1.25rem;
  color: var(--gray-400);
  margin-bottom: 3rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.cta .btn-primary {
  background: linear-gradient(135deg, var(--indigo-400), var(--violet-400));
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.cta .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ================================================
           FOOTER
        ================================================ */
.footer {
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--gray-200);
}

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

.footer-brand p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-top: 1.25rem;
  max-width: 320px;
}

.footer-links h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gray-900);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--indigo-600);
}

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

.footer-copyright {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 10px;
  color: var(--gray-600);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--indigo-500);
  color: white;
  transform: translateY(-2px);
}

/* ================================================
           RESPONSIVE
        ================================================ */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .hero-visual {
    order: -1;
  }
  .hero-window {
    transform: none;
  }
  .hero-window:hover {
    transform: none;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card-xl,
  .bento-card-tall,
  .bento-card-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .comparison-table {
    overflow-x: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .mobile-menu {
    display: flex;
  }
  .hero {
    padding: 9rem 0 5rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-description {
    font-size: 1.0625rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-metrics {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .section-title {
    font-size: 2.25rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .cta-card {
    padding: 3rem 1.5rem;
  }
  .cta h2 {
    font-size: 2.25rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

.mobile-menu {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: var(--gray-700);
}

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