/* Clear Agentic AI — landing styles. Plain CSS, no build step.
   Dark theme with cyan + green accents to match the base-site card look. */

:root {
  --bg: #080b12;
  --bg-2: #0b1018;
  --card: #0e1420;
  --card-2: #111a28;
  --border: #1c2738;
  --text: #e6edf6;
  --muted: #8a98ac;
  --muted-2: #5d6b80;
  --cyan: #22d3ee;
  --cyan-d: #0891b2;
  --green: #34d399;
  --bull: #34d399;
  --bear: #f87171;
  --radius: 14px;
  --maxw: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(1200px 600px at 50% -200px, #0d1a24 0%, var(--bg) 55%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.mono { font-family: "JetBrains Mono", ui-monospace, monospace; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -0.02em; margin: 0; }

.grad {
  background: linear-gradient(90deg, var(--cyan), #7dd3fc 60%, var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  color: var(--cyan); margin-bottom: 14px;
}

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan); color: #05222b; font-weight: 700; font-size: 15px;
  padding: 12px 20px; border-radius: 10px; border: 0; cursor: pointer;
  box-shadow: 0 8px 30px -10px rgba(34, 211, 238, 0.55);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); background: #38dcf2; box-shadow: 0 12px 36px -10px rgba(34,211,238,.7); }
.btn-sm { padding: 9px 14px; font-size: 14px; }

.badge {
  display: inline-flex; align-items: center; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; padding: 6px 12px; border-radius: 999px;
}
.badge-soon { color: var(--green); border: 1px solid rgba(52, 211, 153, .45); background: rgba(52,211,153,.07); }

/* ---- nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 11, 18, 0.72); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-size: 16px; }
.brand-logo { height: 32px; width: 32px; border-radius: 7px; display: block; }
.brand strong { color: #fff; }
.brand-mark { color: var(--cyan); font-size: 18px; }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 14px; color: var(--muted); }
.nav-links a:hover { color: #fff; }

/* ---- hero ---- */
.hero { position: relative; padding: 84px 0 72px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.hero-title { font-size: clamp(34px, 5vw, 56px); font-weight: 800; }
.hero-sub { margin-top: 20px; max-width: 36ch; color: var(--muted); font-size: clamp(16px, 1.4vw, 18px); }
.hero-sub strong { color: #cfe9ff; font-weight: 600; }
.hero-cta { margin-top: 28px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: 13px; color: var(--muted-2); }

.glow { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; z-index: 0; }
.glow-1 { width: 720px; height: 360px; left: 50%; top: -160px; transform: translateX(-50%); background: rgba(34,211,238,.10); }
.glow-2 { width: 520px; height: 280px; left: 50%; top: 50%; transform: translate(-50%,-50%); background: rgba(52,211,153,.10); }

/* ---- agentic panel visual ---- */
.panel-wrap { position: relative; z-index: 1; }
.panel {
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--border); border-radius: 16px; padding: 16px;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,.8);
}
.panel-head { display: flex; align-items: center; gap: 7px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.panel-head .dot { width: 9px; height: 9px; border-radius: 50%; background: #2a3852; }
.panel-title { margin-left: 8px; font-size: 12px; color: var(--muted); }
.lanes { display: grid; gap: 10px; padding: 14px 0; }
.lane-name { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-2); margin-bottom: 5px; }
.lane-name .vs { color: var(--cyan); }
.bubble {
  background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 9px;
  padding: 8px 11px; font-size: 13px; color: var(--text); margin-bottom: 6px;
}
.bubble.bull { border-left: 2px solid var(--bull); }
.bubble.bear { border-left: 2px solid var(--bear); }
.bubble.manager { border-left: 2px solid var(--cyan); }
.watch { margin-top: 6px; border-top: 1px solid var(--border); padding-top: 12px; }
.watch-head { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--green); margin-bottom: 8px; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip {
  font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 600;
  background: rgba(34,211,238,.08); border: 1px solid rgba(34,211,238,.25); color: #bdeefb;
  padding: 4px 9px; border-radius: 7px;
}
.chip em { color: var(--green); font-style: normal; margin-left: 5px; }

/* ---- sections ---- */
.section { padding: 76px 0; }
.section-alt { background: linear-gradient(180deg, transparent, var(--bg-2)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; }
.section-head p { margin-top: 12px; color: var(--muted); }

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

.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: rgba(34,211,238,.4); transform: translateY(-3px); }
.card .ic { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px;
  background: rgba(34,211,238,.1); color: var(--cyan); font-size: 18px; margin-bottom: 14px; }
.card h3 { font-size: 17px; color: #fff; }
.card p { margin: 9px 0 0; color: var(--muted); font-size: 14px; }

.step { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.step-n { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(52,211,153,.12); color: var(--green); font-weight: 700; margin-bottom: 14px; }
.step h3 { font-size: 18px; color: #fff; }
.step p { margin: 9px 0 0; color: var(--muted); font-size: 14px; }

/* ---- CTA ---- */
.cta {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid rgba(34,211,238,.3); border-radius: 22px; padding: 52px 24px;
  max-width: 760px; margin: 0 auto;
}
.cta h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; position: relative; }
.cta > p { margin: 12px auto 0; color: var(--muted); max-width: 46ch; position: relative; }
.wait-form { position: relative; margin: 26px auto 0; display: flex; gap: 10px; max-width: 440px; flex-wrap: wrap; justify-content: center; }
.wait-form input {
  flex: 1; min-width: 220px; background: var(--bg); border: 1px solid var(--border); color: var(--text);
  padding: 12px 14px; border-radius: 10px; font-size: 15px; outline: none;
}
.wait-form input:focus { border-color: var(--cyan); }
.form-msg { min-height: 20px; margin: 12px 0 0; font-size: 14px; color: var(--green); }
.disclaimer { margin-top: 18px; font-size: 12px; color: var(--muted-2); }

/* ---- footer ---- */
.footer { border-top: 1px solid var(--border); padding: 26px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--muted-2); }
.footer-inner a:hover { color: #fff; }

/* ---- reveal-on-scroll ---- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }

/* ---- responsive ---- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nav-links a:not(.btn) { display: none; }
  .features, .steps { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
