/* ============================================================
   AGENTS PAGE — styles
   ============================================================ */

/* ── FONT ── */
* { font-family: 'Roboto Condensed', sans-serif; }

/* ── BUTTON OVERRIDES ── */
.btn-primary {
  background: var(--magenta);
  box-shadow: 0 8px 24px rgba(237,0,140,0.3);
}
.btn-primary:hover {
  background: #ff169f;
  box-shadow: 0 8px 28px rgba(237,0,140,0.45);
  transform: translateY(-2px);
}
.agents-btn-glow {
  box-shadow: 0 0 0 0 rgba(237,0,140,0.6);
  animation: btnPulse 2.5s infinite;
}
@keyframes btnPulse {
  0%   { box-shadow: 0 0 0 0 rgba(237,0,140,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(237,0,140,0); }
  100% { box-shadow: 0 0 0 0 rgba(237,0,140,0); }
}

/* ── HERO ── */
.agents-hero {
  background: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.agents-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(237,0,140,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.agents-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,173,241,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.agents-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--magenta);
  animation: dotBlink 2s infinite;
}
@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.agents-title {
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.typewriter-word {
  display: inline-block;
}
.typewriter-cursor {
  display: inline-block;
  color: var(--magenta);
  font-weight: 300;
  animation: cursorBlink 0.9s steps(1) infinite;
  margin-left: 2px;
}
@keyframes cursorBlink {
  0%, 49%  { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.agents-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 0 36px;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Stats / trust row */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-num {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.trust-unit {
  font-size: 22px;
  font-weight: 700;
  color: var(--magenta);
}
.trust-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ── AGENT ORBIT VISUALIZATION ── */
.agents-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.agent-orbit-wrap {
  position: relative;
  width: 420px;
  height: 420px;
  flex-shrink: 0;
}

/* Orbits */
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit--outer {
  width: 380px;
  height: 380px;
  animation: orbitSpin 18s linear infinite;
  border-color: rgba(237,0,140,0.12);
}

.orbit--inner {
  width: 220px;
  height: 220px;
  animation: orbitSpin 11s linear infinite reverse;
  border-color: rgba(0,173,241,0.15);
}

@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Orbit nodes */
.orbit-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: counterSpin 18s linear infinite;
}
.orbit--inner .orbit-node {
  animation-duration: 11s;
  animation-direction: reverse;
}

.orbit-node--1 { top: -24px; left: 50%; transform: translateX(-50%); }
.orbit-node--2 { top: 50%; right: -24px; transform: translateY(-50%); }
.orbit-node--3 { bottom: -24px; left: 50%; transform: translateX(-50%); }
.orbit-node--4 { top: 50%; left: -24px; transform: translateY(-50%); }
.orbit-node--5 { top: -24px; left: 50%; transform: translateX(-50%); }
.orbit-node--6 { bottom: -24px; left: 50%; transform: translateX(-50%); }
.orbit-node--7 { top: 50%; right: -24px; transform: translateY(-50%); }

@keyframes counterSpin {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(-360deg); }
}

.orbit-node--2, .orbit-node--4, .orbit-node--7 {
  animation-name: counterSpinY;
}
@keyframes counterSpinY {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(-360deg); }
}

.orbit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(10,10,20,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.orbit-icon:hover {
  border-color: var(--magenta);
  box-shadow: 0 0 16px rgba(237,0,140,0.3);
}

.orbit-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Agent Brain */
.agent-brain {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brain-pulse {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(237,0,140,0.3);
  animation: brainPulse 3s ease-out infinite;
}
.brain-pulse--1 {
  width: 90px;
  height: 90px;
}
.brain-pulse--2 {
  width: 90px;
  height: 90px;
  animation-delay: 1.5s;
}
@keyframes brainPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}

.brain-core {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(237,0,140,0.2), rgba(0,173,241,0.1));
  border: 2px solid var(--magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 30px rgba(237,0,140,0.25), inset 0 0 20px rgba(237,0,140,0.1);
  animation: brainGlow 4s ease-in-out infinite;
  z-index: 2;
}
@keyframes brainGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(237,0,140,0.25); }
  50%       { box-shadow: 0 0 40px rgba(237,0,140,0.5), 0 0 80px rgba(237,0,140,0.15); }
}

/* ── TRUSTED BY FOUNDERS STRIP ── */
.trusted-strip {
  background: #050508;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 36px 0;
}

.trusted-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.trusted-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.trusted-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.trusted-logo {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.trusted-logo:hover { color: #fff; }

.trusted-dot {
  color: rgba(255,255,255,0.15);
  font-size: 14px;
}

.trusted-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  width: 100%;
  max-width: 620px;
  justify-content: center;
  flex-wrap: wrap;
}

.trusted-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.trusted-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: inline;
}

.trusted-stat-unit {
  font-size: 18px;
  font-weight: 700;
  color: var(--magenta);
}

.trusted-stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.03em;
  margin-top: 4px;
  max-width: 140px;
}

.trusted-stat-divider {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.08);
}

/* ── HOW IT WORKS — STEPS ── */
.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 48px;
}

.step-card {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.step-card:hover::before { transform: scaleX(1); }
.step-card:hover {
  border-color: rgba(237,0,140,0.25);
  transform: translateY(-4px);
}

.step-num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.step-icon--connect {
  background: rgba(237,0,140,0.12);
  color: var(--magenta);
}
.step-icon--learn {
  background: rgba(0,173,241,0.12);
  color: var(--cyan);
}
.step-icon--run {
  background: rgba(237,0,140,0.12);
  color: var(--magenta);
}

.step-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* Step connectors */
.step-connector {
  width: 48px;
  height: 2px;
  position: relative;
  flex-shrink: 0;
}
.connector-line {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.08);
}
.connector-pulse {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--magenta);
  animation: connectorMove 2s linear infinite;
  box-shadow: 0 0 8px rgba(237,0,140,0.8);
}
@keyframes connectorMove {
  0%   { left: 0; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { left: calc(100% - 8px); opacity: 0; }
}

/* ── INTEGRATIONS GRID ── */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.int-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.int-card:hover {
  border-color: rgba(237,0,140,0.35);
  background: rgba(237,0,140,0.05);
  transform: translateY(-4px);
}
.int-card--more:hover {
  border-color: rgba(0,173,241,0.35);
  background: rgba(0,173,241,0.05);
}

.int-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.int-icon--github { color: #fff; }
.int-icon--claude { color: var(--magenta); }

.int-name {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.more-dots {
  font-size: 20px;
  color: var(--cyan);
  letter-spacing: 4px;
  font-weight: 900;
}

/* ── USE CASES — extra breathing room between bullets ── */
#use-cases .feature-bullets {
  gap: 22px;
  margin-top: 24px;
}

/* ── SERVICE ROWS ── */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.svc-row:last-child { border-bottom: none; }

.svc-row--reverse { direction: rtl; }
.svc-row--reverse > * { direction: ltr; }

.svc-placeholder {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.svc-ph-inner {
  width: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* Agent flow mock */
.agent-flow-mock {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.aflow-node {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.aflow-node--src  { background: rgba(255,255,255,0.08); }
.aflow-node--agent { background: rgba(237,0,140,0.2); border: 1px solid rgba(237,0,140,0.4); }
.aflow-node--out  { background: rgba(0,173,241,0.15); border: 1px solid rgba(0,173,241,0.3); }
.aflow-arrow { color: rgba(255,255,255,0.25); font-size: 16px; }

/* Terminal mock */
.mock-terminal {
  width: 100%;
  background: rgba(0,0,0,0.4);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.terminal-line {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-family: 'Courier New', monospace;
}
.t-green { color: #4ade80; }
.t-cyan  { color: var(--cyan); }
.t-magenta { color: var(--magenta); }
.t-yellow { color: #fbbf24; }
.terminal-line--blink .t-yellow { animation: termBlink 1.5s infinite; }
@keyframes termBlink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* Pipeline mock */
.pipeline-mock {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pipe-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.pipe-step--done {
  border-color: rgba(74,222,128,0.2);
  color: rgba(255,255,255,0.8);
}
.pipe-step--active {
  border-color: rgba(237,0,140,0.4);
  background: rgba(237,0,140,0.06);
  color: #fff;
}
.pipe-step--pending { opacity: 0.4; }
.pipe-icon { font-size: 16px; }
.pipe-label { flex: 1; font-weight: 600; }
.pipe-check { color: #4ade80; font-weight: 700; }
.pipe-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(237,0,140,0.3);
  border-top-color: var(--magenta);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Chat mock */
.chat-mock {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-msg {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.chat-msg--out { flex-direction: row-reverse; }
.chat-avatar { font-size: 20px; }
.chat-bubble {
  background: rgba(255,255,255,0.08);
  border-radius: 14px 14px 14px 4px;
  padding: 8px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  max-width: 75%;
  line-height: 1.4;
}
.chat-bubble--bot {
  background: rgba(237,0,140,0.15);
  border: 1px solid rgba(237,0,140,0.2);
  border-radius: 14px 14px 4px 14px;
  color: #fff;
}
.chat-msg--out .chat-bubble { border-radius: 14px 14px 4px 14px; }
.typing-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  margin: 0 2px;
  animation: typingDot 1.2s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%,80%,100%{transform:scale(0.7);opacity:0.4} 40%{transform:scale(1);opacity:1} }

/* Startup dashboard mock */
.startup-dash {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dash-row {
  display: flex;
  gap: 16px;
}
.dash-metric {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.metric-val {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.metric-key {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.dash-insight {
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.2);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.insight-icon { font-size: 16px; flex-shrink: 0; }
.insight-text { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* Service tags */
.svc-tag-row {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.svc-tag {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.4);
}

/* ── PRICING ── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  align-items: start;
}
.pkg-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.pkg-card:hover {
  border-color: rgba(237,0,140,0.3);
  transform: translateY(-4px);
}
.pkg-card--featured {
  border-color: var(--magenta);
  background: linear-gradient(135deg, rgba(237,0,140,0.08), rgba(255,255,255,0.04));
}
.pkg-badge-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--magenta);
  color: #fff;
  margin-bottom: 12px;
  align-self: flex-start;
}
.pkg-tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.pkg-price {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.pkg-period {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
}
.pkg-features {
  list-style: none;
  margin: 16px 0 20px;
  padding: 0;
  flex: 1;
}
.pkg-features li {
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.pkg-features li::before {
  content: '✓';
  color: var(--magenta);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pkg-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: auto;
}

/* ── DEMO CTA SECTION ── */
.agents-demo-cta {
  background: #000;
  position: relative;
  overflow: hidden;
}
.agents-demo-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(237,0,140,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.demo-cta-inner {
  text-align: center;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.demo-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(237,0,140,0.4);
  background: rgba(237,0,140,0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
}
.demo-cta-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0;
}
.demo-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  line-height: 1.6;
}
.demo-cta-note {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

/* ── BOOK SECTION (reuse branding styles) ── */
.body-text.centered {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}
.book-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.book-cal-mock {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 24px;
}
.cal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cal-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.cal-info { display: flex; flex-direction: column; gap: 3px; }
.cal-name { font-size: 14px; font-weight: 700; color: #fff; }
.cal-dur  { font-size: 12px; color: rgba(255,255,255,0.4); }
.cal-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cal-month-label { font-size: 13px; font-weight: 600; color: #fff; }
.cal-arrow {
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.cal-arrow:hover { border-color: var(--magenta); color: var(--magenta); }
.cal-grid-head {
  display: grid;
  grid-template-columns: repeat(7,1fr);
  gap: 4px;
  margin-bottom: 6px;
}
.cal-grid-head span {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7,1fr);
  gap: 4px;
  margin-bottom: 16px;
}
.cal-day, .cal-empty {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border-radius: 6px;
  color: rgba(255,255,255,0.25);
}
.cal-avail {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
}
.cal-avail:hover { background: rgba(237,0,140,0.15); color: #fff; }
.cal-selected { background: var(--magenta) !important; color: #fff !important; font-weight: 700; }
.cal-time-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.cal-slots { display: flex; gap: 8px; flex-wrap: wrap; }
.cal-slot {
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  cursor: pointer;
  transition: border-color 0.15s;
  font-family: inherit;
}
.cal-slot:hover { border-color: var(--magenta); color: #fff; }
.cal-slot--sel { background: rgba(237,0,140,0.15); border-color: var(--magenta); color: #fff; font-weight: 600; }
.cal-footer-note {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  text-align: center;
}
.bk-form { display: flex; flex-direction: column; gap: 16px; }
.bk-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.bk-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 11px 14px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.bk-input:focus { border-color: var(--magenta); }
.bk-input::placeholder { color: rgba(255,255,255,0.2); }
.bk-select { appearance: none; cursor: pointer; }
.bk-textarea { resize: vertical; min-height: 90px; }
.bk-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
}
.bk-check input { accent-color: var(--magenta); width: 16px; height: 16px; }
.bk-check a { color: var(--cyan); text-decoration: none; }
.bk-check a:hover { text-decoration: underline; }

/* ── SPIN THE WHEEL ── */
.roulette-section {
  background: #050508;
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
}
.roulette-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,173,241,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.wheel-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.wheel-pointer {
  color: var(--magenta);
  font-size: 26px;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(237,0,140,0.7));
  margin-bottom: -14px;
  z-index: 3;
}

.wheel-outer {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  padding: 10px;
  background: linear-gradient(135deg, rgba(237,0,140,0.5), rgba(0,173,241,0.5));
  box-shadow: 0 0 60px rgba(237,0,140,0.2), 0 0 100px rgba(0,173,241,0.1);
}

.wheel-disc {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--magenta) 0deg 45deg,
    var(--cyan) 45deg 90deg,
    #14141f 90deg 135deg,
    var(--magenta) 135deg 180deg,
    var(--cyan) 180deg 225deg,
    #14141f 225deg 270deg,
    var(--magenta) 270deg 315deg,
    var(--cyan) 315deg 360deg
  );
  border: 3px solid rgba(0,0,0,0.4);
  will-change: transform;
}

.wheel-seg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 0;
  transform-origin: 0 0;
}

.wheel-seg-label {
  position: absolute;
  right: 14px;
  top: -7px;
  width: 96px;
  text-align: right;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.wheel-hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0f0f1a;
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--magenta);
  z-index: 2;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.wheel-result {
  min-height: 28px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s, transform 0.35s;
}
.wheel-result.show {
  opacity: 1;
  transform: translateY(0);
}
.wheel-result .wr-prize {
  color: var(--cyan);
}

.wheel-note {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.03em;
}

#wheelSpinBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  animation: none;
}

.wheel-btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

#moneyBtn {
  border-color: rgba(74,222,128,0.4);
  color: #4ade80;
}
#moneyBtn:hover {
  border-color: #4ade80;
  background: rgba(74,222,128,0.08);
  color: #4ade80;
  transform: translateY(-2px);
}

/* ── MONEY RAIN ── */
.money-bill {
  position: fixed;
  top: -60px;
  pointer-events: none;
  z-index: 99999;
  will-change: transform, opacity;
  user-select: none;
}
@keyframes moneyFall {
  0%   { transform: translateY(-10vh) rotate(0deg); opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(115vh) rotate(600deg); opacity: 0.85; }
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HEADER LAYOUT — push lang switch to the right (no nav menu on this page) ── */
.agents-header .site-header-bar {
  justify-content: space-between;
}

/* ── LANGUAGE SWITCHER ── */
.gt-hidden {
  display: none !important;
}
body.agents-page {
  top: 0 !important;
}
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
}
body {
  top: 0 !important;
  position: static !important;
}
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-l4eHX-hSRGPd {
  display: none !important;
}

.lang-switch-new {
  position: relative;
}

.lang-current-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 6px 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.lang-current-btn:hover {
  border-color: var(--magenta);
  background: rgba(237,0,140,0.08);
}
.lang-current-btn img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.lang-chevron {
  color: rgba(255,255,255,0.5);
  transition: transform 0.2s;
}
.lang-current-btn[aria-expanded="true"] .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  background: #0f0f1a;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}
.lang-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.lang-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: background 0.15s, color 0.15s;
}
.lang-opt:hover {
  background: rgba(237,0,140,0.12);
  color: #fff;
}
.lang-opt img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .integrations-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .section-title { font-size: clamp(42px, 12vw, 64px) !important; }
  .agents-title  { font-size: clamp(44px, 13vw, 72px) !important; }
  .agents-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .agents-hero-visual { order: -1; }
  .agent-orbit-wrap { width: 300px; height: 300px; }
  .orbit--outer { width: 280px; height: 280px; }
  .orbit--inner { width: 160px; height: 160px; }
  .steps-grid { flex-direction: column; gap: 16px; }
  .step-connector { width: 2px; height: 36px; align-self: center; }
  .connector-line { width: 2px; height: 100%; }
  .connector-pulse { animation-name: connectorMoveY; top: 0; left: 50%; transform: translateX(-50%); }
  @keyframes connectorMoveY { 0%{top:0;opacity:0} 20%{opacity:1} 80%{opacity:1} 100%{top:calc(100% - 8px);opacity:0} }
  .svc-row { grid-template-columns: 1fr; gap: 28px; }
  .svc-row--reverse { direction: ltr; }
  .pkg-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .book-layout { grid-template-columns: 1fr; }
  .integrations-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-trust-row { gap: 16px; }
}
@media (max-width: 600px) {
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cta-row { flex-direction: column; }
  .dash-row { flex-direction: column; }
  .trusted-stats { gap: 20px; }
  .trusted-stat-divider { display: none; }
  .wheel-outer { width: 240px; height: 240px; }
  .wheel-seg-label { width: 76px; font-size: 9px; right: 10px; }
  .wheel-hub { width: 46px; height: 46px; }
}


/* ── SUB-NAV (shared header menu, copied from b2g) ── */
.sub-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  padding: 5px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  margin: 0 16px;
}
.sub-nav-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-primary, inherit);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  padding: 8px 10px;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}
.sub-nav-link:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.07); }
.sub-nav-link.active { background: #ffffff; color: #0d0d1a; font-weight: 700; }
.sub-nav-icon { display: flex; align-items: center; justify-content: center; width: 15px; height: 15px; flex-shrink: 0; }

@media (max-width: 900px) {
  .sub-nav { display: none; }
  .site-header-bar { position: relative; }
}