/* ===================================================================
   Axondyne — shared stylesheet
   =================================================================== */
:root {
  --bg: #06070d;
  --bg-soft: #0c0e18;
  --panel: #11131f;
  --panel-2: #161826;
  --border: #21243a;
  --text: #eef0f7;
  --muted: #9aa0b8;
  --faint: #6b7090;
  --brand: #7c5cff;
  --brand-2: #29d3c2;
  --brand-3: #ff7ac6;
  --glow: rgba(124, 92, 255, 0.35);
  --ok: #28c840;
  --warn: #febc2e;
  --bad: #ff5f57;
  --radius: 18px;
  --maxw: 1180px;
  --maxw-narrow: 820px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
::selection { background: var(--brand); color: #fff; }
a { color: inherit; text-decoration: none; }
.mono { font-family: 'JetBrains Mono', monospace; }
img { max-width: 100%; display: block; }

/* ---------- Background FX ---------- */
.bg-fx { position: fixed; inset: 0; z-index: -2; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; animation: float 18s var(--ease) infinite alternate; }
.orb.a { width: 540px; height: 540px; background: var(--brand); top: -160px; left: -120px; }
.orb.b { width: 460px; height: 460px; background: var(--brand-2); top: 30%; right: -140px; animation-delay: -6s; }
.orb.c { width: 420px; height: 420px; background: var(--brand-3); bottom: -160px; left: 30%; opacity: 0.32; animation-delay: -12s; }
@keyframes float { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(40px, 60px) scale(1.12); } }
.grid-overlay {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(124,92,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,92,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; position: relative; }
.pt-0 { padding-top: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand-2); font-weight: 600;
  padding: 6px 14px; border: 1px solid var(--border); border-radius: 999px;
  background: rgba(41,211,194,0.05);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-2); box-shadow: 0 0 10px var(--brand-2); }

h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.02em; font-weight: 800; }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); margin: 18px 0 16px; }
.section-head p { color: var(--muted); font-size: 18px; }
.gradient-text { background: linear-gradient(110deg, var(--brand-3), var(--brand) 40%, var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Nav ---------- */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: all 0.4s var(--ease); }
.nav { display: flex; align-items: center; justify-content: space-between; margin: 16px auto; max-width: var(--maxw); padding: 12px 20px; border-radius: 16px; border: 1px solid transparent; transition: all 0.4s var(--ease); }
header.scrolled .nav { background: rgba(8,9,16,0.72); backdrop-filter: blur(16px); border-color: var(--border); box-shadow: 0 12px 40px rgba(0,0,0,0.45); }
.logo { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 19px; letter-spacing: -0.02em; }
.logo .mark { width: 32px; height: 32px; border-radius: 9px; position: relative; background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 0 22px var(--glow); }
.logo .mark::after { content: ""; position: absolute; inset: 6px; border-radius: 5px; border: 2px solid rgba(255,255,255,0.85); border-right-color: transparent; border-bottom-color: transparent; animation: spin 3.5s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

.btn { display: inline-flex; align-items: center; gap: 9px; padding: 11px 20px; border-radius: 11px; font-weight: 600; font-size: 15px; cursor: pointer; border: 1px solid var(--border); background: transparent; color: var(--text); transition: all 0.25s var(--ease); white-space: nowrap; }
.btn:hover { border-color: var(--brand); transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--brand), #6244e6); border-color: transparent; color: #fff; box-shadow: 0 8px 24px var(--glow); }
.btn-primary:hover { box-shadow: 0 12px 34px var(--glow); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.03); }
.btn-lg { padding: 14px 26px; font-size: 16px; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }
.menu-toggle { display: none; background: none; border: 1px solid var(--border); color: var(--text); cursor: pointer; font-size: 18px; border-radius: 10px; padding: 6px 12px; }

.mobile-menu { display: none; flex-direction: column; gap: 4px; margin: 0 16px; padding: 12px; border: 1px solid var(--border); border-radius: 16px; background: rgba(8,9,16,0.95); backdrop-filter: blur(16px); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 14px; border-radius: 10px; color: var(--muted); font-weight: 500; }
.mobile-menu a:hover { background: var(--panel-2); color: var(--text); }

/* ---------- Page hero (sub pages) ---------- */
.page-hero { padding-top: 160px; padding-bottom: 40px; }
.page-hero h1 { font-size: clamp(36px, 5.5vw, 64px); font-weight: 900; letter-spacing: -0.03em; margin: 18px 0 18px; }
.page-hero p { color: var(--muted); font-size: clamp(17px, 2vw, 20px); max-width: 620px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 14px; color: var(--faint); margin-bottom: 6px; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { color: var(--brand-2); }

/* ---------- Home hero ---------- */
.hero { padding-top: 180px; padding-bottom: 90px; text-align: center; }
.hero h1 { font-size: clamp(40px, 7vw, 84px); font-weight: 900; letter-spacing: -0.035em; }
.hero .sub { max-width: 640px; margin: 26px auto 36px; font-size: clamp(17px, 2.2vw, 21px); color: var(--muted); }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 22px; font-size: 13px; color: var(--faint); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Marquee ---------- */
.trusted { padding: 60px 0 0; }
.trusted p { text-align: center; color: var(--faint); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 26px; }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: scroll 28s linear infinite; }
.marquee-track span { font-size: 22px; font-weight: 700; color: #3a3f5c; white-space: nowrap; letter-spacing: -0.01em; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { padding: 30px 26px; border-radius: var(--radius); border: 1px solid var(--border); background: linear-gradient(180deg, var(--panel), var(--bg-soft)); }
.stat .num { font-size: 42px; font-weight: 900; letter-spacing: -0.03em; }
.stat .num span { font-size: 26px; }
.stat .label { color: var(--muted); font-size: 14px; margin-top: 6px; }

/* ---------- Cards / features ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { padding: 30px; border-radius: var(--radius); border: 1px solid var(--border); background: linear-gradient(180deg, var(--panel), var(--bg-soft)); transition: transform 0.35s var(--ease), border-color 0.35s var(--ease); position: relative; overflow: hidden; }
.card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(400px circle at var(--mx,50%) var(--my,0%), rgba(124,92,255,0.10), transparent 60%); opacity: 0; transition: opacity 0.4s; }
.card:hover { transform: translateY(-5px); border-color: #34385c; }
.card:hover::before { opacity: 1; }
.card .ico { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: rgba(124,92,255,0.12); border: 1px solid rgba(124,92,255,0.25); margin-bottom: 20px; font-size: 22px; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; }

/* ---------- Pipeline ---------- */
.pipeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.step { padding: 0 22px; position: relative; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 19px; right: -2px; width: 100%; height: 2px; background: linear-gradient(90deg, var(--brand), transparent); z-index: 0; }
.step .badge { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-weight: 800; background: var(--panel-2); border: 1px solid var(--border); position: relative; z-index: 1; margin-bottom: 18px; color: var(--brand-2); }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; }

/* ---------- Split / terminal ---------- */
.split { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.split h2 { font-size: clamp(28px, 3.6vw, 42px); margin: 16px 0 18px; }
.split p.lead { color: var(--muted); font-size: 17px; margin-bottom: 26px; }
.check-list { list-style: none; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-size: 15px; }
.check-list .tick { flex: 0 0 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; margin-top: 2px; background: rgba(41,211,194,0.14); color: var(--brand-2); border: 1px solid rgba(41,211,194,0.3); font-size: 12px; }
.terminal { border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; background: #0a0c15; box-shadow: 0 30px 70px rgba(0,0,0,0.55); }
.term-bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; background: var(--panel-2); border-bottom: 1px solid var(--border); }
.term-bar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.term-bar i:nth-child(1) { background: #ff5f57; }
.term-bar i:nth-child(2) { background: #febc2e; }
.term-bar i:nth-child(3) { background: #28c840; }
.term-bar .title { margin-left: 10px; color: var(--faint); font-size: 13px; }
.term-body { padding: 22px; font-family: 'JetBrains Mono', monospace; font-size: 13.5px; line-height: 1.85; overflow-x: auto; }
.term-body .c-com { color: #5a6080; }
.term-body .c-key { color: var(--brand-3); }
.term-body .c-str { color: var(--brand-2); }
.term-body .c-fn { color: #ffd479; }
.term-body .c-out { color: var(--muted); }
.cursor { display: inline-block; width: 8px; height: 16px; background: var(--brand-2); vertical-align: middle; animation: blink 1.1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ---------- Models ---------- */
.models { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.model { padding: 32px 28px; border-radius: var(--radius); border: 1px solid var(--border); background: linear-gradient(180deg, var(--panel), var(--bg-soft)); position: relative; }
.model.featured { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand), 0 20px 60px var(--glow); }
.model .tag { position: absolute; top: -12px; left: 28px; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; }
.model h3 { font-size: 22px; }
.model .params { font-family: 'JetBrains Mono', monospace; color: var(--brand-2); font-size: 14px; margin: 4px 0 18px; }
.model ul { list-style: none; display: grid; gap: 11px; margin-bottom: 24px; }
.model li { color: var(--muted); font-size: 14.5px; display: flex; gap: 10px; }
.model li::before { content: "→"; color: var(--brand); }

/* ---------- Prose (articles, legal, docs) ---------- */
.prose { max-width: 760px; }
.prose > * + * { margin-top: 20px; }
.prose h2 { font-size: 28px; margin-top: 44px; }
.prose h3 { font-size: 21px; margin-top: 34px; }
.prose p, .prose li { color: var(--muted); font-size: 17px; line-height: 1.75; }
.prose ul, .prose ol { padding-left: 22px; display: grid; gap: 10px; }
.prose a { color: var(--brand-2); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--text); }
.prose strong { color: var(--text); }
.prose code { font-family: 'JetBrains Mono', monospace; font-size: 14px; background: var(--panel-2); border: 1px solid var(--border); padding: 2px 7px; border-radius: 6px; color: var(--brand-3); }
.prose pre { background: #0a0c15; border: 1px solid var(--border); border-radius: 14px; padding: 20px; overflow-x: auto; }
.prose pre code { background: none; border: none; padding: 0; color: var(--muted); display: block; line-height: 1.7; }
.prose blockquote { border-left: 3px solid var(--brand); padding-left: 18px; color: var(--text); font-style: italic; }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* ---------- Article cards (research/blog) ---------- */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article { display: flex; flex-direction: column; padding: 26px; border-radius: var(--radius); border: 1px solid var(--border); background: linear-gradient(180deg, var(--panel), var(--bg-soft)); transition: transform 0.3s var(--ease), border-color 0.3s var(--ease); }
.article:hover { transform: translateY(-5px); border-color: #34385c; }
.article .kicker { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-2); font-weight: 600; }
.article h3 { font-size: 20px; margin: 12px 0 10px; }
.article p { color: var(--muted); font-size: 15px; flex: 1; }
.article .meta { margin-top: 18px; font-size: 13px; color: var(--faint); display: flex; gap: 10px; }
.article .arrow { color: var(--brand-2); font-weight: 600; margin-top: 16px; font-size: 14px; }

/* ---------- Careers / job list ---------- */
.job-list { display: grid; gap: 12px; }
.job { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 26px; border-radius: 14px; border: 1px solid var(--border); background: var(--panel); transition: all 0.25s var(--ease); }
.job:hover { border-color: var(--brand); transform: translateX(4px); }
.job .role h3 { font-size: 18px; }
.job .role p { color: var(--muted); font-size: 14px; margin-top: 4px; }
.job .pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill { font-size: 12px; padding: 5px 11px; border-radius: 999px; border: 1px solid var(--border); color: var(--muted); background: var(--panel-2); white-space: nowrap; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { display: flex; flex-direction: column; padding: 34px 30px; border-radius: var(--radius); border: 1px solid var(--border); background: linear-gradient(180deg, var(--panel), var(--bg-soft)); position: relative; }
.plan.featured { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand), 0 20px 60px var(--glow); }
.plan .tag { position: absolute; top: -12px; left: 30px; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; }
.plan h3 { font-size: 22px; }
.plan .price { font-size: 44px; font-weight: 900; letter-spacing: -0.03em; margin: 14px 0 4px; }
.plan .price small { font-size: 16px; color: var(--muted); font-weight: 500; }
.plan .desc { color: var(--muted); font-size: 14px; min-height: 42px; }
.plan ul { list-style: none; display: grid; gap: 12px; margin: 22px 0 26px; flex: 1; }
.plan li { color: var(--muted); font-size: 14.5px; display: flex; gap: 10px; }
.plan li::before { content: "✓"; color: var(--brand-2); font-weight: 700; }
.plan .btn { width: 100%; justify-content: center; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 540px; }
th, td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--border); }
th { color: var(--faint); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; background: var(--panel-2); }
td { color: var(--muted); }
tr:last-child td { border-bottom: none; }
td strong { color: var(--text); }

/* ---------- FAQ accordion ---------- */
.faq { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 14px; background: var(--panel); overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 16px; }
.faq-q .ico { color: var(--brand-2); transition: transform 0.3s var(--ease); flex: 0 0 auto; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a p { padding: 0 24px 22px; color: var(--muted); font-size: 15px; }

/* ---------- Forms ---------- */
.form-card { border-radius: var(--radius); border: 1px solid var(--border); background: linear-gradient(180deg, var(--panel), var(--bg-soft)); padding: 36px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; color: var(--text); }
.field label .req { color: var(--brand-3); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border-radius: 11px; border: 1px solid var(--border);
  background: var(--bg-soft); color: var(--text); font-family: inherit; font-size: 15px; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(124,92,255,0.18); }
.field textarea { resize: vertical; min-height: 120px; }
.field .error { color: var(--bad); font-size: 13px; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: var(--bad); }
.field.invalid .error { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; }
.form-success .big { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 18px; background: rgba(40,200,64,0.14); border: 1px solid rgba(40,200,64,0.4); color: var(--ok); font-size: 30px; }
.form-success h3 { font-size: 24px; margin-bottom: 10px; }
.form-success p { color: var(--muted); }
.muted-note { color: var(--faint); font-size: 13px; margin-top: 14px; }

/* ---------- Status page ---------- */
.status-banner { display: flex; align-items: center; gap: 14px; padding: 22px 26px; border-radius: var(--radius); border: 1px solid rgba(40,200,64,0.35); background: rgba(40,200,64,0.07); margin-bottom: 28px; }
.status-banner .dot-lg { width: 14px; height: 14px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 14px var(--ok); }
.status-banner h3 { font-size: 18px; }
.status-row { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid var(--border); }
.status-list { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.status-row:last-child { border-bottom: none; }
.status-row .name { font-weight: 500; }
.status-row .state { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--muted); }
.status-row .state .d { width: 9px; height: 9px; border-radius: 50%; }
.d.ok { background: var(--ok); } .d.warn { background: var(--warn); } .d.bad { background: var(--bad); }
.uptime-bars { display: flex; gap: 3px; margin-top: 14px; }
.uptime-bars i { flex: 1; height: 30px; border-radius: 3px; background: var(--ok); opacity: 0.85; }
.uptime-bars i.w { background: var(--warn); } .uptime-bars i.b { background: var(--bad); }

/* ---------- CTA ---------- */
.cta-box { border-radius: 28px; border: 1px solid var(--border); padding: 64px 48px; text-align: center; background: radial-gradient(600px circle at 50% 0%, rgba(124,92,255,0.18), transparent 70%), linear-gradient(180deg, var(--panel), var(--bg-soft)); position: relative; overflow: hidden; }
.cta-box h2 { font-size: clamp(30px, 4.4vw, 50px); margin-bottom: 16px; }
.cta-box p { color: var(--muted); font-size: 18px; max-width: 540px; margin: 0 auto 32px; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.member { text-align: center; padding: 26px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--panel); }
.member .avatar { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; font-size: 28px; font-weight: 800; color: #fff; }
.member h3 { font-size: 17px; }
.member p { color: var(--brand-2); font-size: 13px; margin-top: 3px; }
.member .bio { color: var(--muted); font-size: 13.5px; margin-top: 10px; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--border); padding: 64px 0 40px; background: var(--bg-soft); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.foot-grid h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--faint); margin-bottom: 18px; }
.foot-grid ul { list-style: none; display: grid; gap: 12px; }
.foot-grid a { color: var(--muted); font-size: 15px; transition: color 0.2s; }
.foot-grid a:hover { color: var(--text); }
.foot-brand p { color: var(--muted); font-size: 15px; max-width: 320px; margin-top: 16px; }
.foot-social { display: flex; gap: 12px; margin-top: 20px; }
.foot-social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border); display: grid; place-items: center; color: var(--muted); transition: all 0.25s var(--ease); }
.foot-social a:hover { border-color: var(--brand); color: var(--text); transform: translateY(-2px); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--border); color: var(--faint); font-size: 14px; flex-wrap: wrap; gap: 14px; }
.foot-bottom .links { display: flex; gap: 22px; }
.foot-bottom a:hover { color: var(--text); }

/* ---------- Misc ---------- */
.center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-24 { margin-top: 24px; }
.tag-soft { display: inline-block; font-size: 12px; padding: 5px 12px; border-radius: 999px; border: 1px solid var(--border); color: var(--brand-2); background: rgba(41,211,194,0.06); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .features, .models, .article-grid, .pricing-grid, .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .pipeline { grid-template-columns: 1fr 1fr; gap: 30px 0; }
  .step:not(:last-child)::after { display: none; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .job { flex-direction: column; align-items: flex-start; gap: 14px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  section { padding: 72px 0; }
  .stats, .pipeline, .foot-grid, .team-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}
