:root {
  --bg: #030303;
  --surface: #0a0a0a;
  --surface-border: #1a1a1a;
  --text-main: #ffffff;
  --text-strong: #f8fafc;
  --text-dim: #a1a1aa;
  --primary: #6366f1;
  --primary-glow: rgba(99, 102, 241, 0.4);
  --accent-cyan: #22d3ee;
  --accent-indigo: #818cf8;
  --accent-warm: #fb923c;
  --accent-rose: #fb7185;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --nav-height: 72px;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 18% 12%, rgba(129, 140, 248, 0.16), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(251, 146, 60, 0.11), transparent 20%),
    radial-gradient(circle at 80% 82%, rgba(34, 211, 238, 0.1), transparent 24%);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.glow-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: 
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.14), transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(34, 211, 238, 0.1), transparent 35%);
  filter: blur(90px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  border-bottom: 1px solid var(--surface-border);
}

.blurred {
  backdrop-filter: blur(12px);
  background: rgba(3, 3, 3, 0.7);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
}

.logo-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px var(--primary-glow);
  color: #08101f;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.desktop-nav {
  display: flex;
  gap: 32px;
}

.desktop-nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.desktop-nav a:hover {
  color: var(--text-main);
}

.nav-actions {
  display: flex;
  gap: 12px;
}

/* BUTTONS */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent-indigo));
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 10px 24px rgba(99, 102, 241, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.38);
}

.btn-ghost {
  color: var(--text-main);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

/* HERO SECTION */
.hero-section {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}

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

.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-indigo);
  margin-bottom: 24px;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--accent-indigo);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.pulse.pulse-red {
  background: #ef4444;
  animation: pulse-red 2s infinite;
}

.red-pulse-border {
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 9999px;
  animation: border-pulse-red 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(129, 140, 248, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(129, 140, 248, 0); }
  100% { box-shadow: 0 0 0 0 rgba(129, 140, 248, 0); }
}

@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

@keyframes border-pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); border-color: rgba(239, 68, 68, 0.8); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); border-color: rgba(239, 68, 68, 0.3); }
}

h1 {
  font-size: 4rem;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 28%, #d4d4d8 56%, #9ca3af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text span {
  background: linear-gradient(90deg, var(--accent-warm), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lede {
  font-size: 1.16rem;
  color: var(--text-dim);
  max-width: 540px;
  margin-bottom: 28px;
}

.hero-setup-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  background: rgba(34, 211, 238, 0.06);
  color: #cffafe;
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-setup-note code {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 6px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-chips span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-dim);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.stat-card {
  padding: 16px 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(10px);
}

.stat-card strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--text-strong);
}

.stat-card span {
  display: block;
  font-size: 0.83rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* MAGIC PROMPT BOX */
.magic-prompt-box {
  margin-bottom: 24px;
}

.magic-copy {
  margin-bottom: 14px;
}

.magic-title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-indigo);
  margin-bottom: 6px;
}

.magic-subtitle {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.magic-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px;
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.magic-input-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: var(--font-sans);
  outline: none;
}

.sparkle-icon {
  margin-left: 16px;
  color: var(--accent-cyan);
  width: 20px;
  height: 20px;
  font-size: 18px;
}

.btn-magic {
  background: linear-gradient(90deg, var(--primary), var(--accent-indigo));
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

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

.magic-suggestion {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 12px;
  margin-left: 8px;
}

.hero-warning {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(251, 146, 60, 0.22);
  background: linear-gradient(180deg, rgba(251, 146, 60, 0.08), rgba(255, 255, 255, 0.03));
  color: #fde68a;
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-warning i {
  margin-top: 2px;
  color: var(--accent-warm);
  flex: 0 0 auto;
}

.magic-plan {
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.03);
}

.magic-plan-label {
  color: var(--accent-indigo);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.magic-plan-body {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.magic-plan-body span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-dim);
  font-size: 0.84rem;
}

.magic-plan-footer {
  margin-top: 12px;
  color: var(--text-dim);
  font-size: 0.82rem;
}

/* SOCIAL PROOF */
.social-proof {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.social-proof span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.client-logos {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.client-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.client-pill-claude {
  border-color: rgba(255, 115, 115, 0.22);
  background: rgba(255, 115, 115, 0.08);
}

.client-pill-gemini {
  border-color: rgba(99, 102, 241, 0.22);
  background: rgba(99, 102, 241, 0.08);
}

.client-pill-cursor {
  border-color: rgba(34, 211, 238, 0.22);
  background: rgba(34, 211, 238, 0.08);
}

.client-pill-zed {
  border-color: rgba(244, 114, 182, 0.22);
  background: rgba(244, 114, 182, 0.08);
}

/* BROWSER MOCKUP */
.hero-visual {
  position: relative;
  padding: 24px 0;
}

.visual-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.6;
  pointer-events: none;
}

.visual-orb-one {
  top: 0;
  right: 34px;
  width: 120px;
  height: 120px;
  background: rgba(251, 146, 60, 0.22);
}

.visual-orb-two {
  left: -18px;
  bottom: 8px;
  width: 180px;
  height: 180px;
  background: rgba(99, 102, 241, 0.18);
}

.browser-mockup {
  position: relative;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(3, 7, 18, 0.94)),
    #141414;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.6);
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
}

.browser-header {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dots {
  display: flex;
  gap: 6px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.address-bar {
  flex: 1;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.browser-body {
  padding: 20px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.workspace-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 16px;
  min-height: 390px;
}

.workspace-sidebar {
  padding: 8px 0 0;
  display: grid;
  align-content: start;
  gap: 12px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-dim);
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.status-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.status-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.status-card span {
  color: var(--text-dim);
  font-size: 0.82rem;
  line-height: 1.45;
}

.status-card.active {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.12), rgba(255, 255, 255, 0.03));
  border-color: rgba(99, 102, 241, 0.22);
}

.workspace-main {
  display: grid;
  gap: 16px;
}

.tab-groups-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tab-group {
  flex: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 14px;
}

.group-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--text-dim);
}

.group-indigo .group-label { color: var(--accent-indigo); }
.group-cyan .group-label { color: var(--accent-cyan); }

.tab {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.18);
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 0.8rem;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.2;
}

.tab i {
  flex: 0 0 auto;
}

.tab.active {
  background: linear-gradient(180deg, rgba(129, 140, 248, 0.16), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(129, 140, 248, 0.18);
}

.agent-terminal {
  flex: 1;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.95), rgba(0, 0, 0, 0.95));
  border-radius: 22px;
  padding: 18px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.line { margin-bottom: 8px; }
.line.prompt span { color: var(--primary); font-weight: 700; }
.line.info { color: var(--text-dim); }
.line.success { color: #4ade80; }

.cursor {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* REGISTRY SECTION */
.registry-section {
  padding: 100px 0;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.03), transparent);
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.recipe-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.recipe-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.32);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.25);
}

.featured-recipe {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
  border-color: rgba(99, 102, 241, 0.3);
}

.recipe-badge {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-indigo);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.recipe-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.recipe-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-indigo);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.recipe-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.recipe-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 24px;
  min-height: 60px;
}

.recipe-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recipe-stat {
  font-size: 0.8rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

.recipe-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-indigo);
  box-shadow: 0 0 0 4px rgba(129, 140, 248, 0.12);
}

.btn-sm-ghost {
  padding: 8px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: white;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-sm-primary {
  padding: 8px 16px;
  background: var(--primary);
  border: 1px solid transparent;
  color: white;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.btn-sm-primary {
  padding: 8px 16px;
  background: var(--primary);
  border: none;
  color: white;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.registry-cta {
  text-align: center;
  margin-top: 48px;
}

/* COMPARISON */
.comparison-section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.18);
  color: var(--accent-indigo);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.centered {
  text-align: center;
}

.sub-headline {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.comparison-card {
  padding: 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
}

.comparison-card.warm {
  border-color: rgba(99, 102, 241, 0.3);
  background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.05), transparent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.card-icon span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cold .card-icon span { color: #94a3b8; }
.warm .card-icon span { color: var(--accent-warm); }

.comparison-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.comparison-card ul {
  list-style: none;
}

.comparison-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
}

.bullet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 800;
}

.bullet-x {
  color: #fda4af;
  background: rgba(239, 68, 68, 0.1);
}

.bullet-check {
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
}

/* INSTALL */
.install-section {
  padding: 100px 0;
}

.install-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.install-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(99, 102, 241, 0.14);
  color: var(--accent-indigo);
  font-weight: 800;
}

.install-card h3 {
  margin-bottom: 10px;
}

.install-card p {
  color: var(--text-dim);
}

/* SETUP */
.setup-section {
  padding: 0 0 100px;
}

.setup-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}

.setup-checklist {
  margin-top: 24px;
}

.setup-panel {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-title {
  margin-bottom: 0;
}

.panel-subtitle,
.panel-note {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.setup-panel pre {
  white-space: pre-wrap;
  line-height: 1.8;
  padding: 18px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: auto;
}

.setup-steps {
  margin: 8px 0 18px;
  padding-left: 20px;
  display: grid;
  gap: 14px;
  color: var(--text-dim);
}

.setup-steps li {
  padding-left: 8px;
}

.setup-steps strong {
  display: block;
  color: var(--text-main);
  margin-bottom: 4px;
}

.setup-note {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  background: rgba(99, 102, 241, 0.06);
  color: #d8e0ff;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* FEATURES */
.features-section {
  padding: 100px 0;
}

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

.feature-item i {
  color: var(--primary);
  margin-bottom: 20px;
  width: 32px;
  height: 32px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-indigo);
  font-weight: 800;
  font-size: 0.82rem;
}

.feature-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-item p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* SECURITY */
.security-section {
  padding: 100px 0;
  background:
    linear-gradient(180deg, rgba(34, 211, 238, 0.03), transparent 30%),
    radial-gradient(circle at top left, rgba(99, 102, 241, 0.06), transparent 35%);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.security-card {
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.security-card-highlight {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.09), rgba(255, 255, 255, 0.03));
  border-color: rgba(99, 102, 241, 0.25);
}

.security-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-cyan);
}

.security-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.security-card p {
  color: var(--text-dim);
  font-size: 0.94rem;
  margin-bottom: 18px;
}

.security-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.security-list li {
  position: relative;
  padding-left: 18px;
  color: #d4d4d8;
  font-size: 0.9rem;
}

.security-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-cyan);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.supervision-banner {
  margin-top: 32px;
  padding: 22px 24px;
  border-radius: 20px;
  border: 1px solid rgba(251, 146, 60, 0.22);
  background:
    radial-gradient(circle at left top, rgba(251, 146, 60, 0.12), transparent 45%),
    rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 12px;
}

.supervision-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(251, 146, 60, 0.12);
  color: #fdba74;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.supervision-banner p {
  color: #e5e7eb;
  font-size: 0.98rem;
  max-width: 920px;
}

/* PRICING */
.pricing-section {
  padding: 100px 0;
}

.pricing-section .section-header p {
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 18px;
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-toggle-btn {
  border: none;
  background: transparent;
  color: var(--text-dim);
  padding: 10px 16px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.pricing-toggle-btn span {
  color: var(--accent-cyan);
  font-size: 0.82em;
  margin-left: 4px;
}

.pricing-toggle-btn.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
}

.pricing-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 60px;
}

.price-card {
  flex: 1;
  max-width: 380px;
  padding: 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  text-align: center;
  position: relative;
}

.pro-tier {
  border-color: var(--primary);
  background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.1), transparent);
}

.pricing-cards .price-card:nth-child(1) {
  margin-top: 18px;
}

.pricing-cards .price-card:nth-child(3) {
  margin-top: 18px;
}

.price-card .badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--primary);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}

.tier {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.amount {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.amount span {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dim);
}

.billing-note {
  margin-top: -6px;
  margin-bottom: 18px;
  color: var(--text-dim);
  font-size: 0.84rem;
}

.check-list {
  list-style: none;
  text-align: left;
  margin: 32px 0;
}

.check-list li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 800;
}

/* FOOTER CTA */
.final-cta {
  padding: 140px 0;
  text-align: center;
}

.final-cta h2 {
  font-size: 4rem;
  margin-bottom: 48px;
}

.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* FOOTER */
.footer {
  padding: 60px 0;
  border-top: 1px solid var(--surface-border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
}

/* PRIVACY POLICY */
.policy-page {
  padding-top: calc(var(--nav-height) + 56px);
  padding-bottom: 96px;
}

.policy-shell {
  max-width: 860px;
}

.policy-kicker {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(129, 140, 248, 0.22);
  background: rgba(129, 140, 248, 0.08);
  color: var(--accent-indigo);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.policy-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.policy-intro {
  color: var(--text-dim);
  margin-bottom: 32px;
  max-width: 68ch;
}

.policy-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 28px;
  margin-bottom: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.policy-card h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.policy-card p + p {
  margin-top: 12px;
}

.policy-list {
  padding-left: 20px;
  color: var(--text-main);
}

.policy-list li + li {
  margin-top: 10px;
}

.policy-card a {
  color: var(--accent-cyan);
  text-decoration: none;
}

.policy-card a:hover {
  text-decoration: underline;
}

/* REVEAL ANIMATIONS */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-lede { margin: 0 auto 40px; }
  .hero-chips { justify-content: center; }
  .magic-input-wrapper { max-width: 600px; margin: 0 auto; }
  .magic-copy { text-align: center; }
  .hero-stats { grid-template-columns: 1fr; }
  .browser-mockup { transform: none; max-width: 760px; margin: 0 auto; }
  .workspace-shell { grid-template-columns: 1fr; }
  .workspace-sidebar { grid-template-columns: repeat(3, minmax(0, 1fr)); display: grid; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr 1fr; }
  .install-grid,
  .setup-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 3rem; }
  .policy-page { padding-top: calc(var(--nav-height) + 32px); }
  .policy-card { padding: 22px; }
  .pricing-cards { flex-direction: column; align-items: center; }
  .pricing-toggle { width: 100%; justify-content: center; flex-wrap: wrap; }
  .grid-3 { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .desktop-nav { display: none; }
  .nav-actions { display: none; }
  .panel-head { flex-direction: column; align-items: flex-start; }
  .hero-warning { align-items: flex-start; }
  .hero-stats { grid-template-columns: 1fr; }
  .workspace-sidebar { grid-template-columns: 1fr; }
  .tab-groups-preview { grid-template-columns: 1fr; }
  .sub-headline { font-size: 2.2rem; }
  .final-cta h2 { font-size: 2.7rem; }
}
