:root {
  --bg: #0A0A0F;
  --bg-2: #111118;
  --fg: #F4F4F7;
  --fg-muted: #9B9BAD;
  --accent: #6C3BF5;
  --accent-bright: #8B5CF6;
  --accent-teal: #22D3EE;
  --accent-glow: rgba(108, 59, 245, 0.25);
  --surface: #13131A;
  --surface-2: #1A1A24;
  --border: rgba(255,255,255,0.07);
  --border-bright: rgba(255,255,255,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
.nav {
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.logo-mark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--accent), #A855F7);
  color: white;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  box-shadow: 0 0 20px var(--accent-glow);
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav-cta {
  background: var(--accent);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.nav-cta:hover { background: var(--accent-bright); box-shadow: 0 0 20px var(--accent-glow); }

/* HERO */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.25;
  filter: saturate(0.6);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(108,59,245,0.15) 0%, transparent 70%),
    linear-gradient(to bottom, transparent 50%, var(--bg) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
  width: 100%;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-2);
  border: 1px solid var(--border-bright);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22D3EE;
  box-shadow: 0 0 8px #22D3EE;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-bright), #C084FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 3rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--accent);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 30px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(108,59,245,0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--fg-muted);
  padding: 0.85rem 1.5rem;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: var(--border-bright);
  color: var(--fg);
}

/* AGENT CARD (inside hero) */
.hero-agent {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}
.agent-card {
  background: var(--surface);
  border: 1px solid var(--border-bright);
  color: #F9FAFB;
  border-radius: 1.25rem;
  padding: 1.75rem 2rem;
  width: 100%;
  max-width: 560px;
  box-shadow:
    0 0 0 1px rgba(108,59,245,0.08),
    0 30px 80px rgba(0,0,0,0.5);
}
.agent-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.agent-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22D3EE;
  box-shadow: 0 0 8px #22D3EE;
  flex-shrink: 0;
}
.agent-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  flex: 1;
}
.agent-status {
  font-size: 0.7rem;
  background: rgba(34,211,238,0.12);
  color: #22D3EE;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-weight: 600;
}
.agent-log { margin-bottom: 1.25rem; }
.log-entry {
  font-size: 0.8rem;
  color: rgba(249,250,251,0.65);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-family: 'DM Sans', monospace;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.log-time {
  color: var(--accent-teal);
  font-weight: 500;
  flex-shrink: 0;
  font-size: 0.75rem;
}
.agent-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}
.agent-stat {
  background: var(--surface-2);
  border-radius: 0.6rem;
  padding: 0.75rem 1rem;
  text-align: center;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent-teal);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-top: 0.2rem;
  line-height: 1.3;
}

/* FEATURES */
.features {
  padding: 6rem 2rem;
  background: var(--bg-2);
}
.features-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-bright);
  display: block;
  margin-bottom: 0.75rem;
}
.section-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 3.5rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem 2.25rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--accent-glow);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon-wrap {
  width: 3rem;
  height: 3rem;
  background: var(--surface-2);
  border: 1px solid var(--border-bright);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent-bright);
}
.feature-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.feature-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-teal);
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 0.3rem;
  margin-bottom: 0.75rem;
}

/* PRICING */
.pricing {
  padding: 6rem 2rem;
}
.pricing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s;
}
.pricing-card.featured {
  border-color: var(--accent-bright);
  box-shadow: 0 0 60px var(--accent-glow);
}
.pricing-card.featured::before {
  content: 'EARLY ACCESS';
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
}
.pricing-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -0.03em;
  color: var(--fg);
  display: block;
  line-height: 1;
}
.pricing-period {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 400;
  display: block;
  margin-top: 0.25rem;
}
.pricing-card-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}
.pricing-card-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pricing-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-features li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='8' fill='%2322D3EE' fill-opacity='.15'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%2322D3EE' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  flex-shrink: 0;
}
.pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--surface-2);
  color: var(--fg);
  padding: 0.85rem;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s;
  cursor: pointer;
}
.pricing-cta:hover {
  border-color: var(--accent-bright);
  color: white;
}
.pricing-cta.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.pricing-cta.primary:hover {
  background: var(--accent-bright);
  box-shadow: 0 0 30px var(--accent-glow);
}

/* WAITLIST */
.waitlist {
  padding: 5rem 2rem;
  background: var(--bg-2);
  text-align: center;
}
.waitlist-inner { max-width: 600px; margin: 0 auto; }
.waitlist-form {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.waitlist-input {
  flex: 1;
  min-width: 240px;
  background: var(--surface);
  border: 1px solid var(--border-bright);
  color: var(--fg);
  padding: 0.85rem 1.25rem;
  border-radius: 0.6rem;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-input::placeholder { color: var(--fg-muted); }
.waitlist-input:focus { border-color: var(--accent-bright); }
.waitlist-submit {
  background: var(--accent);
  color: white;
  padding: 0.85rem 1.75rem;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.waitlist-submit:hover {
  background: var(--accent-bright);
  box-shadow: 0 0 20px var(--accent-glow);
}
.waitlist-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 1rem;
}

/* CLOSING CTA */
.closing {
  padding: 5rem 2rem 6rem;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--fg), var(--fg-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
}

/* FOOTER */
.footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  background: linear-gradient(135deg, var(--accent), #A855F7);
  color: white;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.35rem;
}
.footer-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { min-height: 70vh; }
  .hero-content { padding: 3rem 1.25rem 4rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .agent-stats { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .waitlist-form { flex-direction: column; }
  .waitlist-input { min-width: 100%; }
}