/* =====================================================================
   COHERENCE — Landing page styles
   Built on the design tokens in colors_and_type.css. Dark glassmorphic
   "mission control" marketing surface. Display: Space Grotesk. Body: Inter.
   ===================================================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* landing-specific marketing type scale (larger than app chrome) */
  --lp-display: clamp(40px, 5.2vw, 66px);
  --lp-h2: clamp(30px, 4vw, 46px);
  --lp-h3: clamp(20px, 2vw, 24px);
  --lp-lead: clamp(17px, 1.5vw, 21px);
  --lp-maxw: 1200px;
  --on-accent: #ffffff;     /* overridden by tweak when accent is light */
  --glow-a: var(--accent-primary);
  --glow-b: var(--c-electric-green);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-base);
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* layered radial glows — the app canvas signature, scaled up for marketing */
.lp-bg {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(70vw 60vh at 12% -8%, color-mix(in srgb, var(--glow-a) 16%, transparent), transparent 60%),
    radial-gradient(60vw 50vh at 92% 2%, color-mix(in srgb, var(--glow-b) 11%, transparent), transparent 55%),
    radial-gradient(80vw 60vh at 50% 110%, color-mix(in srgb, var(--glow-a) 9%, transparent), transparent 60%),
    var(--bg-primary);
}
.coh-light .lp-bg {
  background:
    radial-gradient(70vw 60vh at 12% -8%, color-mix(in srgb, var(--glow-a) 12%, transparent), transparent 60%),
    radial-gradient(60vw 50vh at 92% 2%, color-mix(in srgb, var(--glow-b) 16%, transparent), transparent 55%),
    var(--bg-primary);
}

::selection { background: color-mix(in srgb, var(--c-electric-green) 32%, transparent); color: var(--text-primary); }

* { scrollbar-width: thin; scrollbar-color: var(--border-default) transparent; }
*::-webkit-scrollbar { width: 8px; height: 8px; }
*::-webkit-scrollbar-thumb { background: var(--border-default); border-radius: 4px; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

/* ---------- shared layout ---------- */
.lp-wrap { width: 100%; max-width: var(--lp-maxw); margin: 0 auto; padding: 0 28px; }
.lp-section { padding: clamp(72px, 9vw, 140px) 0; position: relative; }
.lp-section.tight { padding: clamp(48px, 6vw, 88px) 0; }

.eyebrow {
  font-family: var(--font-base); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--shell-text-muted);
  display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--c-electric-green);
  display: inline-block; opacity: 0.8;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

.section-head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; display: grid; gap: 18px; justify-items: center; }
.section-head h2 {
  font-family: var(--font-display); font-size: var(--lp-h2); font-weight: 700;
  line-height: 1.05; letter-spacing: -0.02em; color: var(--text-primary); text-wrap: balance;
}
.section-head p { font-size: var(--lp-lead); line-height: 1.55; color: var(--text-secondary); max-width: 60ch; text-wrap: pretty; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border-radius: var(--r-pill); font-size: 15px; font-weight: 700; letter-spacing: -0.01em;
  min-height: 50px; padding: 0 26px; border: 1px solid transparent; white-space: nowrap;
  transition: transform var(--t-fast) var(--ease-out), filter var(--t-fast) var(--ease-out),
              background var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}
.btn-primary { background: var(--accent-primary); color: var(--on-accent); box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-primary) 32%, transparent); }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-ghost { background: var(--shell-hover-bg); border-color: var(--shell-border); color: var(--text-primary); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--shell-active-border); background: var(--shell-active-bg); }
.btn-sm { min-height: 40px; padding: 0 18px; font-size: 13px; }

/* ---------- nav ---------- */
.lp-nav {
  position: sticky; top: 0; z-index: 50; height: 68px;
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--shell-base) 72%, transparent);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--shell-border);
}
.lp-nav .lp-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.lp-brand { display: flex; align-items: center; gap: 11px; }
.lp-brand .mark {
  width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0;
  background: var(--c-primary-green);
  display: grid; place-items: center; position: relative; overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--c-electric-green) 40%, transparent);
}
.lp-brand .mark::after {
  content: ""; width: 12px; height: 12px; border-radius: 3px;
  background: var(--c-electric-green); box-shadow: 0 0 14px color-mix(in srgb, var(--c-electric-green) 70%, transparent);
}
.lp-brand .wm { display: grid; gap: 1px; }
.lp-brand .nm { font-family: var(--font-display); font-size: 17px; font-weight: 700; letter-spacing: 0.02em; color: var(--text-primary); line-height: 1; }
.lp-brand .st { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--shell-text-muted); }
.lp-nav-links { display: flex; align-items: center; gap: 30px; }
.lp-nav-links a { font-size: 14px; font-weight: 500; color: var(--shell-text-secondary); transition: color var(--t-fast) ease; }
.lp-nav-links a:hover { color: var(--text-primary); }
.lp-nav-cta { display: flex; align-items: center; gap: 14px; }
.lp-nav-cta .signin { font-size: 14px; font-weight: 600; color: var(--shell-text-secondary); }
.lp-nav-cta .signin:hover { color: var(--text-primary); }
@media (max-width: 860px) { .lp-nav-links { display: none; } .lp-nav-cta .signin { display: none; } }

/* ---------- hero ---------- */
.hero { padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(40px, 5vw, 72px); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.18fr); gap: clamp(36px, 5vw, 72px); align-items: center; }
.hero-copy { display: grid; gap: 26px; align-content: start; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; align-self: start;
  padding: 7px 14px 7px 11px; border-radius: var(--r-pill);
  border: 1px solid var(--shell-border); background: var(--shell-hover-bg);
  font-size: 12px; font-weight: 600; color: var(--shell-text-secondary);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--accent-success); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-success) 22%, transparent); }
.hero h1 {
  font-family: var(--font-display); font-size: var(--lp-display); font-weight: 700;
  line-height: 1.0; letter-spacing: -0.03em; color: var(--text-primary); text-wrap: balance;
}
.hero h1 .accent { color: var(--c-electric-green); }
.hero h1 .grad {
  background: linear-gradient(120deg, var(--text-primary), var(--accent-primary));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-lead { font-size: var(--lp-lead); line-height: 1.55; color: var(--text-secondary); max-width: 52ch; text-wrap: pretty; }
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--shell-text-muted); }
.hero-trust .row { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .row::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--c-electric-green); flex-shrink: 0; }

/* ---------- dashboard mockup ---------- */
.dash {
  border-radius: 22px; border: 1px solid var(--shell-border);
  background: var(--shell-elevated); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.5), 0 2px 0 color-mix(in srgb, #fff 6%, transparent) inset;
  overflow: hidden; position: relative;
}
.coh-light .dash { box-shadow: 0 40px 90px rgba(15,23,42,0.18); }
.dash-head {
  display: flex; align-items: center; gap: 12px; padding: 13px 16px;
  border-bottom: 1px solid var(--shell-border);
  background: color-mix(in srgb, var(--shell-base) 60%, transparent);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots i { width: 11px; height: 11px; border-radius: 999px; background: var(--border-default); display: block; }
.dash-proj { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--shell-text-secondary); margin-left: 4px; }
.dash-proj .chip { font-family: var(--font-mono); font-size: 11px; padding: 3px 9px; border-radius: 999px; border: 1px solid var(--shell-border); background: var(--shell-hover-bg); }
.dash-cost { margin-left: auto; font-family: var(--font-mono); font-size: 11px; color: var(--shell-text-muted); border: 1px solid var(--shell-border); border-radius: 999px; padding: 4px 10px; background: var(--shell-hover-bg); }
.dash-body { padding: 16px; display: grid; gap: 14px; }

.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dash-kpi { border: 1px solid var(--shell-border); border-radius: 14px; background: var(--shell-hover-bg); padding: 12px 13px; display: grid; gap: 5px; }
.dash-kpi .lbl { font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--shell-text-muted); }
.dash-kpi .val { font-family: var(--font-mono); font-size: 22px; font-weight: 700; line-height: 1; color: var(--text-primary); }
.dash-kpi .trend { font-size: 10.5px; font-weight: 600; }
.dash-kpi .trend.up { color: var(--accent-success); }

.dash-attn {
  border: 1px solid color-mix(in srgb, var(--accent-warning) 32%, transparent);
  background: color-mix(in srgb, var(--accent-warning) 9%, transparent);
  border-radius: 14px; padding: 12px 14px; display: flex; align-items: center; gap: 12px;
}
.dash-attn .ttl { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--accent-warning); }
.dash-attn .msg { font-size: 12.5px; color: var(--shell-text-secondary); }
.dash-attn .msg b { color: var(--text-primary); font-weight: 600; }
.dash-attn .go { margin-left: auto; font-size: 12px; font-weight: 700; color: var(--accent-primary); white-space: nowrap; }

.dash-team-label { font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--shell-text-muted); display: flex; align-items: center; gap: 8px; }
.dash-team-label .count { color: var(--c-electric-green); }
.dash-vps { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dvp { border: 1px solid var(--shell-border); border-radius: 14px; background: var(--shell-hover-bg); padding: 11px; display: grid; gap: 8px; }
.dvp .top { display: flex; align-items: center; gap: 9px; }
.dvp .av-wrap { position: relative; flex-shrink: 0; }
.dvp .av { width: 32px; height: 32px; border-radius: 999px; object-fit: cover; border: 1px solid var(--shell-border); }
.dvp .sd { position: absolute; right: -1px; bottom: -1px; width: 10px; height: 10px; border-radius: 999px; border: 2px solid var(--shell-elevated); }
.dvp .meta { min-width: 0; }
.dvp .nm { font-size: 12.5px; font-weight: 700; color: var(--text-primary); }
.dvp .role { font-size: 10.5px; color: var(--shell-text-muted); }
.dvp .task { font-size: 11.5px; font-style: italic; color: var(--shell-text-secondary); line-height: 1.35; }

.sd-active { background: var(--accent-success); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-success) 22%, transparent); }
.sd-wait,
.sd-waiting { background: var(--accent-warning); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-warning) 22%, transparent); }
.sd-blocked { background: var(--accent-danger); }
.sd-idle { background: var(--flow-muted); }

.dash-pulse {
  position: absolute; z-index: 2; left: 50%; transform: translateX(-50%); top: -15px; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 13px; border-radius: var(--r-pill);
  background: var(--c-electric-green); color: var(--c-primary-green);
  font-size: 12px; font-weight: 700; box-shadow: 0 12px 30px color-mix(in srgb, var(--c-electric-green) 36%, transparent);
}
.dash-pulse .liv { width: 7px; height: 7px; border-radius: 999px; background: var(--c-primary-green); animation: lpPulse 1.6s var(--ease-out) infinite; }
@keyframes lpPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.7); } }

/* ---------- logos / trust strip ---------- */
.trust-strip { border-top: 1px solid var(--shell-border); border-bottom: 1px solid var(--shell-border); }
.trust-strip .lp-wrap { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; padding-top: 26px; padding-bottom: 26px; }
.trust-strip .lab { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--shell-text-muted); font-weight: 600; }
.trust-strip .items { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.trust-strip .it { font-size: 13px; font-weight: 600; color: var(--shell-text-secondary); display: inline-flex; align-items: center; gap: 8px; }
.trust-strip .it b { color: var(--text-primary); font-family: var(--font-mono); }

/* ---------- team grid ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tcard {
  border: 1px solid var(--shell-border); border-radius: 18px;
  background: var(--shell-elevated); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  padding: 18px; display: grid; gap: 14px; position: relative; overflow: hidden;
  transition: transform var(--t-medium) var(--ease-out), border-color var(--t-medium) ease;
}
.tcard::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--dept); opacity: 0.85;
}
.tcard:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--dept) 45%, var(--shell-border)); }
.tcard .top { display: flex; align-items: center; gap: 12px; }
.tcard .av-wrap { position: relative; flex-shrink: 0; }
.tcard .av { width: 52px; height: 52px; border-radius: 999px; object-fit: cover; border: 2px solid color-mix(in srgb, var(--dept) 55%, transparent); }
.tcard .sd { position: absolute; right: -1px; bottom: -1px; width: 13px; height: 13px; border-radius: 999px; border: 2.5px solid var(--shell-elevated); }
.tcard .nm { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text-primary); line-height: 1.1; }
.tcard .role { font-size: 12px; color: var(--shell-text-muted); }
.tcard .dept-pill { font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--dept); }
.tcard .task-row {
  border-top: 1px solid var(--shell-border); padding-top: 12px; display: grid; gap: 6px;
}
.tcard .task-status { display: inline-flex; align-items: center; gap: 7px; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; color: var(--shell-text-muted); }
.tcard .task-status .sd { position: static; width: 7px; height: 7px; border: none; }
.tcard .task { font-size: 13px; font-style: italic; line-height: 1.45; color: var(--shell-text-secondary); }
.tcard .blurb { font-size: 13px; line-height: 1.5; color: var(--shell-text-secondary); }

/* ---------- how it works ---------- */
.steps { display: grid; gap: 0; max-width: 880px; margin: 0 auto; }
.step {
  display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding: 26px 0;
  border-bottom: 1px solid var(--shell-border); align-items: start; position: relative;
}
.step:last-child { border-bottom: none; }
.step .idx-col { display: grid; justify-items: center; gap: 0; position: relative; }
.step .idx {
  width: 46px; height: 46px; border-radius: 999px; flex-shrink: 0;
  border: 1px solid var(--shell-border); background: var(--shell-hover-bg);
  display: grid; place-items: center; font-family: var(--font-mono); font-size: 15px; font-weight: 700;
  color: var(--text-primary); z-index: 1;
}
.step.you .idx { border-color: var(--shell-active-border); background: var(--shell-active-bg); color: var(--c-electric-green); }
.step .line { position: absolute; top: 46px; bottom: -26px; width: 1px; background: var(--shell-border); }
.step:last-child .line { display: none; }
.step .body { display: grid; gap: 10px; padding-top: 4px; }
.step .who { display: inline-flex; align-items: center; gap: 9px; }
.step .who .av { width: 26px; height: 26px; border-radius: 999px; object-fit: cover; border: 1px solid var(--shell-border); }
.step .who .label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--shell-text-muted); }
.step h3 { font-family: var(--font-display); font-size: var(--lp-h3); font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; }
.step p { font-size: 15px; line-height: 1.6; color: var(--shell-text-secondary); max-width: 60ch; }
.step .artifact { font-family: var(--font-mono); font-size: 11.5px; color: var(--shell-text-muted); display: inline-flex; align-items: center; gap: 8px; margin-top: 2px; }
.step .artifact .tag { padding: 3px 9px; border-radius: 999px; border: 1px solid var(--shell-border); background: var(--shell-hover-bg); color: var(--shell-text-secondary); }

/* ---------- use cases ---------- */
.uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.uc {
  border: 1px solid var(--shell-border); border-radius: 18px; background: var(--shell-elevated);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  padding: 24px; display: grid; gap: 12px; align-content: start;
  transition: transform var(--t-medium) var(--ease-out), border-color var(--t-medium) ease, background var(--t-medium) ease;
}
.uc:hover { transform: translateY(-3px); border-color: var(--shell-active-border); }
.uc .ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; border: 1px solid var(--shell-border); background: var(--shell-hover-bg); color: var(--c-electric-green); }
.uc h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text-primary); }
.uc p { font-size: 14px; line-height: 1.55; color: var(--shell-text-secondary); }
.uc .stack { display: flex; gap: 0; margin-top: 4px; }
.uc .stack img { width: 26px; height: 26px; border-radius: 999px; object-fit: cover; border: 2px solid var(--shell-elevated); margin-left: -8px; }
.uc .stack img:first-child { margin-left: 0; }

/* ---------- best practices ---------- */
.bp { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.05fr); gap: clamp(36px, 5vw, 72px); align-items: center; }
.bp-copy { display: grid; gap: 22px; align-content: start; }
.bp-copy h2 { font-family: var(--font-display); font-size: var(--lp-h2); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; color: var(--text-primary); text-wrap: balance; }
.bp-copy .lead { font-size: var(--lp-lead); line-height: 1.55; color: var(--text-secondary); }
.bp-list { display: grid; gap: 16px; }
.bp-item { display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start; }
.bp-item .ck { width: 26px; height: 26px; border-radius: 999px; display: grid; place-items: center; flex-shrink: 0; background: color-mix(in srgb, var(--c-electric-green) 16%, transparent); border: 1px solid color-mix(in srgb, var(--c-electric-green) 40%, transparent); color: var(--c-electric-green); margin-top: 1px; }
.bp-item h4 { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.bp-item p { font-size: 13.5px; line-height: 1.5; color: var(--shell-text-secondary); }

/* handoff card visual */
.handoff {
  border-radius: 20px; border: 1px solid var(--shell-border); background: var(--shell-elevated);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); box-shadow: var(--shadow-panel);
  padding: 20px; display: grid; gap: 14px;
}
.handoff .hh { display: flex; align-items: center; justify-content: space-between; }
.handoff .hh .t { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text-primary); }
.handoff .hh .pill { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.pill-ready { color: var(--accent-success); background: color-mix(in srgb, var(--accent-success) 14%, transparent); border: 1px solid color-mix(in srgb, var(--accent-success) 32%, transparent); }
.handoff-flow { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hf-node { display: grid; justify-items: center; gap: 6px; }
.hf-node img { width: 38px; height: 38px; border-radius: 999px; object-fit: cover; border: 2px solid color-mix(in srgb, var(--dept,#4A7CF7) 55%, transparent); }
.hf-node .l { font-size: 10px; color: var(--shell-text-muted); }
.hf-arrow { color: var(--shell-text-muted); opacity: 0.7; }
.handoff .check-rows { display: grid; gap: 9px; border-top: 1px solid var(--shell-border); padding-top: 14px; }
.handoff .cr { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--shell-text-secondary); }
.handoff .cr .dot { width: 16px; height: 16px; border-radius: 999px; display: grid; place-items: center; color: var(--accent-success); flex-shrink: 0; }
.handoff .approve { display: flex; gap: 10px; margin-top: 4px; }
.handoff .approve .btn { flex: 1; }

/* ---------- testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tst {
  border: 1px solid var(--shell-border); border-radius: 18px; background: var(--shell-elevated);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  padding: 24px; display: grid; gap: 18px; align-content: start;
}
.tst .quote { font-size: 15.5px; line-height: 1.6; color: var(--shell-text-secondary); text-wrap: pretty; }
.tst .quote b { color: var(--text-primary); font-weight: 600; }
.tst .who { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--shell-border); padding-top: 16px; }
.tst .who .ph { width: 40px; height: 40px; border-radius: 999px; flex-shrink: 0; background: linear-gradient(135deg, var(--accent-primary), var(--c-primary-green)); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 15px; }
.tst .who .nm { font-size: 13.5px; font-weight: 700; color: var(--text-primary); }
.tst .who .ttl { font-size: 12px; color: var(--shell-text-muted); }

/* ---------- faq ---------- */
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 0; }
.faq-item { border-bottom: 1px solid var(--shell-border); }
.faq-q {
  width: 100%; background: transparent; border: none; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 4px; font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--text-primary);
}
.faq-q .pm { width: 26px; height: 26px; flex-shrink: 0; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--shell-text-secondary); transition: transform var(--t-medium) var(--ease-out), opacity var(--t-medium) ease; }
.faq-q .pm::before { top: 12px; left: 4px; right: 4px; height: 2px; }
.faq-q .pm::after { left: 12px; top: 4px; bottom: 4px; width: 2px; }
.faq-item.open .faq-q .pm::after { transform: rotate(90deg); opacity: 0; }
.faq-item.open .faq-q { color: var(--c-electric-green); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t-medium) var(--ease-out); }
.faq-a .inner { padding: 0 40px 22px 4px; font-size: 14.5px; line-height: 1.65; color: var(--shell-text-secondary); }

/* ---------- final cta ---------- */
.final {
  border-radius: 28px; border: 1px solid var(--shell-border); overflow: hidden; position: relative;
  background:
    radial-gradient(60vw 50vh at 30% -20%, color-mix(in srgb, var(--accent-primary) 22%, transparent), transparent 60%),
    radial-gradient(50vw 40vh at 90% 120%, color-mix(in srgb, var(--c-electric-green) 14%, transparent), transparent 60%),
    var(--shell-elevated);
  padding: clamp(48px, 7vw, 88px) clamp(28px, 5vw, 72px); text-align: center;
  display: grid; gap: 26px; justify-items: center; box-shadow: var(--shadow-panel);
}
.final h2 { font-family: var(--font-display); font-size: var(--lp-h2); font-weight: 700; line-height: 1.04; letter-spacing: -0.02em; color: var(--text-primary); text-wrap: balance; max-width: 16ch; }
.final p { font-size: var(--lp-lead); line-height: 1.55; color: var(--text-secondary); max-width: 52ch; }
.final .team-stack { display: flex; align-items: center; justify-content: center; margin-bottom: 2px; }
.final .team-stack img { width: 44px; height: 44px; border-radius: 999px; object-fit: cover; border: 2.5px solid var(--shell-elevated); margin-left: -12px; }
.final .team-stack img:first-child { margin-left: 0; }
.final .note { font-size: 13px; color: var(--shell-text-muted); }

/* ---------- footer ---------- */
.lp-footer { border-top: 1px solid var(--shell-border); padding: 56px 0 40px; }
.lp-footer .cols { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 32px; margin-bottom: 44px; }
.lp-footer .about { display: grid; gap: 14px; max-width: 320px; }
.lp-footer .about p { font-size: 13.5px; line-height: 1.6; color: var(--shell-text-muted); }
.lp-footer .col h5 { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--shell-text-muted); margin-bottom: 14px; font-weight: 700; }
.lp-footer .col a { display: block; font-size: 14px; color: var(--shell-text-secondary); padding: 5px 0; transition: color var(--t-fast) ease; }
.lp-footer .col a:hover { color: var(--text-primary); }
.lp-footer .bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; border-top: 1px solid var(--shell-border); padding-top: 24px; font-size: 12.5px; color: var(--shell-text-muted); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .dash-pulse .liv { animation: none; } }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 640px; }
  .dash { max-width: 640px; }
  .bp { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .uc-grid, .tst-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .lp-wrap { padding: 0 18px; }
  .team-grid, .uc-grid, .tst-grid, .dash-vps, .dash-kpis { grid-template-columns: 1fr; }
  .dash-kpis { grid-template-columns: repeat(3, 1fr); }
  .lp-footer .cols { grid-template-columns: 1fr 1fr; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; }
  .step { grid-template-columns: 44px 1fr; gap: 16px; }
}
