/* =====================================================================
   GenTechCloud — Design System v3 "Control Plane"
   A cloud-operations aesthetic for a company that runs one: graphite ink,
   warm paper, a single restrained signal-amber accent, and a monospace
   "systems console" register for labels, status, and data — instead of
   generic AI-gradient chrome. Vanilla CSS, no build step (cPanel friendly).
   ===================================================================== */

:root {
  /* Neutrals — validated "Trust & Authority" B2B enterprise palette (navy/grey) */
  --ink: #0f172a;
  --ink-2: #1e293b;
  --ink-3: #334155;
  --paper: #f8fafc;
  --paper-2: #eef2f7;
  --paper-3: #e2e8f0;
  --line: #e2e8f0;
  --line-2: #cbd5e1;
  --line-dark: rgba(255, 255, 255, 0.12);
  --muted: #64748b;
  --muted-2: #94a3b8;
  --ink-500: #64748b; /* legacy alias */

  /* Signal accent — trust blue, used sparingly: live status, CTA, links on dark */
  --signal: #0369a1;
  --signal-2: #075985;
  --signal-soft: rgba(3, 105, 161, 0.1);
  --ok: #059669;
  --ok-soft: rgba(5, 150, 105, 0.12);
  --wire: #475569; /* schematic / diagram lines, kept muted */

  /* Legacy gradient aliases still referenced by page-level inline styles */
  --grad-ai: linear-gradient(120deg, var(--signal-2), var(--signal));
  --grad-ai-soft: linear-gradient(120deg, rgba(3, 105, 161, 0.1), rgba(3, 105, 161, 0.05));
  --grad-violet: linear-gradient(120deg, var(--ink-3), var(--ink));

  /* Type — validated for enterprise B2B SaaS (ui-ux-pro-max: Plus Jakarta Sans / Inter / JetBrains Mono) */
  --font-display: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Layout */
  --container: 1200px;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  /* Shadows — quiet, no color bleed */
  --shadow-sm: 0 2px 8px rgba(20, 22, 28, 0.05);
  --shadow: 0 14px 36px rgba(20, 22, 28, 0.09);
  --shadow-lg: 0 30px 70px rgba(20, 22, 28, 0.16);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--signal); color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.08; font-weight: 600; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5.6vw, 4.2rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.4rem); }
p { color: var(--muted); }
.lead { font-size: clamp(1.04rem, 1.5vw, 1.24rem); color: var(--muted); line-height: 1.6; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(60px, 8vw, 116px) 0; }
.section--tight { padding: clamp(44px, 6vw, 76px) 0; }
.center { text-align: center; }
.maxw-720 { max-width: 720px; }
.mx-auto { margin-inline: auto; }
.mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem;
  font-family: var(--font-body);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap; border: 1px solid transparent;
}
.btn svg { width: 17px; height: 17px; }
.btn--primary { background: var(--signal); color: #fff; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(194, 102, 10, 0.28); background: var(--signal-2); }
.btn--accent { background: var(--ink); color: #fff; font-weight: 600; }
.btn--accent:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.22); }
.btn--ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--light { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }

/* ---------- Eyebrow / chips — monospace "systems console" register ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-weight: 500; font-size: 0.78rem;
  letter-spacing: 0.02em; color: var(--signal);
}
.eyebrow::before { content: "//"; opacity: 0.55; }
.eyebrow--light { color: var(--signal); }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px;
  border-radius: 999px; background: var(--paper); color: var(--ink);
  font-size: 0.82rem; font-weight: 600; border: 1px solid var(--line-2);
  font-family: var(--font-mono);
}
.chip--grad { background: var(--signal-soft); border-color: rgba(194, 102, 10, 0.28); color: var(--signal-2); }

/* ---------- Section headers ---------- */
.sec-head { max-width: 760px; margin-bottom: 52px; }
.sec-head.center { margin-inline: auto; }
.sec-head h2 { margin: 14px 0 16px; }

/* ---------- Navbar ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 18px 0; transition: background .3s, box-shadow .3s, padding .3s; }
.nav.scrolled { background: rgba(252,251,249,.9); backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--line); padding: 12px 0; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: #fff; letter-spacing: -.01em; }
.nav.scrolled .brand, .nav--solid .brand { color: var(--ink); }
.brand__mark { width: 34px; height: 34px; flex: 0 0 auto; object-fit: contain; border-radius: 8px; }
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a { color: rgba(255,255,255,.82); padding: 10px 12px; border-radius: 8px; font-weight: 500; font-size: .92rem; white-space: nowrap; transition: color .2s, background .2s; }
.nav__links a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav.scrolled .nav__links a, .nav--solid .nav__links a { color: var(--ink); }
.nav.scrolled .nav__links a:hover, .nav--solid .nav__links a:hover { color: var(--signal); background: var(--paper-2); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__cta a.btn:not(.btn--primary) { color: rgba(255,255,255,.92); }
.nav.scrolled .nav__cta a.btn:not(.btn--primary) { color: var(--ink); }
.nav.scrolled .btn--primary { background: var(--signal); }
.nav__burger { display: none; width: 44px; height: 44px; border-radius: 8px; align-items: center; justify-content: center; }
.nav__burger span, .nav__burger span::before, .nav__burger span::after { content: ""; display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; position: relative; }
.nav__burger span::before { position: absolute; top: -6px; } .nav__burger span::after { position: absolute; top: 6px; }
.nav.scrolled .nav__burger span, .nav.scrolled .nav__burger span::before, .nav.scrolled .nav__burger span::after { background: var(--ink); }

.mobile-menu { position: fixed; inset: 0; z-index: 200; background: var(--ink); padding: 90px 28px 40px; transform: translateX(100%); transition: transform .4s var(--ease); display: flex; flex-direction: column; gap: 4px; }
.mobile-menu.open { transform: none; }
.mobile-menu a { color: #fff; font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-menu .btn { margin-top: 24px; justify-content: center; }
.mobile-close { position: absolute; top: 24px; right: 24px; width: 46px; height: 46px; border-radius: 8px; background: rgba(255,255,255,.1); color: #fff; font-size: 1.6rem; display: grid; place-items: center; }
.no-scroll { overflow: hidden; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--ink); color: #fff; padding: clamp(150px, 18vw, 210px) 0 clamp(80px, 10vw, 130px); overflow: hidden; }
.hero__grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(1000px 640px at 60% 0%, #000 25%, transparent 78%); }
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--signal); }
.hero__lead { color: rgba(255,255,255,.68); margin: 20px 0 32px; max-width: 560px; font-size: 1.15rem; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 38px; margin-top: 46px; flex-wrap: wrap; }
.hero__stat .num { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: #fff; }
.hero__stat .lbl { font-family: var(--font-mono); font-size: .78rem; color: rgba(255,255,255,.5); }
.hero__badges { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); font-size: .8rem; color: rgba(255,255,255,.8); font-family: var(--font-mono); }
.hero__badge b { color: #fff; font-weight: 600; font-family: var(--font-body); }

/* ---------- Hero visual — status console (signature element) ---------- */
.hero__visual { position: relative; }
.console { position: relative; width: 100%; max-width: 460px; margin-inline: auto; border-radius: var(--radius-lg); background: var(--ink-2); border: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow-lg); overflow: hidden; }
.console__bar { display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
.console__dots { display: flex; gap: 6px; }
.console__dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.18); }
.console__title { font-family: var(--font-mono); font-size: .78rem; color: rgba(255,255,255,.6); }
.console__live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: .72rem; color: var(--ok); font-weight: 600; }
.console__live i { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); animation: pulseDot 1.8s infinite; }
.console__body { padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.console__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.cstat { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-sm); padding: 12px; display: flex; flex-direction: column; gap: 3px; }
.cstat__label { font-family: var(--font-mono); font-size: .62rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .04em; }
.cstat__val { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: #fff; }
.cstat__trend { font-family: var(--font-mono); font-size: .64rem; color: var(--ok); }
.console__chart { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius-sm); padding: 14px; }
.console__charttop { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: .7rem; color: rgba(255,255,255,.55); margin-bottom: 10px; }
.console__pill { font-family: var(--font-mono); font-size: .62rem; padding: 3px 9px; border-radius: 999px; background: var(--ok-soft); color: var(--ok); }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 62px; }
.bars span { flex: 1; border-radius: 3px 3px 0 0; background: var(--signal); height: var(--h); transform-origin: bottom; animation: barGrow .8s var(--ease) backwards; animation-delay: var(--d); opacity: .92; }
.console__deploy { display: flex; flex-direction: column; gap: 9px; }
.drow { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-mono); font-size: .76rem; color: rgba(255,255,255,.78); }
.drow__name { display: inline-flex; align-items: center; gap: 9px; }
.drow__ok, .drow__run { width: 14px; height: 14px; border-radius: 50%; flex: 0 0 auto; }
.drow__ok { background: var(--ok); position: relative; }
.drow__ok::after { content: ""; position: absolute; left: 4px; top: 2px; width: 4px; height: 7px; border: solid var(--ink-2); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.drow__run { border: 2px solid rgba(194,102,10,.35); border-top-color: var(--signal); animation: spin 1s linear infinite; }
.drow__tag { color: var(--ok); }
.drow__bar { width: 80px; height: 5px; border-radius: 999px; background: rgba(255,255,255,.1); overflow: hidden; }
.drow__bar b { display: block; height: 100%; width: 40%; border-radius: 999px; background: var(--signal); animation: fillbar 2.6s ease-in-out infinite; }

.hfloat { position: absolute; display: flex; align-items: center; gap: 11px; background: var(--paper); color: var(--ink); border-radius: var(--radius); padding: 11px 15px; box-shadow: var(--shadow-lg); font-size: .8rem; font-weight: 600; border: 1px solid var(--line); }
.hfloat small { display: block; color: var(--muted); font-weight: 500; font-size: .7rem; font-family: var(--font-mono); }
.hfloat__ico { width: 32px; height: 32px; border-radius: var(--radius-sm); display: grid; place-items: center; background: var(--ink); color: var(--signal); flex: 0 0 auto; }
.hfloat__ico svg { width: 18px; height: 18px; }
.hfloat--a { top: -4%; right: -4%; }
.hfloat--b { bottom: -4%; left: -5%; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes barGrow { from { transform: scaleY(0); opacity: 0; } }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(62,138,92,.5); } 70% { box-shadow: 0 0 0 7px rgba(62,138,92,0); } 100% { box-shadow: 0 0 0 0 rgba(62,138,92,0); } }
@keyframes fillbar { 0% { width: 8%; } 50% { width: 78%; } 100% { width: 8%; } }

/* ---------- Trust strip ---------- */
.trust { padding: 36px 0; border-bottom: 1px solid var(--line); background: var(--paper); }
.trust__label { text-align: center; font-family: var(--font-mono); font-size: .78rem; letter-spacing: .04em; color: var(--muted-2); font-weight: 500; margin-bottom: 22px; }
.trust__row { display: flex; align-items: center; justify-content: center; gap: clamp(28px, 6vw, 64px); flex-wrap: wrap; }
.trust__row span { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--ink); opacity: .4; transition: opacity .2s, color .2s; }
.trust__row span:hover { color: var(--signal); opacity: 1; }
.trust--features .trustf { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 4vw, 52px); flex-wrap: wrap; }
.trustf__lead { font-size: .9rem; color: var(--muted); font-weight: 500; }
.trustf__item { display: flex; align-items: center; gap: 12px; }
.trustf__ico { width: 42px; height: 42px; border-radius: var(--radius-sm); display: grid; place-items: center; background: var(--paper-2); color: var(--signal); flex: 0 0 auto; border: 1px solid var(--line); }
.trustf__ico svg { width: 21px; height: 21px; }
.trustf__item b { display: block; color: var(--ink); font-family: var(--font-display); font-size: .92rem; font-weight: 600; }
.trustf__item span { font-size: .8rem; color: var(--muted); }

/* ---------- Backgrounds ---------- */
.bg-soft { background: var(--paper-2); }
.bg-soft-2 { background: var(--paper-3); }
.bg-dark { background: var(--ink); color: #fff; position: relative; }
.bg-dark h2, .bg-dark h3 { color: #fff; }
.bg-dark p { color: rgba(255,255,255,.66); }
.text-light { color: rgba(255,255,255,.8) !important; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; position: relative; overflow: hidden; height: 100%; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-2); }
.card__icon { width: 50px; height: 50px; border-radius: var(--radius-sm); display: grid; place-items: center; background: var(--ink); color: var(--signal); margin-bottom: 18px; transition: background .3s, color .3s; }
.card:hover .card__icon { background: var(--signal); color: #fff; }
.card__icon svg { width: 25px; height: 25px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .97rem; }
.card__list { margin-top: 16px; display: flex; flex-direction: column; gap: 9px; }
.card__list li { display: flex; gap: 9px; font-size: .92rem; color: var(--ink); align-items: flex-start; }
.card__list li svg { width: 17px; height: 17px; color: var(--signal); flex: 0 0 auto; margin-top: 3px; }
.card__link { margin-top: 20px; display: inline-flex; align-items: center; gap: 7px; color: var(--signal); font-weight: 600; font-size: .92rem; }
.card__link svg { width: 16px; height: 16px; transition: transform .25s; }
.card:hover .card__link svg { transform: translateX(4px); }
.card--glass { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); color: #fff; }
.card--glass h3 { color: #fff; } .card--glass p { color: rgba(255,255,255,.68); }
.card--glass .card__icon { background: rgba(255,255,255,.08); color: var(--signal); }

/* ---------- Image cards & bento ---------- */
.imgcard { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 300px; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; color: #fff; isolation: isolate; background: var(--ink); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.imgcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.imgcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s var(--ease); }
.imgcard:hover img { transform: scale(1.05); }
.imgcard::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,22,28,.15) 0%, rgba(20,22,28,.6) 55%, rgba(20,22,28,.9) 100%); }
.imgcard h3 { color: #fff; margin-bottom: 8px; }
.imgcard p { color: rgba(255,255,255,.8); font-size: .96rem; }
.imgcard .chip { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.22); margin-bottom: 14px; }

.bento { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; gap: 18px; }
.bento__item { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--paper); padding: 26px; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.bento__item:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.bento__item--img { color: #fff; border: none; justify-content: flex-end; background: var(--ink); }
.bento__item--img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s var(--ease); }
.bento__item--img:hover img { transform: scale(1.05); }
.bento__item--img::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,22,28,.1), rgba(20,22,28,.85)); }
.bento__item--img h3, .bento__item--img h4 { color: #fff; }
.bento__item--dark { background: var(--ink); color: #fff; border: none; }
.bento__item--dark h3, .bento__item--dark h4 { color: #fff; }
.bento__item--lime { background: var(--signal-soft); border-color: rgba(194,102,10,.25); }
.bento__item--lime h4 { color: var(--ink); }
.bento__item--lime p { color: var(--ink); opacity: .75; }
.bento__item h4 { font-family: var(--font-display); font-size: 1.02rem; color: var(--ink); margin-bottom: 6px; font-weight: 600; }
.bento__item p { font-size: .9rem; }
.bento__item .b-ico { width: 44px; height: 44px; border-radius: var(--radius-sm); display: grid; place-items: center; background: var(--ink); color: var(--signal); margin-bottom: auto; }
.bento__item--lime .b-ico { background: var(--ink); color: var(--signal); }
.bento__item .b-ico svg { width: 22px; height: 22px; }
.bento__item .b-num { font-family: var(--font-display); font-size: clamp(1.9rem,3vw,2.6rem); font-weight: 600; line-height: 1; margin-bottom: 6px; color: var(--signal); }
.bento__item--dark .b-num { color: var(--signal); }
.col-2 { grid-column: span 2; } .col-3 { grid-column: span 3; } .col-4 { grid-column: span 4; }
.row-2 { grid-row: span 2; }

/* ---------- Split / feature rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); position: relative; background: var(--ink); min-height: 320px; }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.feature-list { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.feature-list li { display: flex; gap: 14px; }
.feature-list .fi { width: 42px; height: 42px; border-radius: var(--radius-sm); flex: 0 0 auto; display: grid; place-items: center; background: var(--signal-soft); color: var(--signal-2); }
.feature-list .fi svg { width: 21px; height: 21px; }
.feature-list h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--ink); margin-bottom: 2px; }
.feature-list p { font-size: .94rem; }
.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 8px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; font-size: .96rem; color: var(--ink); }
.checks li svg { width: 19px; height: 19px; color: var(--signal); flex: 0 0 auto; margin-top: 3px; }

/* ---------- Stat band ---------- */
.statband { background: var(--ink); color: #fff; border-radius: var(--radius-xl); padding: clamp(40px, 6vw, 64px); position: relative; overflow: hidden; }
.statband__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.statband .num { font-family: var(--font-display); font-size: clamp(2.2rem, 4.2vw, 3.2rem); font-weight: 600; color: var(--signal); }
.statband .lbl { font-family: var(--font-mono); color: rgba(255,255,255,.7); font-size: .88rem; margin-top: 4px; }

/* ---------- Process / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; padding-top: 16px; }
.step__num { font-family: var(--font-mono); font-size: .95rem; font-weight: 600; color: #fff; width: 42px; height: 42px; border-radius: var(--radius-sm); display: grid; place-items: center; background: var(--ink); margin-bottom: 16px; }
.step h3 { font-size: 1.14rem; margin-bottom: 8px; }
.step p { font-size: .95rem; }
.step:not(:last-child)::before { content: ""; position: absolute; top: 37px; left: 58px; right: -12px; height: 1px; background: var(--line-2); }

/* ---------- Industries / product registry ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ind { display: flex; flex-direction: column; gap: 14px; padding: 24px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--paper); transition: .3s var(--ease); }
.ind:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-2); }
.ind__ico { width: 44px; height: 44px; border-radius: var(--radius-sm); display: grid; place-items: center; background: var(--paper-2); color: var(--signal); border: 1px solid var(--line); }
.ind:hover .ind__ico { background: var(--signal); color: #fff; border-color: var(--signal); }
.ind__ico svg { width: 22px; height: 22px; }
.ind h4 { font-family: var(--font-display); font-size: 1.02rem; color: var(--ink); font-weight: 600; }
.ind p { font-size: .87rem; }

/* ---------- Testimonials ---------- */
.quote-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; height: 100%; display: flex; flex-direction: column; gap: 18px; transition: .3s var(--ease); }
.quote-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.bg-dark .quote-card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.bg-dark .quote-card blockquote { color: rgba(255,255,255,.92); }
.quote-card .stars { color: var(--signal); letter-spacing: 2px; }
.quote-card blockquote { font-size: 1.04rem; color: var(--ink); line-height: 1.6; }
.quote-card .who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.quote-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--signal); display: grid; place-items: center; font-weight: 600; font-family: var(--font-display); }
.quote-card .who b { color: var(--ink); font-size: .95rem; display: block; }
.bg-dark .quote-card .who b { color: #fff; }
.quote-card .who span { font-size: .83rem; color: var(--muted-2); }

/* ---------- CTA ---------- */
.cta { position: relative; background: var(--ink); color: #fff; border-radius: var(--radius-xl); padding: clamp(48px, 8vw, 84px); overflow: hidden; text-align: center; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.75); margin: 14px auto 28px; max-width: 560px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.62); padding: 72px 0 30px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer .brand { margin-bottom: 16px; }
.footer__about { font-size: .95rem; max-width: 320px; }
.footer h5 { color: #fff; font-family: var(--font-mono); font-size: .82rem; letter-spacing: .04em; margin-bottom: 18px; text-transform: uppercase; }
.footer__col a, .footer > .container > .footer__top > div > a { display: block; padding: 6px 0; font-size: .93rem; transition: color .2s; }
.footer a:hover { color: var(--signal); }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a { width: 38px; height: 38px; border-radius: var(--radius-sm); display: grid; place-items: center; background: rgba(255,255,255,.06); transition: .2s; }
.footer__social a:hover { background: var(--signal); transform: translateY(-2px); }
.footer__social svg { width: 17px; height: 17px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 24px; font-size: .84rem; font-family: var(--font-mono); flex-wrap: wrap; }
.footer__bottom a:hover { color: #fff; }

/* ---------- Page hero (inner) ---------- */
.phero { background: var(--ink); color: #fff; padding: clamp(150px, 16vw, 200px) 0 clamp(60px, 7vw, 96px); position: relative; overflow: hidden; }
.phero__grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(900px 520px at 50% 0%, #000 25%, transparent 78%); }
.phero__inner { position: relative; max-width: 780px; }
.phero h1 { color: #fff; margin: 16px 0 18px; }
.phero p { color: rgba(255,255,255,.78); font-size: 1.15rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-family: var(--font-mono); font-size: .84rem; color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: #fff; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: .89rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea { font-family: inherit; font-size: 1rem; padding: 13px 15px; border-radius: var(--radius-sm); border: 1px solid var(--line-2); background: var(--paper-2); color: var(--ink); transition: border-color .2s, box-shadow .2s, background .2s; }
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--signal); background: #fff; box-shadow: 0 0 0 3px rgba(194,102,10,.14); }
.form__note { font-size: .85rem; color: var(--muted); }
.form-alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: .93rem; font-weight: 500; display: none; }
.form-alert.show { display: block; }
.form-alert--ok { background: #eaf5ee; color: #1e6b3d; border: 1px solid #c3e4cf; }
.form-alert--err { background: #fbeae7; color: #a3401f; border: 1px solid #f0c8bc; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 14px; }
.contact-item .ci { width: 44px; height: 44px; border-radius: var(--radius-sm); flex: 0 0 auto; display: grid; place-items: center; background: var(--paper-2); color: var(--signal); border: 1px solid var(--line); }
.contact-item h4 { font-family: var(--font-display); font-size: 1rem; color: var(--ink); font-weight: 600; margin-bottom: 2px; }
.contact-item p, .contact-item a { font-size: .95rem; color: var(--muted); }
.contact-item a:hover { color: var(--signal); }
.form-wrap { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow); }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); overflow: hidden; transition: box-shadow .3s; }
.faq__item.open { box-shadow: var(--shadow); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.faq__q .ic { width: 24px; height: 24px; flex: 0 0 auto; position: relative; }
.faq__q .ic::before, .faq__q .ic::after { content: ""; position: absolute; background: var(--signal); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq__q .ic::before { width: 13px; height: 2px; } .faq__q .ic::after { width: 2px; height: 13px; transition: transform .3s; }
.faq__item.open .faq__q .ic::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 24px 22px; font-size: .97rem; }

/* ---------- Pills / tags ---------- */
.pills { display: inline-flex; gap: 6px; padding: 6px; border-radius: 999px; background: var(--paper-3); border: 1px solid var(--line); }
.pills button { padding: 9px 18px; border-radius: 999px; font-weight: 600; font-size: .9rem; color: var(--muted); transition: .25s; }
.pills button.active { background: var(--ink); color: #fff; }
.taglist { display: flex; flex-wrap: wrap; gap: 10px; }
.taglist span { padding: 8px 15px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); font-size: .88rem; font-weight: 500; color: var(--ink); transition: .2s; }
.taglist span:hover { border-color: var(--signal); color: var(--signal); background: var(--signal-soft); }

/* ---------- Prose / articles ---------- */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 2rem); margin: 40px 0 14px; }
.prose h3 { font-size: 1.22rem; margin: 26px 0 10px; }
.prose p { margin-bottom: 18px; color: var(--ink); }
.prose ul { margin: 0 0 18px; padding-left: 4px; display: flex; flex-direction: column; gap: 10px; }
.prose ul li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink); }
.prose ul li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--signal); margin-top: 9px; flex: 0 0 auto; }
.prose blockquote { border-left: 2px solid var(--signal); padding: 6px 0 6px 22px; margin: 22px 0; font-size: 1.1rem; color: var(--ink); font-family: var(--font-display); }
.prose a { color: var(--signal); text-decoration: underline; }
.article-hero__meta { display: flex; gap: 12px; align-items: center; color: rgba(255,255,255,.7); font-family: var(--font-mono); font-size: .88rem; margin-top: 14px; }
.article-hero__meta .chip { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.2); }

/* ---------- Case studies ---------- */
.cs { display: grid; grid-template-columns: 1.25fr .75fr; gap: 36px; align-items: center; padding: clamp(24px, 4vw, 40px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); transition: box-shadow .3s var(--ease); }
.cs:hover { box-shadow: var(--shadow); }
.cs + .cs { margin-top: 22px; }
.cs__tag { margin-bottom: 14px; }
.cs h3 { margin-bottom: 14px; }
.cs__block { margin-top: 14px; }
.cs__block h4 { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .03em; text-transform: uppercase; color: var(--signal); margin-bottom: 4px; }
.cs__block p { font-size: .97rem; }
.cs__results { background: var(--ink); border-radius: var(--radius); padding: 26px; color: #fff; display: grid; gap: 20px; }
.cs__results .num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; color: var(--signal); line-height: 1; }
.cs__results .lbl { font-family: var(--font-mono); font-size: .84rem; color: rgba(255,255,255,.68); margin-top: 4px; }

/* ---------- Blog ---------- */
.post-meta { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: .8rem; color: var(--muted); margin-bottom: 12px; }
.post-meta .chip { padding: 4px 11px; font-size: .72rem; }
.card--post { display: flex; flex-direction: column; }
.card--post h3 { font-size: 1.18rem; }
.card--post .post-foot { margin-top: auto; padding-top: 16px; font-family: var(--font-mono); font-size: .82rem; color: var(--signal); font-weight: 600; }
.post-thumb { border-radius: var(--radius); overflow: hidden; margin-bottom: 18px; aspect-ratio: 16/9; background: var(--ink); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card--post:hover .post-thumb img { transform: scale(1.04); }

/* ---------- AI prompt box ---------- */
.aiprompt { max-width: 760px; margin-inline: auto; }
.aiprompt__box { position: relative; background: var(--ink); border: 1px solid var(--ink-3); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.aiprompt__box:focus-within { border-color: var(--signal); box-shadow: var(--shadow), 0 0 0 3px rgba(194,102,10,.16); }
.aiprompt__ta { width: 100%; padding: 18px 18px 4px; resize: none; background: transparent; border: none; color: #fff; font-family: inherit; font-size: 1rem; line-height: 1.5; min-height: 60px; max-height: 200px; overflow: hidden; }
.aiprompt__ta:focus { outline: none; }
.aiprompt__ta::placeholder { color: rgba(255,255,255,.4); }
.aiprompt__bar { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; }
.aiprompt__left, .aiprompt__right { display: flex; align-items: center; gap: 8px; }
.aiprompt__icon { display: inline-flex; align-items: center; padding: 8px; border-radius: var(--radius-sm); color: #fff; transition: background .2s; }
.aiprompt__icon:hover { background: rgba(255,255,255,.08); }
.aiprompt__icon svg { width: 18px; height: 18px; }
.aiprompt__hint { font-family: var(--font-mono); font-size: .72rem; color: rgba(255,255,255,.4); }
.aiprompt__send { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.55); transition: .2s; }
.aiprompt__send svg { width: 18px; height: 18px; }
.aiprompt__send.is-active { background: var(--signal); color: #fff; border-color: var(--signal); }
.aiprompt__send.is-active:hover { transform: translateY(-1px); }
.aiprompt__actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; margin-top: 18px; }
.aichip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; font-size: .84rem; background: var(--paper); border: 1px solid var(--line); color: var(--ink); transition: .2s; cursor: pointer; }
.aichip:hover { color: var(--signal); border-color: var(--signal); background: var(--signal-soft); transform: translateY(-2px); }
.aichip svg { width: 16px; height: 16px; }

/* ---------- Status dots — the recurring signature motif ---------- */
.status-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 7px; flex: 0 0 auto; }
.status-dot--live { background: var(--ok); box-shadow: 0 0 0 3px rgba(62,138,92,.16); }
.status-dot--planned { background: var(--muted-2); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .07s; }
.reveal[data-delay="2"] { transition-delay: .14s; }
.reveal[data-delay="3"] { transition-delay: .21s; }
.reveal[data-delay="4"] { transition-delay: .28s; }

/* ============ Brand lockup ============ */
.brand { flex-direction: row; align-items: center; text-align: left; gap: 10px; line-height: 1; font-size: 1.05rem; }
.footer .brand { align-items: center; margin-bottom: 24px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .console { max-width: 420px; }
  .cards, .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::before { display: none; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .statband__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .col-4 { grid-column: span 4; } .col-3 { grid-column: span 2; } .col-2 { grid-column: span 2; }
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .form__row { grid-template-columns: 1fr; }
  .checks { grid-template-columns: 1fr; }
  .cs { grid-template-columns: 1fr; gap: 22px; }
  .hero__stats { gap: 24px; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .col-2, .col-3, .col-4 { grid-column: span 2; }
}
@media (max-width: 560px) {
  .cards, .cards--2, .cards--4, .ind-grid, .statband__grid, .steps { grid-template-columns: 1fr; }
  .hfloat { display: none; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .bento { grid-template-columns: 1fr; }
  .col-2, .col-3, .col-4 { grid-column: span 1; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
