/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --bg:           #f5f4f0;
  --bg-alt:       #eeecea;
  --bg-card:      #ffffff;
  --text:         #0e0e0e;
  --text-muted:   #6b6b6b;
  --text-light:   #9a9a9a;
  --accent-green: #00c896;
  --accent-dark:  #0d1117;
  --accent-purple:#7c6ef0;
  --accent-orange:#f59e0b;
  --border:       #e0deda;
  --border-dark:  #c8c5c0;

  --font-sans:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;

  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-xl:   32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);

  --max-w: 1140px;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ─── UTILS ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ─── COOKIE BANNER ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: auto;
  transform: none;
  z-index: 999;
  background: var(--bg-card);
  color: var(--text);
  border-radius: var(--r-lg);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 300px;
  width: calc(100% - 3rem);
  box-shadow: 0 8px 32px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
  border: 1px solid var(--border);
  transition: opacity 0.3s, transform 0.3s;
}
.cookie-banner.cookie-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem);
}
.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  width: 100%;
}
.cookie-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.cookie-link {
  font-size: 0.75rem;
  color: var(--text-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.cookie-link:hover { color: var(--text-muted); }
.cookie-btn {
  background: var(--accent-dark);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.cookie-btn:hover { opacity: 0.85; }

/* ─── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(245, 244, 240, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 0;
}
.logo-play { color: var(--text); }
.logo-arch { color: var(--accent-green); }
.logo-pro  {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent-purple);
  margin-left: 5px;
  text-transform: uppercase;
  align-self: center;
}

.nav-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-logo-dots {
  display: flex;
  gap: 4px;
  padding-left: 1px;
}
.nav-logo-dots span {
  width: 16px;
  height: 3px;
  border-radius: 100px;
}
.nld-green  { background: var(--accent-green); }
.nld-purple { background: var(--accent-purple); }
.nld-orange { background: var(--accent-orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent-dark);
  color: #fff !important;
  padding: 0.5rem 1.1rem;
  border-radius: var(--r-sm);
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; }

/* ─── BUTTONS ─────────────────────────────────────────────────── */
@keyframes btnShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--accent-dark);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-sm);
  transition: transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.15) 50%, transparent 60%);
  background-size: 200% 100%;
  background-position: -200% center;
  transition: none;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.btn-primary:hover::after {
  animation: btnShimmer 0.55s ease forwards;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-dark);
  background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { background: var(--bg-alt); color: var(--text); border-color: var(--text-muted); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--text);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border-dark);
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover { background: var(--bg-alt); }

.btn-starter { border-color: var(--accent-green); color: #0a7a5c; }
.btn-starter:hover { background: rgba(0,200,150,.06); border-color: var(--accent-green); }

.btn-enterprise { border-color: var(--accent-orange); color: #92600a; }
.btn-enterprise:hover { background: rgba(245,158,11,.06); border-color: var(--accent-orange); }

.btn-large { padding: 1rem 2rem; font-size: 1rem; }

/* ─── SECTION LABELS ─────────────────────────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-green);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text);
}

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2.5rem) clamp(3rem, 6vw, 5rem);
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-left { display: flex; flex-direction: column; }
.hero-right { display: flex; align-items: center; justify-content: flex-end; }

.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.accent-green { color: var(--accent-green); }

.hero-sub {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--text-muted);
  max-width: 46ch;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Terminal */
.hero-terminal {
  background: var(--accent-dark);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 520px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  background: #1a1f2e;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.dot-r { width:10px;height:10px;border-radius:50%;background:#ff5f57; }
.dot-o { width:10px;height:10px;border-radius:50%;background:#febc2e; }
.dot-g { width:10px;height:10px;border-radius:50%;background:#28c840; }
.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,.35);
  margin-left: 0.5rem;
}
.terminal-body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.terminal-line {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.5;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.t-prompt { color: var(--accent-green); user-select: none; }
.t-cmd    { color: #e2e8f0; font-weight: 600; }
.t-arg    { color: #7dd3fc; }
.t-comment{ color: rgba(255,255,255,.28); }
.t-out    { color: var(--accent-green); }
.t-dim    { opacity: 0.4; }
.t-spacer { height: 0.3rem; }

/* ─── TERMINAL ANIMATION ─────────────────────────────────────── */
.tl {
  opacity: 0;
  transform: translateY(4px);
  animation: termLine 0.25s ease forwards;
}
@keyframes termLine {
  to { opacity: 1; transform: translateY(0); }
}
.tl-1  { animation-delay: 0.3s; }
.tl-2  { animation-delay: 0.9s; }
.tl-3  { animation-delay: 1.3s; }
.tl-4  { animation-delay: 1.6s; }
.tl-5  { animation-delay: 1.7s; }
.tl-6  { animation-delay: 2.1s; }
.tl-7  { animation-delay: 2.2s; }
.tl-8  { animation-delay: 2.7s; }
.tl-9  { animation-delay: 3.0s; }
.tl-10 { animation-delay: 3.1s; }
.tl-11 { animation-delay: 3.7s; }
.tl-12 { animation-delay: 4.0s; }
.tl-13 { animation-delay: 4.1s; }
.cursor   {
  display: inline-block;
  width: 8px;
  background: var(--accent-green);
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* Tools badges */
.hero-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tool-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  background: var(--bg-card);
}

/* ─── PROBLEMS ────────────────────────────────────────────────── */
.problems {
  background: var(--accent-dark);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.problems .section-label { color: var(--accent-green); }
.problems .section-title { color: #fff; }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.problem-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: border-color 0.2s;
}
.problem-card:hover { border-color: rgba(255,255,255,.15); }

.problem-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: rgba(0,200,150,.1);
  border: 1px solid rgba(0,200,150,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent-green);
}
.problem-icon-purple {
  background: rgba(124,110,240,.1);
  border-color: rgba(124,110,240,.2);
  color: var(--accent-purple);
}
.problem-icon-orange {
  background: rgba(245,158,11,.1);
  border-color: rgba(245,158,11,.2);
  color: var(--accent-orange);
}

.problem-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.problem-card p { color: rgba(255,255,255,.5); font-size: 0.9rem; line-height: 1.65; }

/* ─── AGENTS IA ───────────────────────────────────────────────── */
.agents {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg);
  overflow: hidden;
}
.agents-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: 3rem;
}
.agents-header .section-title { margin-bottom: 0; }
.agents-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 52ch;
  align-self: end;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* Scroll-triggered fade-in */
@keyframes agentReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.agent-card {
  border-radius: var(--r-lg);
  padding: 1.5rem;
  border: 1px solid transparent;
  opacity: 0;
  animation: agentReveal 0.4s ease forwards;
}
.ac-1 { animation-delay: 0.05s; }
.ac-2 { animation-delay: 0.12s; }
.ac-3 { animation-delay: 0.19s; }
.ac-4 { animation-delay: 0.26s; }
.ac-5 { animation-delay: 0.33s; }
.ac-6 { animation-delay: 0.40s; }

.agent-card-green  { background: rgba(0,200,150,.07);  border-color: rgba(0,200,150,.18); }
.agent-card-purple { background: rgba(124,110,240,.07); border-color: rgba(124,110,240,.18); }
.agent-card-orange { background: rgba(245,158,11,.07);  border-color: rgba(245,158,11,.18); }

.agent-card-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.agent-card-green  .agent-card-icon { background: rgba(0,200,150,.15);  color: #0a7a5c; }
.agent-card-purple .agent-card-icon { background: rgba(124,110,240,.15); color: #4c3fb5; }
.agent-card-orange .agent-card-icon { background: rgba(245,158,11,.15);  color: #92600a; }

.agent-card-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.agent-card-green  .agent-card-label { color: #0a7a5c; }
.agent-card-purple .agent-card-label { color: #4c3fb5; }
.agent-card-orange .agent-card-label { color: #92600a; }

.agent-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--text);
  line-height: 1.2;
}
.agent-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.agents-cta {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.agents-stack-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}
.agents-stack-note svg { color: var(--accent-green); flex-shrink: 0; }

/* ─── HOW ─────────────────────────────────────────────────────── */
.how {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-alt);
}
.steps {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
}
.step-divider {
  height: 1px;
  background: var(--border);
}
.step-number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border-dark);
  letter-spacing: -0.04em;
  line-height: 1;
  padding-top: 0.2rem;
}
.step-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}
.step-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 60ch;
}
.step-reassurance {
  margin-top: 0.75rem !important;
  font-size: 0.82rem !important;
  color: var(--accent-green) !important;
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
  opacity: 0.85;
}

.tools-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
}
.tools-inline span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}

/* ─── PRICING ─────────────────────────────────────────────────── */
.pricing {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg);
}
.pricing-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: -0.75rem;
  margin-bottom: 3rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  align-items: start;
  padding-top: 1.75rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.25rem 2rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.pricing-accent-bar { display: none; }

.pricing-starter { border-color: var(--accent-green); }
.pricing-pro     { border-color: var(--accent-purple); }
.pricing-enterprise { border-color: var(--accent-orange); }

.pricing-featured {
  border-color: var(--accent-purple);
  border-width: 2px;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.pricing-featured:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }

.pricing-badge {
  position: absolute;
  top: -1.1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-dark);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pricing-price {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.price-amount {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}
.price-note {
  font-size: 0.75rem;
  color: var(--text-light);
  font-family: var(--font-mono);
}
.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.pricing-features li {
  font-size: 0.875rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.pricing-starter .pricing-features li::before { content: '✓'; color: var(--accent-green); font-weight: 700; font-size: 0.8rem; flex-shrink: 0; margin-top: 0.1rem; }
.pricing-pro .pricing-features li::before    { content: '✓'; color: var(--accent-purple); font-weight: 700; font-size: 0.8rem; flex-shrink: 0; margin-top: 0.1rem; }
.pricing-enterprise .pricing-features li::before { content: '✓'; color: var(--accent-orange); font-weight: 700; font-size: 0.8rem; flex-shrink: 0; margin-top: 0.1rem; }

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2.5rem;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.pricing-featured .btn-outline {
  background: var(--accent-dark);
  color: #fff;
  border-color: var(--accent-dark);
}
.pricing-featured .btn-outline:hover { opacity: 0.88; }

/* ─── BUILT BY ────────────────────────────────────────────────── */
.built-by {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-alt);
}
.built-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 60ch;
  margin-top: -0.5rem;
  margin-bottom: 2.5rem;
}
.built-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.built-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  box-shadow: var(--shadow-sm);
}
.built-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--border-dark);
}
.built-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.built-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.built-dot-green  { background: var(--accent-purple); box-shadow: 0 0 6px rgba(124,110,240,.5); }
.built-dot-purple { background: var(--accent-green); box-shadow: 0 0 6px rgba(0,200,150,.5); }
.built-live {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.built-card h3 {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
}
.built-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.built-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.built-stack span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.built-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-green);
  letter-spacing: 0.01em;
  margin-top: 0.25rem;
}

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-alt);
}
.faq-container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.faq-left p:last-child {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: -0.5rem;
}
.faq-right {
  display: flex;
  flex-direction: column;
}

details.faq-item { border-bottom: 1px solid var(--border); }
details.faq-item:first-child { border-top: 1px solid var(--border); }
details.faq-item summary {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text);
  transition: color 0.2s;
  user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}
details[open].faq-item summary::after { transform: rotate(45deg); }
details.faq-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 1.25rem;
  max-width: 58ch;
}

/* ─── CTA FINAL ───────────────────────────────────────────────── */
.cta-final {
  background: var(--accent-dark);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.cta-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.cta-terminal-deco {
  background: #0d1117;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
}
.cta-text p {
  color: rgba(255,255,255,.55);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 48ch;
}
.cta-text .btn-primary {
  background: var(--accent-green);
  color: var(--accent-dark);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.cta-text .btn-primary:hover { opacity: 0.9; }
.cta-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,.3);
  font-family: var(--font-mono);
  margin-bottom: 0 !important;
  display: block;
}

/* ─── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 2.5rem;
  flex-wrap: wrap;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 0.75rem;
}
.footer-brand a:not(.nav-logo) { text-decoration: underline; text-underline-offset: 2px; color: var(--text-muted); }
.footer-address { font-style: normal; font-size: 0.8rem; color: var(--text-light); margin-top: 0.35rem; }
.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-light);
  font-family: var(--font-mono);
}

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-right { justify-content: flex-start; }
  .hero-terminal { max-width: 100%; }

  .agents-header { grid-template-columns: 1fr; }
  .agents-grid { grid-template-columns: 1fr 1fr; }

  .faq-container { grid-template-columns: 1fr; gap: 2rem; }

  .cta-container { grid-template-columns: 1fr; }
  .cta-terminal-deco { display: none; }

  .step { grid-template-columns: 56px 1fr; gap: 1.25rem; }
  .step-number { font-size: 1.75rem; }

  .pricing-featured { transform: none; }
  .pricing-featured:hover { transform: translateY(-2px); }
}

@media (max-width: 520px) {
  .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .pricing-grid { grid-template-columns: 1fr; }
  .agents-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-links { flex-direction: column; gap: 1.5rem; }
  .cookie-banner { bottom: 1rem; right: 1rem; max-width: calc(100% - 2rem); }
}

/* ─── LEGAL PAGE ──────────────────────────────────────────────── */
.legal-page { max-width: 780px; margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2.5rem); }
.legal-page h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 0.5rem; }
.legal-page .legal-date { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-light); margin-bottom: 3rem; }
.legal-page h2 { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em; margin: 2.5rem 0 0.75rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.legal-page h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-page h3 { font-size: 0.95rem; font-weight: 700; margin: 1.5rem 0 0.5rem; color: var(--text); }
.legal-page p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 0.75rem; }
.legal-page ul { padding-left: 1.25rem; margin-bottom: 0.75rem; }
.legal-page ul li { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; list-style: disc; }
.legal-page a { color: var(--accent-green); text-decoration: underline; text-underline-offset: 2px; }
.legal-toc { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.5rem; margin-bottom: 3rem; }
.legal-toc p { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; font-family: var(--font-mono); }
.legal-toc a { display: block; font-size: 0.875rem; color: var(--text-muted); padding: 0.25rem 0; text-decoration: none; }
.legal-toc a:hover { color: var(--text); }
.legal-anchor { scroll-margin-top: 6rem; }
