/* CognitionLayer — layered AI stack theme. Deep, cyan, fog, grey, purple. */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --deep: #0F172A;
  --deep-mid: #1E293B;
  --cyan: #0891B2;
  --cyan-bright: #06B6D4;
  --fog: #E0F2FE;
  --grey: #475569;
  --purple: #A855F7;
  --ink: #0F172A;
  --slate: #334155;
  --line: #CBD5E1;
  --white: #FFFFFF;
  --layer-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Crect x='4' y='38' width='52' height='8' rx='2' fill='%230891B2' opacity='0.06'/%3E%3Crect x='8' y='26' width='44' height='8' rx='2' fill='%23A855F7' opacity='0.05'/%3E%3Crect x='12' y='14' width='36' height='8' rx='2' fill='%230891B2' opacity='0.04'/%3E%3C/svg%3E");
  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Lato', system-ui, sans-serif;
  background: var(--fog);
  color: var(--slate);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Manrope', system-ui, sans-serif; line-height: 1.18; color: var(--ink); font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5.4vw, 3.9rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.85rem, 3.8vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.1vw, 1.5rem); }
p { color: var(--grey); }
a { color: var(--cyan); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--purple); }
img { max-width: 100%; display: block; }
.shell { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.block { padding: clamp(58px, 8vw, 112px) 0; position: relative; }
.block.tight { padding-top: 18px; }
.kicker { text-transform: uppercase; letter-spacing: .22em; font-size: .72rem; color: var(--cyan); font-weight: 700; font-family: 'Manrope', sans-serif; }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--grey); max-width: 640px; }
.mid { text-align: center; }
.mid .lead { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 8px; font-weight: 700;
  font-family: 'Manrope', sans-serif; cursor: pointer; border: 2px solid transparent;
  font-size: .98rem; transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn--fill { background: var(--cyan); color: var(--white); }
.btn--fill:hover { background: var(--purple); color: var(--white); transform: translateY(-2px); }
.btn--line { background: var(--white); color: var(--cyan); border-color: var(--cyan); }
.btn--line:hover { background: var(--cyan); color: var(--white); transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.35); }
.btn--ghost:hover { background: var(--cyan); color: var(--white); border-color: var(--cyan); }

.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  background: transparent; border-bottom: 1px solid transparent;
}
.topbar.solid { background: var(--white); box-shadow: 0 6px 24px rgba(15,23,42,.08); border-bottom-color: var(--line); }
.bar-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: 'Manrope', sans-serif; font-size: 1.32rem; color: var(--white); letter-spacing: -.01em; font-weight: 800; }
.topbar.solid .brand { color: var(--ink); }
.brand .glyph {
  width: 36px; height: 36px; border-radius: 6px;
  background: linear-gradient(180deg, var(--purple) 0%, var(--cyan) 100%);
  position: relative; overflow: hidden; flex: 0 0 36px;
}
.brand .glyph::before {
  content: ""; position: absolute; left: 5px; right: 5px; top: 6px; height: 4px;
  background: rgba(255,255,255,.85); border-radius: 1px;
  box-shadow: 0 8px 0 rgba(255,255,255,.65), 0 16px 0 rgba(255,255,255,.45), 0 24px 0 rgba(255,255,255,.3);
}
.brand b { color: var(--cyan-bright); font-weight: 800; }
.topbar.solid .brand b { color: var(--cyan); }
.menu { display: flex; align-items: center; gap: 30px; list-style: none; }
.menu a { color: rgba(255,255,255,.92); font-weight: 600; font-size: .96rem; font-family: 'Manrope', sans-serif; }
.menu a:hover { color: var(--cyan-bright); }
.topbar.solid .menu a { color: var(--grey); }
.topbar.solid .menu a:hover { color: var(--cyan); }
.bar-cta { display: flex; align-items: center; gap: 16px; }
.topbar:not(.solid) .bar-cta .btn--fill { background: var(--cyan-bright); }
.topbar:not(.solid) .bar-cta .btn--fill:hover { background: var(--white); color: var(--deep); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 26px; height: 2px; background: var(--white); transition: .3s; }
.topbar.solid .menu-toggle span { background: var(--ink); }

.hero {
  background: linear-gradient(165deg, var(--deep) 0%, #0C4A6E 55%, var(--deep-mid) 100%);
  color: var(--white); padding: 168px 0 120px; position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--layer-bg); background-size: 60px 60px; opacity: .7;
}
.hero .shell { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.hero .kicker { color: var(--cyan-bright); }
.hero h1 { color: var(--white); margin: 16px 0; }
.hero h1 .accent { color: var(--purple); }
.hero p.lead { color: #BAE6FD; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: 12px; box-shadow: 0 30px 70px rgba(0,0,0,.4); border: 2px solid rgba(8,145,178,.4); }
.hero-badge {
  position: absolute; bottom: -20px; left: -16px; background: var(--white);
  border-radius: 10px; padding: 14px 18px; display: flex; gap: 12px; align-items: center;
  box-shadow: 0 18px 40px rgba(15,23,42,.28); border-left: 4px solid var(--cyan);
}
.hero-badge .pulse { width: 12px; height: 12px; border-radius: 50%; background: var(--purple); box-shadow: 0 0 0 5px rgba(168,85,247,.25); animation: beat 1.8s infinite; }
.hero-badge small { color: var(--grey); display: block; font-size: .72rem; }
.hero-badge strong { color: var(--deep); font-family: 'Manrope', sans-serif; font-weight: 700; }
@keyframes beat { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.stack-hero-layers { display: flex; flex-direction: column; gap: 8px; margin-top: 28px; max-width: 380px; }
.stack-hero-layers span {
  display: block; padding: 10px 16px; border-radius: 6px; font-family: 'Manrope', sans-serif;
  font-weight: 700; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06);
  transform: translateX(calc(var(--i, 0) * 12px)); transition: transform .3s ease;
}
.stack-hero-layers span:nth-child(1) { --i: 0; border-color: rgba(168,85,247,.5); color: #E9D5FF; }
.stack-hero-layers span:nth-child(2) { --i: 1; border-color: rgba(8,145,178,.5); color: #A5F3FC; }
.stack-hero-layers span:nth-child(3) { --i: 2; border-color: rgba(255,255,255,.25); color: #E0F2FE; }
.stack-hero-layers span:nth-child(4) { --i: 3; border-color: rgba(8,145,178,.35); color: #BAE6FD; }
.stack-hero-layers span:nth-child(5) { --i: 4; border-color: rgba(71,85,105,.5); color: #94A3B8; }

.layer-sep {
  display: block; width: 100%; height: 6px;
  background: linear-gradient(90deg, var(--purple), var(--cyan), var(--purple));
  margin: 0; border: none; opacity: .85;
}

.stats-band { background: var(--white); padding: 36px 0; border-bottom: 1px solid var(--line); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat {
  text-align: center; padding: 26px 18px; border-radius: 10px;
  background: var(--fog); border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.stat::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--cyan), var(--purple));
}
.stat b { font-family: 'Manrope', sans-serif; font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--cyan); display: block; font-weight: 800; }
.stat span { color: var(--grey); font-size: .88rem; }

.head { max-width: 680px; margin-bottom: 46px; }
.head.mid { margin-left: auto; margin-right: auto; }
.head h2 { margin: 12px 0 14px; }

.grid { display: grid; gap: 24px; }
.g4 { grid-template-columns: repeat(4, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g2 { grid-template-columns: repeat(2, 1fr); }

.layer-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: 28px 26px 34px; position: relative; overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.layer-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--cyan) 100%);
}
.layer-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(15,23,42,.12); }
.layer-card .layer-label { font-family: 'Manrope', sans-serif; color: var(--purple); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.layer-card h3 { margin: 10px 0 8px; }
.layer-card p { font-size: .96rem; }
.layer-card .price-tag { font-family: 'Manrope', sans-serif; font-weight: 700; color: var(--cyan); font-size: 1.15rem; margin-top: 14px; }
.layer-card .price-tag span { color: var(--grey); font-size: .8rem; font-weight: 600; }

.facts-split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.facts-split img { border-radius: 12px; box-shadow: 0 20px 50px rgba(15,23,42,.14); border: 1px solid var(--line); }
.fact-list { list-style: none; display: grid; gap: 14px; margin-top: 20px; }
.fact-list li {
  padding: 16px 18px; background: var(--white); border-radius: 8px;
  border-left: 4px solid var(--cyan); font-weight: 600; color: var(--ink);
  font-family: 'Manrope', sans-serif; font-size: .94rem;
}
.fact-list li b { color: var(--cyan); margin-right: 6px; }

.lexicon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lex-item {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: 22px 20px; transition: transform .3s ease, border-color .3s ease;
}
.lex-item:hover { transform: translateY(-4px); border-color: var(--cyan); }
.lex-item dt { font-family: 'Manrope', sans-serif; font-weight: 800; color: var(--cyan); font-size: .95rem; margin-bottom: 6px; }
.lex-item dd { font-size: .9rem; color: var(--grey); margin: 0; }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.audience-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 32px 28px; position: relative; overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.audience-card::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
}
.audience-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(8,145,178,.12); }
.audience-card .aud-tag { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--purple); font-weight: 700; font-family: 'Manrope', sans-serif; }
.audience-card h3 { margin: 10px 0 10px; }
.audience-card p { font-size: .94rem; }
.audience-card ul { list-style: none; margin-top: 14px; display: grid; gap: 6px; }
.audience-card ul li { font-size: .88rem; color: var(--grey); padding-left: 16px; position: relative; }
.audience-card ul li::before { content: "\25B8"; position: absolute; left: 0; color: var(--cyan); font-weight: 800; }

.pipeline-strip {
  background: var(--deep); color: var(--white); padding: clamp(40px, 6vw, 64px) 0;
  position: relative; overflow: hidden;
}
.pipeline-strip::before { content: ""; position: absolute; inset: 0; background-image: var(--layer-bg); background-size: 60px 60px; opacity: .3; }
.pipeline-flow {
  display: flex; align-items: stretch; justify-content: center; gap: 0;
  flex-wrap: wrap; position: relative; z-index: 1;
}
.pipe-step {
  flex: 1; min-width: 140px; max-width: 180px; text-align: center;
  padding: 24px 16px; position: relative;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; margin: 6px;
}
.pipe-step .num { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--cyan-bright); display: block; margin-bottom: 8px; }
.pipe-step h4 { color: var(--white); font-size: .92rem; margin-bottom: 6px; font-family: 'Manrope', sans-serif; }
.pipe-step p { color: #94A3B8; font-size: .78rem; line-height: 1.5; }
.pipe-arrow { display: flex; align-items: center; color: var(--purple); font-size: 1.2rem; padding: 0 4px; }

.bleed-cta {
  position: relative; min-height: 420px; display: flex; align-items: center;
  background: var(--deep); overflow: hidden;
}
.bleed-cta img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35;
}
.bleed-cta .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(15,23,42,.92) 0%, rgba(8,145,178,.65) 55%, transparent 100%);
}
.bleed-cta .shell { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 80px; }
.bleed-cta h2 { color: var(--white); max-width: 520px; margin-bottom: 14px; }
.bleed-cta p { color: #BAE6FD; max-width: 480px; margin-bottom: 24px; }

.svc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: 32px 28px; transition: transform .35s ease, box-shadow .35s ease;
  border-top: 3px solid var(--purple);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(15,23,42,.1); }
.svc-card .tag { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--cyan); font-weight: 700; font-family: 'Manrope', sans-serif; }
.svc-card h3 { margin: 10px 0 10px; }
.svc-card p { font-size: .95rem; }
.svc-card a { font-weight: 700; font-size: .92rem; margin-top: 14px; display: inline-block; font-family: 'Manrope', sans-serif; }

.quote-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: 28px; position: relative;
}
.quote-card::before {
  content: ""; position: absolute; top: 0; left: 24px; right: 24px; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
}
.quote-card p { color: var(--ink); font-style: italic; }
.quote-card .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.quote-card .av {
  width: 46px; height: 46px; border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  display: grid; place-items: center; font-weight: 700; color: var(--white);
  font-family: 'Manrope', sans-serif;
}
.quote-card .who b { color: var(--ink); display: block; font-style: normal; }
.quote-card .who small { color: var(--grey); }

.cta {
  background: linear-gradient(135deg, var(--cyan) 0%, #0E7490 100%);
  border-radius: 14px; padding: clamp(40px, 6vw, 70px); text-align: center;
  position: relative; overflow: hidden;
}
.cta::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px;
  background: linear-gradient(90deg, var(--purple), var(--deep), var(--purple));
  opacity: .6;
}
.cta h2 { color: var(--white); }
.cta p { color: #E0F2FE; max-width: 580px; margin: 14px auto 26px; }
.cta .btn--fill { background: var(--white); color: var(--cyan); }
.cta .btn--fill:hover { background: var(--deep); color: var(--white); }

.partners-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(20px, 4vw, 48px); padding: 32px 0;
}
.partner-badge {
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: clamp(.85rem, 2vw, 1.05rem);
  color: var(--grey); padding: 12px 24px; border: 1px solid var(--line);
  border-radius: 8px; background: var(--white); letter-spacing: .06em;
  transition: border-color .25s ease, color .25s ease;
}
.partner-badge:hover { border-color: var(--cyan); color: var(--cyan); }

.page-head {
  background: linear-gradient(165deg, var(--deep) 0%, #0C4A6E 100%);
  color: var(--white); padding: 150px 0 70px; position: relative; overflow: hidden;
}
.page-head::before { content: ""; position: absolute; inset: 0; background-image: var(--layer-bg); background-size: 60px 60px; opacity: .35; }
.page-head .shell { position: relative; z-index: 1; }
.page-head h1 { color: var(--white); margin: 10px 0; }
.page-head .kicker { color: var(--cyan-bright); }
.page-head .lead { color: #BAE6FD; }
.crumb { color: rgba(255,255,255,.7); font-size: .86rem; margin-bottom: 12px; }
.crumb a { color: rgba(255,255,255,.7); }
.crumb a:hover { color: var(--cyan-bright); }

.sol-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.sol-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(15,23,42,.14); }
.sol-card img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.sol-body { padding: 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; border-bottom: 3px solid var(--cyan); }
.sol-cat { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--purple); font-weight: 700; font-family: 'Manrope', sans-serif; }
.sol-ref { font-size: .76rem; color: var(--grey); }
.sol-meta { list-style: none; font-size: .87rem; color: var(--slate); display: grid; gap: 4px; }
.sol-meta li b { color: var(--ink); font-weight: 700; }
.sol-price { font-size: 1.2rem; color: var(--cyan); font-weight: 700; margin-top: auto; font-family: 'Manrope', sans-serif; }
.sol-price span { color: var(--grey); font-size: .8rem; font-weight: 600; }

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.filter-btn {
  background: var(--white); border: 1px solid var(--line); color: var(--grey);
  padding: 9px 18px; border-radius: 999px; cursor: pointer;
  font-weight: 700; font-size: .86rem; transition: .25s; font-family: 'Manrope', sans-serif;
}
.filter-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.filter-btn.active { background: var(--cyan); color: var(--white); border-color: var(--cyan); }

.stack-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: 28px 26px 36px; position: relative; overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.stack-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
}
.stack-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(15,23,42,.1); }
.stack-card .layer-label { color: var(--purple); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-family: 'Manrope', sans-serif; }
.stack-card h3 { margin: 10px 0 8px; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: clamp(26px, 4vw, 42px); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 700; margin-bottom: 7px; color: var(--ink); font-size: .92rem; font-family: 'Manrope', sans-serif; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 8px; border: 1px solid var(--line);
  background: var(--fog); color: var(--ink); font-family: inherit; font-size: .96rem;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(8,145,178,.12);
}
.field textarea { min-height: 130px; resize: vertical; }
.field .err { color: #dc2626; font-size: .82rem; margin-top: 6px; display: none; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #dc2626; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.success-msg { display: none; text-align: center; padding: 30px; }
.success-msg.show { display: block; animation: fadein .6s ease; }
.success-msg .ic {
  width: 66px; height: 66px; border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  display: grid; place-items: center; margin: 0 auto 18px;
  font-size: 1.9rem; color: var(--white);
}
.success-msg h2 { color: var(--ink); font-family: 'Manrope', sans-serif; }
@keyframes fadein { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.info-card { background: var(--fog); border-radius: 10px; border-left: 4px solid var(--cyan); padding: 20px; }
.info-card small { color: var(--purple); text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; font-weight: 700; font-family: 'Manrope', sans-serif; }
.info-card p { color: var(--ink); margin-top: 6px; font-weight: 600; }

.prose { max-width: 840px; }
.prose h2 { margin: 36px 0 14px; font-size: clamp(1.4rem, 2.6vw, 1.85rem); }
.prose h3 { margin: 26px 0 10px; color: var(--cyan); font-family: 'Manrope', sans-serif; font-weight: 700; }
.prose p, .prose li { color: var(--grey); margin-bottom: 12px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 14px; }
.prose strong { color: var(--ink); }
.prose a { color: var(--cyan); }
.prose a:hover { color: var(--purple); }

.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split img { border-radius: 12px; box-shadow: 0 20px 50px rgba(15,23,42,.14); border: 1px solid var(--line); }
.split.rev .split-txt { order: 2; }
.cert-list { list-style: none; display: grid; gap: 12px; }
.cert-list li {
  padding: 14px 18px; background: var(--white); border-radius: 10px;
  display: flex; gap: 12px; align-items: center; color: var(--ink); font-weight: 600;
  border: 1px solid var(--line); font-family: 'Manrope', sans-serif; font-size: .92rem;
}
.cert-list li::before { content: "\25B8"; color: var(--cyan); font-weight: 800; }

footer.site { background: var(--deep); color: #94A3B8; padding: 62px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 36px; }
.foot-grid h4 { color: var(--white); margin-bottom: 16px; font-size: 1rem; font-family: 'Manrope', sans-serif; font-weight: 700; }
.foot-brand { display: flex; align-items: center; gap: 11px; font-family: 'Manrope', sans-serif; font-size: 1.3rem; color: var(--white); font-weight: 800; }
.foot-brand b { color: var(--cyan-bright); font-weight: 800; }
.foot-about p { color: #94A3B8; font-size: .92rem; margin-top: 14px; }
.foot-links { list-style: none; display: grid; gap: 9px; }
.foot-links a { color: #94A3B8; font-size: .92rem; }
.foot-links a:hover { color: var(--cyan-bright); }
.foot-contact p { color: #94A3B8; font-size: .9rem; margin-bottom: 8px; }
.foot-contact b { color: var(--white); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: #64748B; font-size: .84rem;
}

.cookie-bar {
  position: fixed; left: 22px; right: 22px; bottom: 22px; max-width: 560px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 20px 22px; z-index: 200; display: none;
  box-shadow: 0 22px 50px rgba(15,23,42,.18); border-bottom: 4px solid var(--cyan);
}
.cookie-bar.show { display: block; animation: fadein .5s ease; }
.cookie-bar p { font-size: .88rem; color: var(--grey); }
.cookie-bar .row { display: flex; gap: 12px; margin-top: 14px; align-items: center; }
.cookie-bar .btn { padding: 10px 22px; font-size: .88rem; }
.cookie-bar a { color: var(--cyan); font-weight: 700; }
.cookie-bar a:hover { color: var(--purple); }

.rise, .layer-in { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s ease; }
html.js .rise { opacity: 0; transform: translateY(30px); }
html.js .layer-in { opacity: 0; transform: translateX(-34px); }
html.js .rise.visible, html.js .layer-in.visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .hero-grid, .split, .about-grid, .facts-split { grid-template-columns: 1fr; }
  .split.rev .split-txt { order: 0; }
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .lexicon-grid, .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .pipe-arrow { display: none; }
}
@media (max-width: 760px) {
  .menu {
    position: fixed; top: 76px; left: 0; right: 0; background: var(--white);
    flex-direction: column; padding: 24px; gap: 18px;
    border-bottom: 1px solid var(--line); transform: translateY(-150%);
    transition: transform .35s ease; box-shadow: 0 12px 30px rgba(15,23,42,.1);
  }
  .menu a { color: var(--grey); }
  .menu.open { transform: translateY(0); }
  .menu-toggle { display: flex; }
  .bar-cta .btn { display: none; }
  .g3, .g2, .info-grid, .form-row, .lexicon-grid, .audience-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .g4, .stats { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
}
