/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d0d0f;
  --surface: #141417;
  --surface-2: #1c1c20;
  --lime: #c8ff00;
  --lime-dim: rgba(200, 255, 0, 0.12);
  --lime-glow: rgba(200, 255, 0, 0.08);
  --gray-100: #f4f4f5;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--gray-100);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gray-700); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--lime); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 100px 48px 80px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,255,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,255,0,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

.bg-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,255,0,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime-dim);
  border: 1px solid rgba(200,255,0,0.2);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--lime);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--gray-100);
  margin-bottom: 28px;
}

.hero-lede {
  font-size: 18px;
  color: var(--gray-400);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-meta {
  display: flex;
  gap: 40px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--lime);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ===== AGENT DASHBOARD ===== */
.agent-dashboard {
  background: var(--surface);
  border: 1px solid var(--gray-700);
  border-radius: 16px;
  padding: 24px;
  font-size: 13px;
  position: relative;
  overflow: hidden;
}

.agent-dashboard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity: 0.4;
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-700);
}

.dash-logo {
  width: 28px;
  height: 28px;
  background: var(--lime);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 11px;
  color: #0d0d0f;
}

.dash-title {
  font-weight: 600;
  color: var(--gray-300);
  flex: 1;
}

.dash-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--lime);
  font-weight: 500;
}

.status-pulse {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

.dash-workspace {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dash-work-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--surface-2);
  border-radius: 8px;
  border: 1px solid var(--gray-700);
}

.dash-work-item.done {
  opacity: 0.6;
}

.work-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.content-icon { background: rgba(139, 92, 246, 0.15); color: #a78bfa; }
.social-icon { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.email-icon { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.search-icon { background: var(--lime-dim); color: var(--lime); }

.work-body {
  flex: 1;
  min-width: 0;
}

.work-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-300);
  display: block;
  margin-bottom: 6px;
}

.work-bar {
  height: 3px;
  background: var(--gray-700);
  border-radius: 2px;
  overflow: hidden;
}

.work-fill {
  height: 100%;
  background: var(--lime);
  border-radius: 2px;
  transition: width 1s ease;
}

.dash-work-item.done .work-fill {
  background: var(--gray-600);
}

.work-badge {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--lime-dim);
  color: var(--lime);
  flex-shrink: 0;
}

.work-badge.done {
  background: rgba(82, 82, 91, 0.4);
  color: var(--gray-600);
}

.dash-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-700);
  font-size: 11px;
  color: var(--gray-600);
}

/* ===== SECTION SHARED ===== */
.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime);
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--gray-100);
  max-width: 640px;
}

/* ===== CAPABILITIES ===== */
.capabilities {
  padding: 96px 48px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.capabilities .section-headline {
  margin-bottom: 64px;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-700);
  border: 1px solid var(--gray-700);
  border-radius: 16px;
  overflow: hidden;
}

.cap-card {
  background: var(--surface);
  padding: 40px 36px;
  transition: background 0.2s;
}

.cap-card:hover {
  background: var(--surface-2);
}

.cap-icon {
  width: 44px;
  height: 44px;
  background: var(--lime-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--lime);
}

.cap-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--gray-100);
  margin-bottom: 12px;
}

.cap-card p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.howitworks {
  padding: 96px 48px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.hiw-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hiw-glow {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(200,255,0,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.howitworks .section-label,
.howitworks .section-headline {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.howitworks .section-headline {
  margin-bottom: 72px;
}

.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto 64px;
  align-items: start;
}

.step {
  padding: 0 24px;
  text-align: center;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--lime);
  opacity: 0.3;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--gray-100);
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 20px;
  position: relative;
}

.connector-line {
  width: 60px;
  height: 1px;
  background: var(--gray-700);
  margin-bottom: 8px;
}

.connector-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.4;
}

.hiw-quote {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid var(--gray-700);
}

.hiw-quote blockquote {
  font-size: 18px;
  font-style: italic;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 16px;
}

.hiw-quote cite {
  font-size: 13px;
  color: var(--gray-600);
  font-style: normal;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 120px 48px;
  background: var(--bg);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime);
  margin-bottom: 24px;
}

.manifesto-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--gray-100);
  margin-bottom: 48px;
}

.manifesto-body p {
  font-size: 17px;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 24px;
}

.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-700);
  border: 1px solid var(--gray-700);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 64px;
}

.mstat {
  background: var(--surface);
  padding: 36px 28px;
}

.mstat-val {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--lime);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.mstat-desc {
  display: block;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 48px;
  background: var(--surface);
  text-align: center;
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--gray-100);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 64px;
}

.closing-cta-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-main {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 56px;
  color: var(--lime);
  letter-spacing: -0.04em;
}

.price-sub {
  font-size: 18px;
  color: var(--gray-600);
}

.cta-note {
  font-size: 14px;
  color: var(--gray-600);
  max-width: 400px;
  line-height: 1.6;
}

.cta-link {
  color: var(--lime);
  text-decoration: none;
  font-weight: 500;
}

.cta-link:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.footer {
  padding: 64px 48px 32px;
  background: var(--bg);
  border-top: 1px solid var(--gray-700);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--gray-100);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray-600);
  max-width: 280px;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-head {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gray-100); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--gray-700);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray-700);
}

/* ===== PRICING ===== */
.pricing {
  padding: 96px 48px;
  background: var(--bg);
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-sub {
  font-size: 16px;
  color: var(--gray-400);
  max-width: 540px;
  margin-bottom: 56px;
  line-height: 1.6;
}

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

.price-card {
  background: var(--surface);
  border: 1px solid var(--gray-700);
  border-radius: 16px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.price-card:hover {
  border-color: var(--gray-600);
  transform: translateY(-2px);
}

.price-card.popular {
  border-color: var(--lime);
  background: var(--surface-2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: #0d0d0f;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pc-header { display: flex; flex-direction: column; gap: 6px; }

.pc-tier {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 8px 0;
}

.pc-amount {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 44px;
  color: var(--gray-100);
  letter-spacing: -0.04em;
}

.pc-period {
  font-size: 16px;
  color: var(--gray-600);
}

.pc-tagline {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.4;
}

.pc-contacts {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-400);
  padding: 10px 14px;
  background: var(--surface-2);
  border-radius: 8px;
}

.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pc-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.4;
}

.check-icon {
  color: var(--lime);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pc-cta {
  display: block;
  width: 100%;
  padding: 13px 20px;
  background: var(--surface-2);
  border: 1px solid var(--gray-700);
  border-radius: 8px;
  color: var(--gray-300);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-align: center;
}

.pc-cta:hover {
  background: var(--gray-700);
  color: var(--gray-100);
}

.pc-cta.primary {
  background: var(--lime);
  border-color: var(--lime);
  color: #0d0d0f;
}

.pc-cta.primary:hover {
  background: #d4ff1a;
  border-color: #d4ff1a;
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { padding: 80px 24px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .hero-meta { gap: 24px; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-row { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }
  .step { text-align: left; padding: 0; }
  .manifesto-stats { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .capabilities, .howitworks, .manifesto, .closing, .footer, .pricing { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 600px) {
  .cap-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; gap: 20px; }
  .stat-value { font-size: 22px; }
}
