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

:root {
  --white: #ffffff;
  --off: #f7f8fc;
  --light: #eef1f8;
  --border: #e2e6f0;
  --black: #08090f;
  --dark: #111320;
  --muted: #6b7280;
  --blue: #1a56ff;
  --blue-light: #e8edff;
  --blue-mid: #4f75ff;
  --cyan: #00d4ff;
  --live: #10b981;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* =========================
   HERO
========================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 40px 100px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(26,86,255,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(0,212,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
  pointer-events: none;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 12px rgba(26,86,255,0.08);
}

.hero-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: blink 2s infinite;
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -3px;
  color: var(--dark);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero h1 .highlight {
  color: var(--blue);
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px;
  opacity: 0.4;
}

.hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 48px;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 8px 32px rgba(26,86,255,0.3);
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

.btn-secondary {
  background: var(--white);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  border: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  text-decoration: none;
}

/* =========================
   TRUST BAR
========================= */
.trust-bar {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px clamp(1rem, 4vw, 64px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 3vw, 60px);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon { font-size: 18px; }

.trust-text {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

.trust-text strong {
  color: var(--dark);
  font-weight: 500;
}

/* =========================
   PROBLEM
========================= */
.problem {
  padding: clamp(60px, 8vw, 120px) clamp(1.5rem, 6vw, 64px);
  background: var(--white);
}

.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  font-weight: 500;
}

.problem h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--dark);
  margin-bottom: 56px;
  max-width: 540px;
  line-height: 1.15;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 1200px;
}

.problem-card {
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 40px);
  border-right: 1px solid var(--border);
  position: relative;
  background: var(--white);
}

.problem-card:last-child { border-right: none; }

.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.problem-card:nth-child(1)::before { background: linear-gradient(90deg, var(--blue), var(--blue-mid)); }
.problem-card:nth-child(2)::before { background: linear-gradient(90deg, var(--cyan), #00a8cc); }
.problem-card:nth-child(3)::before { background: linear-gradient(90deg, #f97316, #fb923c); }

.problem-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.problem-card:nth-child(1) .problem-tag { color: var(--blue); }
.problem-card:nth-child(2) .problem-tag { color: #00a8cc; }
.problem-card:nth-child(3) .problem-tag { color: #f97316; }

.problem-card p {
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
}

.problem-card strong {
  color: var(--dark);
  font-weight: 500;
}

/* =========================
   TURN
========================= */
.turn {
  background: var(--dark);
  padding: clamp(48px, 6vw, 80px) clamp(1.5rem, 6vw, 64px);
  text-align: center;
}

.turn p {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
}

.turn p span { color: var(--cyan); }

/* =========================
   AGENTS
========================= */
.agents {
  padding: clamp(60px, 8vw, 120px) clamp(1.5rem, 6vw, 64px);
  background: var(--off);
}

.agents-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.agents-head h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--dark);
  line-height: 1.1;
}

.agents-head > p {
  color: var(--muted);
  font-size: 15px;
  max-width: 300px;
  line-height: 1.6;
  font-weight: 300;
}

/* =========================
   CORE AGENT SPOTLIGHT
========================= */
.core-agent-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: 20px;
  padding: clamp(32px, 5vw, 56px);
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(26,86,255,0.1);
}

.core-agent-spotlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.core-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--live);
  font-weight: 600;
  margin-bottom: 16px;
}

.status-dot-live {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--live);
  animation: pulse 2s infinite;
  flex-shrink: 0;
  display: inline-block;
}

.core-agent-left h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.core-agent-left p {
  font-size: clamp(13px, 1.5vw, 15px);
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
}

.btn-core {
  display: inline-flex;
  align-items: center;
  background: var(--blue);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 6px 24px rgba(26,86,255,0.25);
}

.btn-core:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

/* Flow steps */
.core-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 18px;
  transition: all 0.2s;
}

.flow-step:hover {
  border-color: var(--blue);
  background: var(--blue-light);
}

.flow-step-last {
  border-color: rgba(16,185,129,0.3);
  background: rgba(16,185,129,0.04);
}

.flow-num {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  flex-shrink: 0;
  min-width: 24px;
}

.flow-step-last .flow-num { color: var(--live); }

.flow-text {
  font-size: 13px;
  color: var(--dark);
  font-weight: 400;
  line-height: 1.4;
}

.flow-arrow {
  text-align: center;
  color: var(--border);
  font-size: 14px;
  padding: 4px 0;
}

/* =========================
   AGENTS GRID
========================= */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

.card-link:hover { text-decoration: none; }

.agent-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(24px, 3vw, 36px) clamp(20px, 3vw, 32px);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.agent-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26,86,255,0.1);
}

.agent-card.featured {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(26,86,255,0.12);
}

.agent-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.agent-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  color: var(--light);
  line-height: 1;
  margin-bottom: 16px;
}

.agent-card.featured .agent-num { color: var(--blue-light); }

.agent-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
  font-weight: 500;
}

.status-live {
  background: rgba(16,185,129,0.08);
  color: var(--live);
  border: 1px solid rgba(16,185,129,0.25);
}

.status-soon {
  background: var(--light);
  color: var(--muted);
  border: 1px solid var(--border);
}

.status-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-live .status-dot {
  background: var(--live);
  animation: pulse 2s infinite;
}

.status-soon .status-dot { background: #ccc; }

.agent-name {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.agent-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* =========================
   FOR SECTION
========================= */
.for-section {
  padding: clamp(60px, 8vw, 120px) clamp(1.5rem, 6vw, 64px);
  background: var(--white);
}

.for-section > .section-label { text-align: center; }

.for-section > h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  text-align: center;
  margin-bottom: 56px;
  color: var(--dark);
}

.for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.for-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 40px);
  background: var(--white);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.for-card:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 48px rgba(26,86,255,0.08);
  transform: translateY(-2px);
}

.for-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.for-card:nth-child(1) .for-icon-wrap { background: var(--blue-light); }
.for-card:nth-child(2) .for-icon-wrap { background: rgba(0,212,255,0.1); }
.for-card:nth-child(3) .for-icon-wrap { background: rgba(249,115,22,0.08); }

.for-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.for-card > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
  font-weight: 300;
}

.for-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 20px;
}

.for-points {
  list-style: none;
  padding: 0; margin: 0;
}

.for-points li {
  font-size: 13px;
  color: var(--muted);
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.for-points li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 600;
  flex-shrink: 0;
}

/* =========================
   INTELLIGENCE SECTION
========================= */
.intelligence {
  background: var(--dark);
  padding: clamp(60px, 8vw, 120px) clamp(1.5rem, 6vw, 64px);
  position: relative;
  overflow: hidden;
}

.intelligence::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: min(800px, 90vw); height: 600px;
  background: radial-gradient(ellipse, rgba(26,86,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.intelligence-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.intelligence .section-label {
  color: var(--cyan);
  margin-bottom: 20px;
}

.intelligence h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 28px;
}

.intelligence h2 span { color: var(--cyan); }

.intelligence > .intelligence-inner > p {
  font-size: clamp(14px, 1.6vw, 16px);
  color: #8899bb;
  line-height: 1.8;
  font-weight: 300;
  max-width: 720px;
  margin: 0 auto 20px;
}

.intel-result {
  font-size: clamp(14px, 1.6vw, 16px);
  color: rgba(255,255,255,0.7) !important;
  margin-bottom: 48px !important;
}

.intel-result strong { color: var(--cyan); }

.intel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.intel-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.2s;
}

.intel-stat:hover {
  border-color: rgba(26,86,255,0.4);
  background: rgba(26,86,255,0.08);
}

.intel-stat-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(26,86,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--cyan);
  flex-shrink: 0;
}

.intel-stat-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.intel-stat-text strong {
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
  font-family: 'Syne', sans-serif;
}

.intel-stat-text span {
  font-size: 12px;
  color: #6b7a99;
  font-weight: 300;
  line-height: 1.5;
}

/* =========================
   INTEGRATE
========================= */
.integrate {
  background: var(--off);
  padding: clamp(60px, 8vw, 100px) clamp(1.5rem, 6vw, 64px);
}

.integrate-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.integrate-inner h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--dark);
  margin-bottom: 16px;
  margin-top: 12px;
}

.integrate-inner > div > p {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

.integrate-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.integrate-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.2s;
}

.integrate-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(26,86,255,0.08);
  transform: translateX(4px);
}

.int-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--blue-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.int-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  font-family: 'Syne', sans-serif;
}

.int-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

/* =========================
   BETA CTA
========================= */
.beta-cta {
  background: var(--dark);
  padding: clamp(80px, 10vw, 140px) clamp(1.5rem, 6vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.beta-cta::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: min(700px, 90vw); height: 500px;
  background: radial-gradient(ellipse, rgba(26,86,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.beta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(26,86,255,0.4);
  background: rgba(26,86,255,0.08);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b9fff;
  margin-bottom: 36px;
  position: relative;
}

.beta-cta h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 24px;
  position: relative;
}

.beta-cta h2 span { color: var(--cyan); }

.beta-cta > p {
  font-size: clamp(15px, 2vw, 17px);
  color: #8899bb;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
  font-weight: 300;
  position: relative;
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  position: relative;
  transition: all 0.2s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.beta-cta small {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  color: #445;
  position: relative;
}

/* =========================
   FOOTER
========================= */
.footer {
  background-color: #080f1e;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2rem);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}

.header-footer, .platform, .Resources, .connect { min-width: 160px; }

.header-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
  max-width: 240px;
}

.header-footer p {
  margin: 0; line-height: 1.5;
  opacity: 0.5; font-size: 0.9rem; font-weight: 300;
}

.platform, .Resources { display: flex; flex-direction: column; gap: 1rem; }
.platform a.p1, .Resources a.r1 {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
}
.platform a.p1:hover, .Resources a.r1:hover { color: white; text-decoration: none; }
.platform a.p1.active, .Resources a.r1.active { color: var(--cyan); opacity: 1; }

.connect { display: flex; flex-direction: column; gap: 0.75rem; }
.connect-title { margin: 0; font-weight: 600; color: var(--blue); }
.connect-icons { display: flex; gap: 1rem; flex-wrap: wrap; }
.connect-icons a {
  display: inline-flex; align-items: center;
  text-decoration: none; color: var(--blue);
  transition: all 0.2s;
}
.connect-icons a:hover { color: var(--cyan); transform: translateY(-2px); }
.connect-icons i { font-size: 1.25rem; }

.footer-line {
  width: min(80rem, 90%); height: 1px;
  margin: 0 auto;
  background: linear-gradient(to right, rgba(26,86,255,0.1), rgba(0,212,255,0.6), rgba(26,86,255,0.1));
}

.address {
  width: 100%; text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem; padding: 1rem 0;
}

/* =========================
   KEYFRAMES
========================= */
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

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

/* =========================
   RESPONSIVE — 1200px
========================= */
@media (max-width: 1200px) {
  .intel-stats { grid-template-columns: repeat(2, 1fr); }
}

/* =========================
   RESPONSIVE — 1024px
========================= */
@media (max-width: 1024px) {
  .core-agent-spotlight { grid-template-columns: 1fr; gap: 32px; }
  .agents-grid { grid-template-columns: repeat(2, 1fr); }
  .for-grid { grid-template-columns: repeat(2, 1fr); }
  .integrate-inner { grid-template-columns: 1fr; gap: 40px; }
  .intel-stats { grid-template-columns: repeat(2, 1fr); }
}

/* =========================
   RESPONSIVE — 768px
========================= */
@media (max-width: 768px) {
  .hero { padding: 120px 24px 80px; }
  .hero h1 { letter-spacing: -2px; }

  .trust-bar { gap: 10px; padding: 16px 1rem; }
  .trust-text { font-size: 12px; }

  .problem-grid { grid-template-columns: 1fr; border-radius: 12px; }
  .problem-card { border-right: none; border-bottom: 1px solid var(--border); }
  .problem-card:last-child { border-bottom: none; }

  .agents-head { flex-direction: column; align-items: flex-start; }
  .agents-head > p { max-width: 100%; }
  .agents-grid { grid-template-columns: 1fr; }

  .for-grid { grid-template-columns: 1fr; }

  .intel-stats { grid-template-columns: 1fr; }

  .integrate-inner { grid-template-columns: 1fr; }

  .footer { flex-direction: column; gap: 2rem; }
  .header-footer, .platform, .Resources, .connect { min-width: 0; width: 100%; }
}

/* =========================
   RESPONSIVE — 480px
========================= */
@media (max-width: 480px) {
  .hero { padding: 100px 20px 60px; }
  .hero h1 { letter-spacing: -1.5px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; width: 100%; }

  .trust-item:nth-child(4),
  .trust-item:nth-child(5) { display: none; }

  .problem { padding: 48px 1rem; }
  .problem-card { padding: 24px 20px; }

  .agents { padding: 48px 1rem; }
  .core-agent-spotlight { padding: 28px 20px; }
  .for-section { padding: 48px 1rem; }
  .intelligence { padding: 48px 1rem; }
  .integrate { padding: 48px 1rem; }
  .beta-cta { padding: 64px 1.5rem; }
  .beta-cta h2 { letter-spacing: -1px; }
  .btn-white { width: 100%; }

  .intel-stat { flex-direction: column; gap: 12px; }
}

/* =========================
   ULTRA WIDE — 1600px+
========================= */
@media (min-width: 1600px) {
  .problem-grid,
  .for-grid,
  .integrate-inner,
  .intelligence-inner { max-width: 1400px; }
}