/* ==============================
   AnchorOps — Theme
   ============================== */

:root {
  --bg: #0B1220;
  --bg-alt: #111827;
  --surface: #1a2436;
  --surface-2: #243049;
  --accent: #F5A623;
  --accent-dim: #b87a12;
  --teal: #2DD4BF;
  --tag-action: #7C3AED;
  --tag-decision: #2563EB;
  --tag-monitor: #059669;
  --text: #F0F4FF;
  --text-dim: #94A3B8;
  --border: rgba(240,244,255,0.08);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ====== HERO ====== */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,244,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,244,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-family: 'Figtree', sans-serif;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 24px;
}

.headline-accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}
.stat-label { font-size: 13px; color: var(--text-dim); }
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Agent Feed */
.agent-feed {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  font-size: 13px;
}

.feed-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 20px;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
}

.feed-dot.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.feed-entry {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  line-height: 1.4;
}

.feed-entry:last-child { border-bottom: none; }

.feed-time {
  color: var(--text-dim);
  opacity: 0.6;
  min-width: 52px;
  font-size: 11px;
}

.feed-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tag-action { background: rgba(124,58,237,0.2); color: #A78BFA; }
.tag-decision { background: rgba(37,99,235,0.2); color: #93C5FD; }
.tag-monitor { background: rgba(5,150,105,0.2); color: #6EE7B7; }

/* ====== MANIFESTO ====== */
.manifesto {
  padding: 100px 0;
  background: var(--bg-alt);
}

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

.manifesto-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.manifesto-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 60px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.manifesto-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.manifesto-item p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.65;
}

.manifesto-icon {
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ====== HOW IT WORKS ====== */
.howitworks {
  padding: 100px 0;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 60px;
  max-width: 600px;
  line-height: 1.15;
}

.steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.step {
  flex: 1;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 16px;
}

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

.step-body p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
}

.step-connector {
  width: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.step-connector::after {
  content: '';
  width: 100%;
  height: 1px;
  background: var(--border);
  background-image: linear-gradient(90deg, var(--accent) 30%, transparent 30%);
  background-size: 8px 1px;
  background-repeat: space;
}

/* ====== AGENT SPECS ====== */
.agentspecs {
  padding: 100px 0;
  background: var(--bg-alt);
}

.specs-header { margin-bottom: 60px; }
.section-sub {
  color: var(--text-dim);
  font-size: 16px;
  margin-top: 16px;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}

.spec-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s;
}

.spec-card:hover {
  border-color: rgba(245,166,35,0.2);
}

.spec-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,166,35,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.spec-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.spec-card p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
}

.price-callout {
  display: flex;
  justify-content: center;
}

.price-box {
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 20px;
  padding: 40px 60px;
  text-align: center;
  max-width: 500px;
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
}

.price-period {
  font-size: 24px;
  color: var(--text-dim);
  font-weight: 400;
}

.price-desc {
  font-size: 16px;
  color: var(--text-dim);
  margin-top: 8px;
}

.price-compare {
  font-size: 13px;
  color: var(--teal);
  margin-top: 12px;
  font-weight: 500;
}

/* ====== CLOSING ====== */
.closing {
  padding: 120px 0;
  text-align: center;
}

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

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 48px;
}

.cta-text {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 16px 40px;
  border-radius: 50px;
  background: rgba(245,166,35,0.05);
}

/* ====== FOOTER ====== */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-links {
  font-size: 13px;
  color: var(--text-dim);
  text-align: right;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 12px;
  color: var(--text-dim);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; gap: 16px; }
  .step-connector { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { padding: 72px 0 60px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .specs-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-links { text-align: left; }
  .price-box { padding: 32px 24px; }
}