/* ═══════════════════════════════════════════════════════
   MERKHET · Decision Intelligence Platform
   Dark-only premium · Inter + JetBrains Mono
   ─────────────────────────────────────────────────────── */

:root {
  --bg:           #0A0E17;
  --bg-bright:    #F4F1EA;
  --bg-bright-2:  #FFFFFF;
  --bg-elev-1:    #0E1421;
  --bg-elev-2:    #11192A;
  --surface:      #1C2B4A;
  --gold:         #D4A842;
  --gold-soft:    rgba(212, 168, 66, 0.12);
  --teal:         #0F6B57;
  --teal-soft:    rgba(15, 107, 87, 0.18);
  --text:         #F5F5F5;
  --text-mute:    #B0B6C2;
  --text-dim:     #6E7689;
  --hairline:     rgba(245, 245, 245, 0.08);
  --hairline-2:   rgba(245, 245, 245, 0.14);

  --ff-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-mono: 'JetBrains Mono', ui-monospace, monospace;

  --container: 1320px;
  --pad-x: 40px;
  --section-y: 140px;
}

@media (max-width: 880px) {
  :root { --pad-x: 22px; --section-y: 88px; }
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--text); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ─────────────── TYPOGRAPHY HELPERS ─────────────── */

.mono {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.mono--muted { color: var(--text-dim); }
.gold { color: var(--gold); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.eyebrow--teal { color: var(--teal); }
.eyebrow--teal .eyebrow__dot { background: var(--teal); box-shadow: 0 0 0 4px rgba(15,107,87,0.12); }

.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,168,66,0.10);
}

.num {
  font-family: var(--ff-mono);
  font-feature-settings: "tnum";
  letter-spacing: -0.01em;
}

/* ─────────────── BUTTONS ─────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  padding: 12px 22px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 200ms ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--lg { padding: 16px 28px; font-size: 15.5px; }
.btn--sm { padding: 9px 16px; font-size: 13px; }

.btn--primary {
  background: var(--gold);
  color: #1B1407;
  border-color: var(--gold);
}
.btn--primary:hover {
  background: #E2B650;
  border-color: #E2B650;
  color: #1B1407;
  transform: translateY(-1px);
}
.btn--primary .btn__arrow { transition: transform 200ms ease; }
.btn--primary:hover .btn__arrow { transform: translateX(4px); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--hairline-2);
}
.btn--ghost:hover {
  border-color: var(--text);
  background: rgba(245,245,245,0.04);
}

.btn__arrow {
  font-family: var(--ff-mono);
  font-weight: 400;
  font-size: 1em;
  line-height: 1;
}

/* ─────────────── NAV ─────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 23, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav__mark { height: 28px; width: auto; }
.nav__wordmark { height: 14px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: 36px;
}
.nav__link {
  font-size: 14px;
  color: var(--text-mute);
  position: relative;
  padding: 6px 0;
  transition: color 180ms ease;
}
.nav__link:hover { color: var(--text); }
.nav__link.is-active { color: var(--text); }
.nav__link.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
}

.nav__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.lang__btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  padding: 0;
  transition: color 180ms ease;
}
.lang__btn:hover { color: var(--text-mute); }
.lang__btn.is-active { color: var(--text); }
.lang__sep { color: var(--text-dim); }

.nav__burger {
  display: none;
  background: transparent;
  border: 1px solid var(--hairline-2);
  width: 40px; height: 40px;
  border-radius: 2px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}
.nav__burger span {
  width: 14px;
  height: 1px;
  background: var(--text);
}

@media (max-width: 980px) {
  .nav__links, .nav__right .lang { display: none; }
  .nav__right { gap: 12px; }
}
@media (max-width: 720px) {
  .nav__right .btn { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__wordmark { display: none; }
}

/* ─────────────── HERO ─────────────── */

.hero {
  position: relative;
  min-height: 720px;
  padding: 100px 0 120px;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(28,43,74,0.45), transparent 55%),
    linear-gradient(180deg, transparent 0%, rgba(10,14,23,0.85) 90%);
}
.scan { width: 100%; height: 100%; position: absolute; inset: 0; }

/* Hero animation: ONE restrained motion (sweeping ray) */
.sweep {
  transform-origin: 0 0;
  animation: sweep 14s linear infinite;
}
@keyframes sweep {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .sweep { animation: none; }
}

.signal { opacity: 0.85; }
.signal .ring {
  transform-origin: center;
  animation: pulse 3.6s ease-out infinite;
  opacity: 0;
}
.signal.s2 .ring { animation-delay: 0.6s; }
.signal.s3 .ring { animation-delay: 1.2s; }
.signal.s4 .ring { animation-delay: 1.8s; }
.signal.s5 .ring { animation-delay: 2.4s; }
.signal.s6 .ring { animation-delay: 3.0s; }
@keyframes pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(6);   opacity: 0;   }
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 720px);
  align-items: end;
  min-height: 540px;
}

.hero__content { padding-top: 60px; }

.hero__title {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: clamp(40px, 6.2vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--text);
  text-wrap: balance;
}

.hero__sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-mute);
  max-width: 560px;
  margin: 0 0 40px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
  max-width: 640px;
}
.hero__stats > div {
  padding-right: 24px;
}
.hero__stats > div + div {
  border-left: 1px solid var(--hairline);
  padding-left: 24px;
}
.hero__stats dt {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.hero__stats dd {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.hero__stats .num { font-weight: 500; }

.hero__scroll {
  position: absolute;
  left: var(--pad-x);
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}
.hero__scroll-line {
  width: 56px;
  height: 1px;
  background: linear-gradient(to right, var(--text-dim), transparent);
}

@media (max-width: 720px) {
  .hero { min-height: 0; padding: 60px 0 80px; }
  .hero__scroll { display: none; }
  .hero__stats > div { padding: 0 0 0 18px; }
  .hero__stats > div:first-child { padding-left: 0; }
}

/* ─────────────── SECTIONS ─────────────── */

.section {
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--hairline);
  position: relative;
}

/* Alternating tones: dark hero / bright problem / dark approach / bright products / dark foresight / bright CTA */
.section--bright {
  /* Invert palette: full light-mode block on warm cream paper */
  --bg-elev-1: #FFFFFF;
  --bg-elev-2: #FFFFFF;
  --surface:   #FFFFFF;
  --text:      #0A0E17;
  --text-mute: #4F5664;
  --text-dim:  #8A92A0;
  --hairline:   rgba(10, 14, 23, 0.08);
  --hairline-2: rgba(10, 14, 23, 0.16);
  background: var(--bg-bright);
  color: var(--text);
}
.section--bright .btn--ghost {
  color: var(--text);
  border-color: var(--hairline-2);
}
.section--bright .btn--ghost:hover {
  background: rgba(10, 14, 23, 0.04);
  border-color: var(--text);
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.section__title {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}
.section__lede {
  font-size: 17px;
  color: var(--text-mute);
  line-height: 1.6;
  margin: 0;
  max-width: 520px;
}

@media (max-width: 880px) {
  .section__head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 56px; }
}

/* ─────────────── PROBLEM CARDS ─────────────── */

.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.prob-card {
  padding: 40px 36px 36px;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  background: var(--bg-elev-1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: background 220ms ease, border-color 220ms ease;
}
.prob-card:hover { background: #101729; border-color: var(--hairline-2); }
.prob-card__head { display: flex; flex-direction: column; gap: 16px; }
.prob-card__head h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
  color: var(--text);
}
.prob-card p {
  font-size: 15px;
  color: var(--text-mute);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.prob-card__tags {
  list-style: none;
  margin: 0; padding: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px dashed var(--hairline);
}
.prob-card__tags li {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 5px 10px;
  border: 1px solid var(--hairline-2);
  border-radius: 1px;
}

@media (max-width: 880px) {
  .problem__grid { grid-template-columns: 1fr; }
}

.problem__close {
  margin: 64px 0 0;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--text-mute);
  max-width: 880px;
  text-wrap: balance;
}

/* ─────────────── CAPABILITY CARDS ─────────────── */

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.cap {
  padding: 36px 32px 40px;
  background: var(--bg-elev-1);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--text);
  transition: border-color 220ms ease, transform 220ms ease;
}
.cap:hover {
  border-color: var(--hairline-2);
  transform: translateY(-2px);
}
.cap__num { color: var(--text-dim); font-size: 11px; }
.cap__icon {
  color: var(--gold);
  width: 56px; height: 56px;
}
.cap__icon svg { width: 100%; height: 100%; }
.cap h3 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1;
}
.cap p {
  font-size: 15.5px;
  color: var(--text-mute);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 880px) { .cap-grid { grid-template-columns: 1fr; } }

/* ─────────────── PRODUCTS ─────────────── */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  padding: 5px 10px;
  border-radius: 1px;
  text-transform: uppercase;
}
.badge--live {
  background: var(--gold-soft);
  color: var(--gold);
  border: 1px solid rgba(212,168,66,0.35);
}
.badge--live .badge__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,66,0.18);
  animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.badge--coming {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--hairline-2);
}

/* Featured product (BuildPulse) */
.prod {
  border: 1px solid var(--hairline);
  background: var(--bg-elev-1);
  border-radius: 2px;
}
.prod--featured {
  background:
    linear-gradient(180deg, rgba(28,43,74,0.18) 0%, rgba(28,43,74,0) 60%),
    var(--bg-elev-2);
  border-color: var(--hairline-2);
  position: relative;
  overflow: hidden;
}
.prod--featured::before {
  /* top-left corner ticks */
  content: '';
  position: absolute;
  top: 18px; left: 18px;
  width: 14px; height: 14px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  opacity: 0.55;
}
.prod--featured::after {
  content: '';
  position: absolute;
  top: 18px; right: 18px;
  width: 14px; height: 14px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  opacity: 0.55;
}

.prod__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
  padding: 56px 56px 48px;
  border-bottom: 1px solid var(--hairline);
}
.prod__badges {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.prod__name {
  font-family: var(--ff-sans);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 16px;
}
.prod__cat {
  color: var(--text-mute);
  font-size: 12px;
  margin: 0;
}
.prod__pitch {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding-top: 8px;
}
.prod__pitch p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-mute);
  margin: 0;
}

.prod__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  gap: 0;
}
.feat {
  padding: 32px 32px 36px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background 220ms ease;
}
.feat:hover { background: rgba(245,245,245,0.015); }
.feat:nth-child(3n) { border-right: none; }
.feat:nth-child(n+4) { border-bottom: none; }
.feat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.feat__icon {
  color: var(--gold);
  width: 24px; height: 24px;
  opacity: 0.85;
}
.feat__icon svg { width: 100%; height: 100%; stroke-width: 1.25; }
.feat h4 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--text);
  line-height: 1.25;
}
.feat p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-mute);
  margin: 0;
}

@media (max-width: 980px) {
  .prod__top { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px 28px; }
  .prod__features { grid-template-columns: repeat(2, 1fr); }
  .feat:nth-child(3n) { border-right: 1px solid var(--hairline); }
  .feat:nth-child(2n) { border-right: none; }
  .feat:nth-child(n+4) { border-bottom: 1px solid var(--hairline); }
  .feat:nth-child(n+5) { border-bottom: none; }
}
@media (max-width: 640px) {
  .prod__features { grid-template-columns: 1fr; }
  .feat { border-right: none !important; border-bottom: 1px solid var(--hairline) !important; }
  .feat:last-child { border-bottom: none !important; }
}

/* BuildPulse 3-feature variant (single row) */
.prod__features--3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.prod__features--3 .feat {
  border-bottom: none;
  padding: 40px 36px 44px;
  gap: 20px;
}
.prod__features--3 .feat:nth-child(3n) { border-right: none; }
.prod__features--3 .feat h4 {
  font-size: 22px;
  letter-spacing: -0.018em;
  line-height: 1.22;
}
.prod__features--3 .feat p {
  font-size: 14.5px;
  flex: 1;
}
.feat__chips {
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px dashed var(--hairline);
}
.feat__chips li {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 4px 8px;
  border: 1px solid var(--hairline-2);
  border-radius: 1px;
}
@media (max-width: 880px) {
  .prod__features--3 { grid-template-columns: 1fr; }
  .prod__features--3 .feat { border-right: none !important; border-bottom: 1px solid var(--hairline) !important; }
  .prod__features--3 .feat:last-child { border-bottom: none !important; }
}

/* Surface treatment within bright (light) sections */
.section--bright .prob-card:hover { background: #FAF6EC; }
.section--bright .prod--featured {
  background:
    linear-gradient(180deg, rgba(212,168,66,0.05) 0%, rgba(212,168,66,0) 50%),
    #FFFFFF;
  border-color: rgba(10, 14, 23, 0.14);
  box-shadow: 0 1px 0 rgba(10,14,23,0.04), 0 30px 70px -40px rgba(10,14,23,0.20);
}
.section--bright .prod--featured::before,
.section--bright .prod--featured::after { border-color: var(--gold); opacity: 0.7; }
.section--bright .prod--coming:hover { background: #FAF6EC; }
.section--bright .feat:hover { background: rgba(10, 14, 23, 0.025); }
.section--bright.final-cta {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,168,66,0.14), transparent 55%),
    var(--bg-bright);
}

/* Coming-soon product cards */
.prod__coming {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.prod--coming {
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 220ms ease, background 220ms ease;
}
.prod--coming:hover {
  border-color: var(--hairline-2);
  background: #101729;
}
.prod--coming__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.prod--coming .prod__name {
  font-size: 30px;
  margin: 0;
}
.prod--coming .prod__cat { font-size: 11.5px; }
.prod--coming__desc {
  font-size: 14.5px;
  color: var(--text-mute);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.prod--coming .btn { align-self: flex-start; }

@media (max-width: 880px) {
  .prod__coming { grid-template-columns: 1fr; }
}

/* ─────────────── STRATEGIC FORESIGHT ─────────────── */

.foresight {
  background:
    radial-gradient(ellipse at 80% 30%, rgba(15,107,87,0.10), transparent 50%),
    var(--bg);
}
.foresight__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}
.foresight__body {
  font-size: 17px;
  color: var(--text-mute);
  line-height: 1.6;
  margin: 32px 0 28px;
  max-width: 560px;
}
.foresight__list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
}
.foresight__list li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 16px;
  color: var(--text);
}
.foresight__list .mono { color: var(--teal); }

.foresight__viz {
  display: flex;
  align-items: center;
  justify-content: center;
}
.foresight__viz svg { width: 100%; max-width: 480px; height: auto; }

@media (max-width: 980px) {
  .foresight__inner { grid-template-columns: 1fr; gap: 48px; }
  .foresight__viz { order: -1; }
}

/* ─────────────── FINAL CTA ─────────────── */

.final-cta {
  padding: 160px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,168,66,0.06), transparent 55%),
    var(--bg-bright);
  border-bottom: 1px solid var(--hairline);
}
.final-cta__inner { max-width: 880px; margin: 0 auto; }
.final-cta__meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  margin-bottom: 36px;
  padding: 6px 14px;
  border: 1px solid var(--hairline);
  border-radius: 1px;
}
.final-cta__dot { color: var(--gold); font-size: 8px; line-height: 1; }
.final-cta__title {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 28px;
  text-wrap: balance;
}
.final-cta__sub {
  font-size: 19px;
  color: var(--text-mute);
  line-height: 1.5;
  max-width: 620px;
  margin: 0 auto 48px;
}
.final-cta__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.final-cta__email {
  font-family: var(--ff-mono);
  font-size: 13.5px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--hairline-2);
  padding-bottom: 3px;
  transition: color 200ms ease, border-color 200ms ease;
}
.final-cta__email:hover { color: var(--gold); border-color: var(--gold); }

@media (max-width: 720px) {
  .final-cta { padding: 96px 0; }
}

/* ─────────────── FOOTER ─────────────── */

.footer {
  padding: 80px 0 32px;
  background: var(--bg);
}
.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--hairline);
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__wordmark { height: 18px; width: auto; opacity: 0.8; align-self: flex-start; }
.footer__tag {
  font-family: var(--ff-sans);
  font-style: italic;
  font-size: 15px;
  color: var(--text-mute);
  margin: 0;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__col h5 {
  margin: 0 0 18px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
}
.footer__col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid; gap: 10px;
}
.footer__col li,
.footer__col a {
  font-size: 14px;
  color: var(--text-mute);
}
.footer__col a { transition: color 180ms ease; }
.footer__col a:hover { color: var(--gold); }

.footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 10.5px;
}

@media (max-width: 880px) {
  .footer__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__base { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ─────────────── SELECTION + SCROLLBAR ─────────────── */
::selection { background: var(--gold); color: #1B1407; }


/* ═══════════════════════════════════════════════════════
   ABOUT & CONTACT page-specific patterns
   ─────────────────────────────────────────────────────── */

/* Hero stat word value (e.g. "MULTI-SOURCE") */
.hero__stats .num--word {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* Page hero variants */
.hero--page { min-height: 0; padding: 96px 0 80px; }
.hero--page .hero__grid { min-height: 320px; align-items: center; }
.hero--page .hero__content { padding-top: 32px; }
.hero--compact { padding: 80px 0 56px; }
.hero--compact .hero__grid { min-height: 200px; }
.hero--compact .hero__title { font-size: clamp(36px, 4.8vw, 64px); }

.hero__title--sm { font-size: clamp(40px, 5.4vw, 72px) !important; }
.hero__sub--lead { font-size: 21px; max-width: 640px; line-height: 1.4; color: var(--text); }
.hero__sub--lead .gold { font-weight: 500; }
.hero__content--center { text-align: center; max-width: 720px; margin: 0 auto; }
.hero__content--center .eyebrow { justify-content: center; }
.hero__content--center .hero__sub { margin-left: auto; margin-right: auto; }

.hero__bg--quiet::before { display: none; }
.scan--quiet { opacity: 0.85; }

.section__head--narrow { grid-template-columns: 1fr; gap: 0; }
.section__head--narrow .section__head-left { max-width: 720px; }

/* ═══════════════════════════════════════════════════════
   ABOUT · Mission
   ─────────────────────────────────────────────────────── */
.mission__meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-self: end;
  align-self: start;
  padding-top: 8px;
  width: 100%;
  max-width: 280px;
}
.mission__meta > div { display: flex; gap: 18px; }
.mission__rule { height: 1px; background: var(--hairline); width: 100%; }

.mission__body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.mission__para {
  position: relative;
  padding: 40px 40px 0 40px;
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  text-wrap: pretty;
  border-right: 1px solid var(--hairline);
}
.mission__para:last-child { border-right: none; }
.mission__num {
  display: block;
  margin-bottom: 20px;
  color: var(--text-dim);
  letter-spacing: 0.14em;
}
.mission__highlight {
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .mission__body { grid-template-columns: 1fr; }
  .mission__para { border-right: none; border-bottom: 1px solid var(--hairline); padding: 36px 0 36px; }
  .mission__para:last-child { border-bottom: none; }
  .mission__meta { max-width: none; justify-self: start; }
}

/* ═══════════════════════════════════════════════════════
   ABOUT · Founders (photo + hover-revealed bio)
   ─────────────────────────────────────────────────────── */
.founders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  max-width: 820px;
  margin: 0 auto;
}
.founder {
  background: transparent;
  display: flex;
  flex-direction: column;
}
.founder__shot {
  position: relative;
  aspect-ratio: 4 / 4.4;
  overflow: hidden;
  background: #0E1421;
  border: 1px solid var(--hairline);
}
.founder__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 720ms cubic-bezier(.2,.6,.2,1), filter 320ms ease;
  filter: saturate(0.95) contrast(1.02);
}
.founder:hover .founder__shot img { filter: saturate(1) contrast(1.05); }
.founder.is-open .founder__shot img { filter: saturate(1) contrast(1.05); }

/* CEO · tighter crop centered on the upper body */
.founder[data-founder="ymb"] .founder__shot img {
  object-position: 50% 22%;
  transform: scale(1.18);
  transform-origin: 50% 22%;
}
.founder[data-founder="ymb"]:hover .founder__shot img,
.founder[data-founder="ymb"].is-open .founder__shot img {
  transform: scale(1.22);
}

/* CTO · well-framed already, no extra zoom */
.founder[data-founder="yn"] .founder__shot img {
  object-position: 50% 50%;
  transform: scale(1);
}
.founder[data-founder="yn"]:hover .founder__shot img,
.founder[data-founder="yn"].is-open .founder__shot img {
  transform: scale(1.03);
}

.founder__shot-grid {
  position: absolute;
  inset: 14px;
  pointer-events: none;
  display: grid;
  grid-template-columns: 14px 1fr 14px;
  grid-template-rows: 14px 1fr 14px;
}
.founder__shot-grid span {
  display: block;
  width: 14px;
  height: 14px;
}
.founder__shot-grid span:nth-child(1) { grid-column: 1; grid-row: 1; border-top: 1px solid rgba(212,168,66,0.55); border-left: 1px solid rgba(212,168,66,0.55); }
.founder__shot-grid span:nth-child(2) { grid-column: 3; grid-row: 1; border-top: 1px solid rgba(212,168,66,0.55); border-right: 1px solid rgba(212,168,66,0.55); }
.founder__shot-grid span:nth-child(3) { grid-column: 1; grid-row: 3; border-bottom: 1px solid rgba(212,168,66,0.55); border-left: 1px solid rgba(212,168,66,0.55); }
.founder__shot-grid span:nth-child(4) { grid-column: 3; grid-row: 3; border-bottom: 1px solid rgba(212,168,66,0.55); border-right: 1px solid rgba(212,168,66,0.55); }

.founder__shot-tag {
  position: absolute;
  top: 26px;
  left: 26px;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold);
  background: rgba(10,14,23,0.55);
  padding: 4px 8px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.founder__shot-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0 36px;
  background: linear-gradient(to top, rgba(10,14,23,0.92) 0%, rgba(10,14,23,0.4) 35%, rgba(10,14,23,0) 65%);
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}
.founder:hover .founder__shot-overlay { opacity: 1; pointer-events: auto; }
.founder.is-open .founder__shot-overlay { opacity: 1; pointer-events: auto; }

.founder__bio-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: #1B1407;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 14px;
  padding: 14px 22px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transform: translateY(14px);
  opacity: 0;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 240ms ease, background 200ms ease;
}
.founder:hover .founder__bio-btn,
.founder.is-open .founder__bio-btn { transform: translateY(0); opacity: 1; }
.founder__bio-btn:hover { background: #E2B650; }
.founder__bio-btn-arrow {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 16px;
  transition: transform 220ms ease;
}
.founder.is-open .founder__bio-btn-arrow { transform: rotate(-90deg); }
.founder.is-open .founder__bio-btn-label::before { content: 'Hide bio'; }
.founder.is-open .founder__bio-btn-label { font-size: 0; }
.founder.is-open .founder__bio-btn-label::before { font-size: 14px; }

/* Strip below photo */
.founder__strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  border-bottom: 1px solid var(--hairline);
}
.founder__role {
  font-size: 11.5px;
  color: var(--text);
  letter-spacing: 0.16em;
  font-weight: 500;
}
.founder__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  color: var(--text-mute);
  border: 1px solid var(--hairline-2);
  border-radius: 1px;
  transition: all 200ms ease;
}
.founder__linkedin svg { width: 14px; height: 14px; }
.founder__linkedin:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-1px); }

/* Bio expand */
.founder__bio-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 420ms cubic-bezier(.4,0,.2,1);
}
.founder__bio-inner {
  overflow: hidden;
  min-height: 0;
}
.founder.is-open .founder__bio-wrap { grid-template-rows: 1fr; }
.founder__bio-inner > * { opacity: 0; transition: opacity 320ms ease 80ms; }
.founder.is-open .founder__bio-inner > * { opacity: 1; }

.founder__bio-name {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 28px 0 18px;
  color: var(--text);
}
.founder__bio-inner p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-mute);
  margin: 0 0 14px;
}
.founder__bio-inner p:last-child { margin-bottom: 8px; }
.founder__bio-inner strong { color: var(--text); font-weight: 500; }

@media (hover: none) {
  /* Touch devices: always show overlay & button */
  .founder__shot-overlay { opacity: 1; pointer-events: auto; }
  .founder__bio-btn { opacity: 1; transform: translateY(0); }
}
@media (max-width: 880px) {
  .founders { grid-template-columns: 1fr; gap: 36px; }
}

/* ═══════════════════════════════════════════════════════
   ABOUT · Backing
   ─────────────────────────────────────────────────────── */
.backing__card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(10,14,23,0.10);
  padding: 64px 56px 48px;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.backing__corner {
  position: absolute;
  width: 14px; height: 14px;
}
.backing__corner--tl { top: 18px; left: 18px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.backing__corner--tr { top: 18px; right: 18px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.backing__corner--bl { bottom: 18px; left: 18px; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.backing__corner--br { bottom: 18px; right: 18px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }

.backing__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.backing__rank {
  font-size: 56px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
}
.backing__by { font-size: 10px; letter-spacing: 0.20em; }
.backing__org {
  font-family: var(--ff-sans);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}
.backing__caption {
  font-size: 16px;
  color: var(--text-mute);
  line-height: 1.55;
  max-width: 500px;
  margin: 0;
}
.backing__meta {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
  margin: 16px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(10,14,23,0.10);
  width: 100%;
  justify-content: center;
}
.backing__meta li { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.backing__meta li > span:last-child { font-size: 14px; color: var(--text); font-weight: 500; }

@media (max-width: 720px) {
  .backing__card { padding: 56px 28px 36px; }
  .backing__meta { grid-template-columns: 1fr; gap: 18px; }
}

/* ═══════════════════════════════════════════════════════
   FINAL CTA · gold-framed variant (About page)
   ─────────────────────────────────────────────────────── */
.final-cta--framed {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,168,66,0.10), transparent 55%),
    var(--bg);
}
.final-cta--framed .final-cta__inner { position: relative; }
.final-cta--framed .final-cta__rule {
  width: 64px;
  height: 1px;
  margin: 0 auto 32px;
  background: var(--gold);
}
.final-cta--framed .final-cta__meta {
  border-color: rgba(212,168,66,0.45);
  background: rgba(212,168,66,0.04);
}
.final-cta--framed .final-cta__meta .gold { letter-spacing: 0.18em; }
.final-cta--framed .final-cta__title {
  font-size: clamp(56px, 7.5vw, 104px);
  letter-spacing: -0.03em;
  text-wrap: balance;
}

/* ═══════════════════════════════════════════════════════
   CONTACT · Get in touch (cream) + form card
   ─────────────────────────────────────────────────────── */
.getintouch { padding: 120px 0 100px; }
.getintouch__head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.getintouch__head .eyebrow { justify-content: center; }
.getintouch__title {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 20px;
  text-wrap: balance;
}
.getintouch__sub {
  font-size: 17px;
  color: var(--text-mute);
  line-height: 1.55;
  margin: 0;
}

.form-card {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid rgba(10,14,23,0.10);
  padding: 64px 64px 48px;
  box-shadow: 0 1px 0 rgba(10,14,23,0.04), 0 40px 80px -50px rgba(10,14,23,0.22);
}
.form-card__corner {
  position: absolute;
  width: 12px; height: 12px;
}
.form-card__corner--tl { top: 16px; left: 16px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.form-card__corner--tr { top: 16px; right: 16px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.form-card__corner--bl { bottom: 16px; left: 16px; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.form-card__corner--br { bottom: 16px; right: 16px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }

.form2 { color: #0A0E17; }
.form2__botcheck { display: none !important; }

.form2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}
.form2__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form2__field--full { grid-column: 1 / -1; }

.form2__label {
  font-size: 10.5px;
  color: #6E7689;
  letter-spacing: 0.14em;
}

.form2__field input,
.form2__field textarea,
.form2__field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(10,14,23,0.18);
  color: #0A0E17;
  font-family: var(--ff-sans);
  font-size: 17px;
  padding: 12px 0 10px;
  width: 100%;
  outline: none;
  transition: border-color 200ms ease;
  border-radius: 0;
}
.form2__field textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.form2__field input::placeholder,
.form2__field textarea::placeholder { color: rgba(10,14,23,0.32); }
.form2__field input:focus,
.form2__field textarea:focus,
.form2__field select:focus { border-bottom-color: var(--gold); }

.form2__select {
  position: relative;
  display: flex;
  align-items: center;
}
.form2__select select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  padding-right: 24px;
  cursor: pointer;
  color: #0A0E17;
}
.form2__select select:invalid { color: rgba(10,14,23,0.32); }
.form2__select select option { background: #FFFFFF; color: #0A0E17; }
.form2__select select.is-flash {
  animation: form2-flash 1.4s ease-out;
}
@keyframes form2-flash {
  0%   { background: rgba(212,168,66,0.20); border-bottom-color: var(--gold); }
  100% { background: transparent; border-bottom-color: rgba(10,14,23,0.18); }
}
.form2__select-caret {
  position: absolute;
  right: 0;
  pointer-events: none;
  color: #6E7689;
  font-family: var(--ff-mono);
  font-size: 12px;
}

.form2__consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 32px 0 0;
  font-size: 12.5px;
  color: #6E7689;
  line-height: 1.5;
  cursor: pointer;
}
.form2__consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border: 1px solid rgba(10,14,23,0.30);
  border-radius: 1px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  background: transparent;
}
.form2__consent input[type="checkbox"]:checked {
  background: #0A0E17;
  border-color: #0A0E17;
}
.form2__consent input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 11px;
  line-height: 1;
}

.form2__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(10,14,23,0.10);
}
.form2__note { font-size: 10.5px; max-width: 360px; line-height: 1.5; margin: 0; }

/* Pill submit (Amini-inspired) */
.cta-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--gold);
  border: none;
  padding: 8px 32px 8px 8px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--ff-sans);
  transition: background 200ms ease, transform 200ms ease;
}
.cta-pill:hover { background: #E2B650; transform: translateY(-1px); }
.cta-pill:hover .cta-pill__arrow { transform: rotate(-15deg); }
.cta-pill__arrow {
  width: 38px; height: 38px;
  background: #FFFFFF;
  color: #0A0E17;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1);
}
.cta-pill__arrow svg { width: 18px; height: 18px; }
.cta-pill__label {
  font-size: 15px;
  font-weight: 500;
  color: #1B1407;
}
.cta-pill[disabled] { opacity: 0.55; pointer-events: none; }

/* Form result states */
.form2__success {
  margin-top: 24px;
  padding: 28px 24px;
  border: 1px solid var(--gold);
  background: rgba(212,168,66,0.08);
  border-radius: 1px;
  text-align: center;
}
.form2__success-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: #1B1407;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  margin: 0 auto 12px;
}
.form2__success h3 {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 6px;
  color: #0A0E17;
}
.form2__success p {
  margin: 0;
  font-size: 14.5px;
  color: #4F5664;
}
.form2__error {
  margin-top: 24px;
  padding: 18px 22px;
  border: 1px solid rgba(180, 80, 80, 0.5);
  background: rgba(180, 80, 80, 0.06);
  font-size: 14px;
  color: #8B3A3A;
}

@media (max-width: 720px) {
  .form-card { padding: 56px 24px 36px; }
  .form2__grid { grid-template-columns: 1fr; gap: 24px; }
  .form2__foot { flex-direction: column; align-items: stretch; }
  .cta-pill { width: 100%; justify-content: center; padding: 8px; }
}

/* ═══════════════════════════════════════════════════════
   CONTACT · Book a demo block (dark, Amini-inspired)
   ─────────────────────────────────────────────────────── */
.demo-block {
  position: relative;
  max-width: 880px;
  margin: 48px auto 0;
  background: var(--bg);
  color: var(--text);
  border: 1px solid rgba(245,245,245,0.10);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 32px;
  align-items: center;
  overflow: hidden;
}
.demo-block__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.demo-block__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.demo-block__title {
  font-family: var(--ff-sans);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.022em;
  margin: 0;
  color: var(--text);
}
.demo-block__arrow {
  color: var(--gold);
  display: inline-flex;
  width: 28px; height: 28px;
  transition: transform 240ms ease;
}
.demo-block:hover .demo-block__arrow { transform: translate(2px, -2px); }
.demo-block__arrow svg { width: 100%; height: 100%; }

.demo-block__body {
  font-size: 15px;
  color: var(--text-mute);
  line-height: 1.6;
  margin: 0;
  max-width: 520px;
}
.demo-block__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-sans);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  align-self: flex-start;
  margin-top: 8px;
  transition: color 200ms ease, gap 200ms ease;
}
.demo-block__cta:hover { color: var(--gold); gap: 14px; }
.demo-block__motif {
  align-self: center;
  width: 160px;
  height: 160px;
}
.demo-block__motif svg { width: 100%; height: 100%; }

@media (max-width: 720px) {
  .demo-block { grid-template-columns: 1fr; padding: 36px 28px; }
  .demo-block__motif { display: none; }
}
