/* =========================================================
   OmniFabric — Marketing Site
   Palette inspired by CloudSigma / TaaS: clean, professional,
   green accents on light surfaces with deep-green contrast.
   ========================================================= */

:root {
  /* Brand — CloudSigma-style green family */
  --teal-50:  #edfcef;
  --teal-100: #d3f7d8;
  --teal-200: #a7ecb1;
  --teal-300: #74dc86;
  --teal-400: #45c563;
  --teal-500: #21a948;   /* primary accent */
  --teal-600: #178a3c;
  --teal-700: #166f33;
  --teal-800: #15592c;
  --teal-900: #144a27;

  /* Deep teal-navy for dark sections */
  --deep-900: #07251a;
  --deep-800: #0a3a28;
  --deep-700: #0e5237;

  /* Neutrals (subtly green-tinted to match the brand) */
  --ink:      #102218;
  --slate:    #44584c;
  --muted:    #6e8377;
  --line:     #e4eee6;
  --surface:  #ffffff;
  --surface-2:#f3faf4;
  --surface-3:#e9f5ec;

  /* Effects */
  --grad-teal: linear-gradient(120deg, #21a948 0%, #45c563 50%, #74dc86 100%);
  --grad-deep: linear-gradient(160deg, #07251a 0%, #0e5237 60%, #166f33 130%);
  --shadow-sm: 0 1px 2px rgba(16,42,28,.06), 0 2px 8px rgba(16,42,28,.05);
  --shadow-md: 0 8px 24px rgba(16,42,28,.08), 0 2px 6px rgba(16,42,28,.05);
  --shadow-lg: 0 24px 60px rgba(16,42,28,.14);
  --shadow-teal: 0 14px 40px rgba(33,169,72,.30);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --maxw: 1180px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
section { position: relative; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal-600);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--grad-teal);
}
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  line-height: 1.12; letter-spacing: -.02em; margin: 16px 0 14px;
  font-weight: 800;
}
.section-head p { font-size: 1.1rem; color: var(--slate); }
.center .eyebrow::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: .98rem; line-height: 1;
  padding: 14px 24px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .25s ease,
              background .25s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--grad-teal); color: #06250f;
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 48px rgba(33,169,72,.42); }
.btn-ghost {
  background: rgba(255,255,255,.06); color: #eafcff;
  border-color: rgba(255,255,255,.22);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn-outline {
  background: #fff; color: var(--teal-700); border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color: var(--teal-300); color: var(--teal-600); transform: translateY(-2px); }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--teal-600); font-weight: 600;
}
.link-arrow svg { width: 15px; height: 15px; transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
/* give the header more room than the body content so the 8 links + actions breathe */
.header .container { max-width: 1320px; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: nowrap; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; flex: none; white-space: nowrap; font-weight: 800; font-size: 1.18rem; letter-spacing: -.02em; }
.brand .logo-mark { width: 34px; height: 34px; }
.brand .wordmark { background: var(--grad-teal); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; align-items: center; flex-wrap: nowrap; gap: 32px; }
.nav-links a { font-size: .96rem; font-weight: 500; white-space: nowrap; color: var(--slate); transition: color .2s ease; }
.nav-links a:hover { color: var(--teal-600); }
.nav-actions { display: flex; align-items: center; flex: none; gap: 18px; }
.nav-actions .signin { font-weight: 600; font-size: .96rem; white-space: nowrap; color: var(--ink); }
.nav-actions .signin:hover { color: var(--teal-600); }
/* language dropdown */
.lang-select { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
  font-family: inherit; font-weight: 600; font-size: .88rem; color: var(--slate);
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 12px; transition: color .2s ease, border-color .2s ease, transform .15s ease;
}
.lang-btn:hover { color: var(--teal-600); border-color: var(--teal-300); transform: translateY(-1px); }
.lang-btn .globe { width: 15px; height: 15px; flex: none; }
.lang-btn .chev { width: 12px; height: 12px; flex: none; transition: transform .2s ease; opacity: .7; }
.lang-btn[aria-expanded="true"] .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 150px; z-index: 120;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-md);
  padding: 6px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
html[dir="rtl"] .lang-menu { right: auto; left: 0; }
.lang-menu.open { opacity: 1; visibility: visible; transform: none; }
.lang-menu li { margin: 0; }
.lang-menu button {
  width: 100%; text-align: left; font-family: inherit; font-size: .92rem; font-weight: 500;
  color: var(--slate); background: none; border: none; cursor: pointer;
  padding: 9px 12px; border-radius: 8px; display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
html[dir="rtl"] .lang-menu button { text-align: right; }
.lang-menu button:hover { background: var(--surface-2); color: var(--teal-600); }
.lang-menu button[aria-current="true"] { color: var(--teal-600); font-weight: 700; }
.lang-menu button[aria-current="true"]::after { content: "✓"; color: var(--teal-500); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; }
/* mid widths: keep all 8 links on one line (tighter gaps, align header to body) */
@media (max-width: 1320px) {
  .header .container { max-width: 1180px; }
  .nav { gap: 20px; }
  .nav-links { gap: 18px; }
  .nav-actions { gap: 12px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 84px 0 96px;
  background:
    radial-gradient(900px 480px at 78% -8%, rgba(69,197,99,.20), transparent 60%),
    radial-gradient(700px 460px at 6% 14%, rgba(33,169,72,.12), transparent 55%),
    linear-gradient(180deg, #f7fdfe 0%, #ffffff 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 8px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-size: .85rem; font-weight: 500; color: var(--slate); margin-bottom: 26px;
}
.hero-badge .pill {
  background: var(--grad-teal); color: #06250f; font-weight: 700;
  padding: 3px 10px; border-radius: 999px; font-size: .76rem; letter-spacing: .02em;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.9rem); line-height: 1.05;
  letter-spacing: -.03em; font-weight: 800; margin-bottom: 22px;
}
.hero h1 .grad { background: var(--grad-teal); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 1.2rem; color: var(--slate); max-width: 540px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 14px; font-size: .9rem; color: var(--muted); }
.hero-trust .dots { display: flex; }
.hero-trust .dots span {
  width: 30px; height: 30px; border-radius: 50%; margin-left: -8px;
  border: 2px solid #fff; background: var(--grad-teal);
}
.hero-trust .dots span:nth-child(2){ background: linear-gradient(135deg,#178a3c,#45c563);}
.hero-trust .dots span:nth-child(3){ background: linear-gradient(135deg,#15592c,#21a948);}
.hero-trust .dots span:nth-child(4){ background: linear-gradient(135deg,#74dc86,#21a948);}

/* Hero visual — flywheel card */
.hero-visual { position: relative; }
.flywheel {
  position: relative; aspect-ratio: 1/1; max-width: 440px; margin: 0 auto;
}
.flywheel .ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px dashed rgba(33,169,72,.35);
  animation: spin 36s linear infinite;
}
.flywheel .ring.inner { inset: 16%; border-color: rgba(33,169,72,.22); animation-duration: 26s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.flywheel .core {
  position: absolute; inset: 32%; border-radius: 50%;
  background: var(--grad-deep); box-shadow: var(--shadow-lg);
  display: grid; place-content: center; text-align: center; color: #eafcff;
}
.flywheel .core b { font-size: 1.1rem; letter-spacing: .04em; }
.flywheel .core span { font-size: .72rem; color: var(--teal-200); letter-spacing: .14em; text-transform: uppercase; }
.node {
  position: absolute; display: flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md);
  padding: 11px 16px; border-radius: 14px; font-weight: 700; font-size: .95rem;
}
.node i { width: 30px; height: 30px; border-radius: 9px; display: grid; place-content: center; background: var(--teal-50); color: var(--teal-600); }
.node i svg { width: 17px; height: 17px; }
.node.n1 { top: -4%; left: 50%; transform: translateX(-50%); }
.node.n2 { bottom: 10%; left: -10%; }
.node.n3 { bottom: 10%; right: -10%; }
.float-card {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-md); padding: 12px 15px;
  font-size: .82rem; display: flex; align-items: center; gap: 10px;
}
.float-card .dot { width: 9px; height: 9px; border-radius: 50%; background: #19c37d; box-shadow: 0 0 0 4px rgba(25,195,125,.16); }
.float-card.fc1 { top: 6%; right: -6%; animation: floaty 5s ease-in-out infinite; }
.float-card.fc2 { bottom: 2%; left: -2%; animation: floaty 6s ease-in-out infinite .6s; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }

/* ---------- Logos / trust strip ---------- */
.logos { padding: 44px 0; border-bottom: 1px solid var(--line); }
.logos p { text-align: center; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.logos-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 48px; }
.logos-row .lg { font-weight: 800; font-size: 1.25rem; color: #aebfc7; letter-spacing: -.02em; transition: color .2s ease; }
.logos-row .lg:hover { color: var(--teal-600); }

/* ---------- Stats band ---------- */
.stats { background: var(--surface-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.stat { text-align: center; }
.stat .num { font-size: clamp(2rem, 3.4vw, 2.7rem); font-weight: 800; letter-spacing: -.02em;
  background: var(--grad-teal); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { color: var(--slate); font-size: .96rem; margin-top: 4px; }

/* ---------- Flywheel / pillars (Agent · Model · Data) ---------- */
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pillar {
  position: relative; padding: 32px 28px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.pillar::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad-teal);
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal-200); }
.pillar:hover::before { transform: scaleX(1); }
.pillar .ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-content: center;
  background: var(--grad-deep); color: var(--teal-200); margin-bottom: 18px; }
.pillar .ic svg { width: 24px; height: 24px; }
.pillar h3 { font-size: 1.28rem; letter-spacing: -.01em; margin-bottom: 9px; }
.pillar .tag { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-600); display: block; margin-bottom: 12px; }
.pillar p { color: var(--slate); font-size: .98rem; }

/* ---------- Capabilities (feature blocks) ---------- */
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-block + .feature-block { margin-top: 96px; }
.feature-block.reverse .fb-media { order: -1; }
.fb-text .eyebrow { margin-bottom: 16px; }
.fb-text h3 { font-size: clamp(1.6rem, 2.8vw, 2.15rem); letter-spacing: -.02em; line-height: 1.15; margin-bottom: 16px; font-weight: 800; }
.fb-text > p { color: var(--slate); font-size: 1.08rem; margin-bottom: 24px; }
.fb-list { display: grid; gap: 14px; margin-bottom: 28px; }
.fb-list li { display: flex; gap: 12px; align-items: flex-start; }
.fb-list .ck { flex: none; width: 22px; height: 22px; margin-top: 1px; border-radius: 7px;
  background: var(--teal-50); color: var(--teal-600); display: grid; place-content: center; }
.fb-list .ck svg { width: 13px; height: 13px; }
.fb-list b { font-weight: 650; }
.fb-list span { color: var(--slate); }

/* media panel */
.fb-media { position: relative; }
.panel {
  border-radius: var(--radius-lg); background: var(--grad-deep);
  box-shadow: var(--shadow-lg); padding: 26px; color: #d6f4fa; overflow: hidden;
  position: relative;
}
.panel::after {
  content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(69,197,99,.35), transparent 65%);
  top: -120px; right: -100px;
}
.panel .panel-bar { display: flex; gap: 7px; margin-bottom: 18px; position: relative; z-index: 1; }
.panel .panel-bar i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.25); }
.code { position: relative; z-index: 1; font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: .84rem; line-height: 1.85; }
.code .k { color: #74dc86; }
.code .s { color: #9ff0c4; }
.code .c { color: #6fa3b0; }
.code .p { color: #cfe9f0; }
.code .m { color: #ffd479; }

/* mini metric grid inside panel */
.panel-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; position: relative; z-index: 1; }
.panel-metrics .pm { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 16px; }
.panel-metrics .pm .v { font-size: 1.5rem; font-weight: 800; color: #eafcff; }
.panel-metrics .pm .l { font-size: .82rem; color: var(--teal-200); }

/* data flow visual */
.flow { position: relative; z-index: 1; display: grid; gap: 12px; }
.flow .frow { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 12px 14px; }
.flow .frow .fi { width: 34px; height: 34px; flex: none; border-radius: 9px; background: rgba(69,197,99,.18); color: #74dc86; display: grid; place-content: center; }
.flow .frow .fi svg { width: 18px; height: 18px; }
.flow .frow b { color: #eafcff; font-size: .95rem; display: block; }
.flow .frow small { color: var(--teal-200); font-size: .8rem; }
.flow .farrow { text-align: center; color: rgba(255,255,255,.4); font-size: 1rem; line-height: .4; }

/* ---------- Outcomes ---------- */
.outcomes { background: var(--surface-2); }
.outcomes-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.outcome {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.outcome:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.outcome .change { display: flex; align-items: baseline; gap: 8px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; }
.outcome .change .from { color: var(--muted); font-size: 1.05rem; text-decoration: line-through; text-decoration-color: rgba(107,130,144,.45); }
.outcome .change .arr { color: var(--teal-400); }
.outcome .change .to { color: var(--teal-600); font-size: 1.7rem; }
.outcome h4 { font-size: 1.02rem; margin-bottom: 4px; }
.outcome p { color: var(--slate); font-size: .92rem; }

/* ---------- Solutions ---------- */
.sol-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.sol {
  position: relative; padding: 28px; border-radius: var(--radius);
  border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.sol:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--teal-200); }
.sol .ic { width: 46px; height: 46px; border-radius: 13px; background: var(--teal-50); color: var(--teal-600); display: grid; place-content: center; margin-bottom: 16px; }
.sol .ic svg { width: 22px; height: 22px; }
.sol h4 { font-size: 1.14rem; margin-bottom: 8px; }
.sol p { color: var(--slate); font-size: .95rem; margin-bottom: 14px; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding-top: 18px; }
.step .n {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-content: center;
  background: var(--grad-teal); color: #06250f; font-weight: 800; font-size: 1.2rem; margin-bottom: 18px;
  box-shadow: var(--shadow-teal);
}
.step h4 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: var(--slate); font-size: .97rem; }

/* ---------- CTA ---------- */
.cta-band { padding: 0 0 96px; }
.cta-inner {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--grad-deep); padding: 64px 56px; text-align: center; color: #eafcff;
  box-shadow: var(--shadow-lg);
}
.cta-inner::before, .cta-inner::after {
  content: ""; position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(69,197,99,.4), transparent 65%);
}
.cta-inner::before { width: 420px; height: 420px; top: -180px; left: -120px; }
.cta-inner::after { width: 360px; height: 360px; bottom: -200px; right: -80px; }
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); letter-spacing: -.02em; margin-bottom: 14px; font-weight: 800; }
.cta-inner p { font-size: 1.12rem; color: var(--teal-100); max-width: 560px; margin: 0 auto 30px; }
.cta-inner .hero-cta { justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--deep-900); color: #b6d3db; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { color: #eafcff; margin-bottom: 16px; }
.footer .brand .wordmark { background: var(--grad-teal); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer-about p { font-size: .95rem; color: #8fb4bf; max-width: 320px; }
.footer h5 { color: #eafcff; font-size: .95rem; margin-bottom: 16px; letter-spacing: .02em; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { font-size: .92rem; color: #9cc0cb; transition: color .2s ease; }
.footer ul a:hover { color: #74dc86; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); font-size: .88rem; color: #7fa6b2; }
.footer-bottom .social { display: flex; gap: 16px; }
.footer-bottom .social a { color: #9cc0cb; }
.footer-bottom .social a:hover { color: #74dc86; }
.footer-bottom .social svg { width: 19px; height: 19px; }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tst {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tst:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tst .quote { font-size: 1.02rem; color: var(--ink); line-height: 1.65; margin-bottom: 22px; flex: 1; }
.tst .quote::before { content: "“"; color: var(--teal-400); font-size: 2.6rem; line-height: 0; vertical-align: -0.4em; margin-right: 4px; font-weight: 800; }
.tst .who { display: flex; align-items: center; gap: 12px; }
.tst .av { width: 42px; height: 42px; border-radius: 50%; flex: none; background: var(--grad-teal); display: grid; place-content: center; color: #06250f; font-weight: 800; font-size: 1rem; }
.tst .who b { display: block; font-size: .95rem; }
.tst .who span { font-size: .85rem; color: var(--muted); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.price {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price.featured { border-color: transparent; box-shadow: var(--shadow-lg); background: var(--grad-deep); color: #eafcff; }
.price.featured .price-name, .price.featured .price-amt { color: #eafcff; }
.price.featured .price-desc { color: var(--teal-100); }
.price.featured .price-amt small { color: var(--teal-200); }
.price.featured .price-list li { color: #d6f4fa; }
.price.featured .price-list .ck { background: rgba(69,197,99,.18); color: #74dc86; }
.price .badge {
  position: absolute; top: 18px; right: 18px; background: var(--grad-teal); color: #06250f;
  font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.price-name { font-size: 1.2rem; font-weight: 800; letter-spacing: -.01em; margin-bottom: 6px; }
.price-desc { color: var(--slate); font-size: .92rem; margin-bottom: 22px; min-height: 40px; }
.price-amt { font-size: 2.6rem; font-weight: 800; letter-spacing: -.02em; line-height: 1; margin-bottom: 4px; }
.price-amt small { font-size: .95rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price-amt .from { font-size: .9rem; font-weight: 500; color: var(--muted); display: block; margin-bottom: 6px; }
.price .btn { width: 100%; margin: 24px 0 26px; }
.price-list { display: grid; gap: 13px; }
.price-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .94rem; color: var(--slate); }
.price-list .ck { flex: none; width: 20px; height: 20px; margin-top: 1px; border-radius: 6px; background: var(--teal-50); color: var(--teal-600); display: grid; place-content: center; }
.price-list .ck svg { width: 12px; height: 12px; }
.price-note { text-align: center; color: var(--muted); font-size: .92rem; margin-top: 30px; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 4px; font-size: 1.08rem; font-weight: 650; color: var(--ink);
  font-family: inherit;
}
.faq-q .pm { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--teal-50); color: var(--teal-600); display: grid; place-content: center; transition: transform .25s ease, background .2s ease; }
.faq-q .pm svg { width: 15px; height: 15px; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--teal-500); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 4px 22px; color: var(--slate); font-size: 1rem; }

/* sub-page hero (compact) */
.subhero {
  padding: 64px 0 56px; text-align: center;
  background:
    radial-gradient(700px 380px at 50% -10%, rgba(69,197,99,.18), transparent 60%),
    linear-gradient(180deg, #f7fdfe 0%, #ffffff 100%);
}
.subhero h1 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); letter-spacing: -.03em; font-weight: 800; margin: 16px 0 14px; }
.subhero p { font-size: 1.15rem; color: var(--slate); max-width: 600px; margin: 0 auto; }

@media (max-width: 960px) {
  .tst-grid, .price-grid { grid-template-columns: 1fr; }
  .price.featured { order: -1; }
}

/* ---------- Competitive advantage ---------- */
.adv-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-bottom: 56px; }
.adv {
  position: relative; padding: 28px 24px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.adv:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal-200); }
.adv .ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-content: center;
  background: var(--grad-teal); color: #06250f; margin-bottom: 16px; }
.adv .ic svg { width: 24px; height: 24px; }
.adv h3 { font-size: 1.14rem; letter-spacing: -.01em; margin-bottom: 8px; }
.adv p { color: var(--slate); font-size: .94rem; }

/* comparison table */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.compare { width: 100%; border-collapse: collapse; min-width: 720px; background: #fff; }
.compare th, .compare td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: middle; }
.compare thead th { font-size: .95rem; font-weight: 700; color: var(--ink); background: var(--surface-2); }
.compare thead th.own {
  color: #06250f; background: var(--grad-teal); border-top-right-radius: 0;
  position: relative; font-weight: 800;
}
.compare thead th:first-child { width: 32%; }
.compare tbody td { font-size: .94rem; color: var(--slate); }
.compare tbody td:first-child { font-weight: 650; color: var(--ink); }
.compare .own-col { background: rgba(33,169,72,.06); font-weight: 600; color: var(--ink); }
.compare tbody tr:last-child td { border-bottom: none; }
.cmp-ic { display: inline-flex; align-items: center; gap: 9px; }
.cmp-ic .yes, .cmp-ic .no, .cmp-ic .mid { width: 22px; height: 22px; flex: none; border-radius: 7px; display: grid; place-content: center; }
.cmp-ic .yes { background: rgba(33,169,72,.14); color: var(--teal-700); }
.cmp-ic .no  { background: #fdecec; color: #d05a5a; }
.cmp-ic .mid { background: #fff5e6; color: #c2872a; }
.cmp-ic svg { width: 13px; height: 13px; }

/* ---------- Case studies ---------- */
.case-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 24px; }
.case {
  display: flex; flex-direction: column; padding: 26px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.case:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--teal-200); }
.case .tag {
  align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--teal-700); background: var(--teal-50); padding: 5px 11px; border-radius: 999px; margin-bottom: 16px;
}
.case .metric { font-size: 2.1rem; font-weight: 800; letter-spacing: -.02em; line-height: 1;
  background: var(--grad-teal); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 6px; }
.case .metric small { font-size: .9rem; font-weight: 600; color: var(--muted); letter-spacing: 0; -webkit-text-fill-color: var(--muted); }
.case h4 { font-size: 1.06rem; margin-bottom: 8px; }
.case p { color: var(--slate); font-size: .93rem; flex: 1; }
.case .who { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); font-size: .86rem; color: var(--muted); font-weight: 600; }

@media (max-width: 960px) {
  .adv-grid { grid-template-columns: repeat(2,1fr); }
  .case-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .adv-grid { grid-template-columns: 1fr; }
}

/* ---------- Docs / Resources ---------- */
.docs-search {
  max-width: 520px; margin: 26px auto 0; position: relative;
}
.docs-search svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--muted); }
.docs-search input {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 15px 18px 15px 48px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; box-shadow: var(--shadow-sm); outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.docs-search input:focus { border-color: var(--teal-300); box-shadow: 0 0 0 4px rgba(33,169,72,.12); }

.guide-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.guide {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.guide:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-200); }
.guide-head { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.guide-head .ic { width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--grad-deep); color: var(--teal-200); display: grid; place-content: center; }
.guide-head .ic svg { width: 22px; height: 22px; }
.guide-head h3 { font-size: 1.2rem; letter-spacing: -.01em; }
.guide > p { color: var(--slate); font-size: .96rem; margin-bottom: 16px; }
.guide-links { display: grid; gap: 2px; }
.guide-links a {
  display: flex; align-items: center; gap: 8px; padding: 9px 10px; border-radius: 9px;
  font-size: .94rem; color: var(--slate); font-weight: 500; transition: background .2s ease, color .2s ease;
}
.guide-links a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--teal-400); flex: none; }
.guide-links a:hover { background: var(--surface-2); color: var(--teal-600); }

.api-panel {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--grad-deep); color: #eafcff; padding: 48px 44px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center;
  box-shadow: var(--shadow-lg);
}
.api-panel::after { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(69,197,99,.32), transparent 65%); top: -140px; right: -90px; }
.api-panel > * { position: relative; z-index: 1; }
.api-panel .eyebrow { color: var(--teal-200); }
.api-panel .eyebrow::before { background: var(--teal-300); }
.api-panel h2 { font-size: clamp(1.6rem,2.8vw,2.1rem); letter-spacing: -.02em; margin: 14px 0 12px; font-weight: 800; }
.api-panel p { color: var(--teal-100); margin-bottom: 24px; }
.api-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.api-code {
  background: rgba(3,18,24,.5); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius);
  padding: 22px; font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: .84rem; line-height: 1.85;
}

@media (max-width: 960px) {
  .guide-grid { grid-template-columns: 1fr; }
  .api-panel { grid-template-columns: 1fr; gap: 28px; padding: 36px 26px; }
}

/* ---------- Regions ---------- */
.region-banner {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  max-width: 520px; margin: 26px auto 0; padding: 12px 18px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow-sm);
  font-size: .95rem; color: var(--slate);
}
.region-banner .pin { width: 18px; height: 18px; flex: none; color: var(--teal-600); }
.region-banner b { color: var(--ink); }
.region-banner[data-active="true"] { border-color: var(--teal-300); }

.region-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 48px; }
.region-stats .stat .num { font-size: clamp(1.8rem,3vw,2.4rem); }

.region-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.region {
  display: flex; flex-direction: column; gap: 14px; padding: 22px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.region:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.region.is-active { border-color: var(--teal-400); box-shadow: 0 0 0 3px rgba(33,169,72,.12), var(--shadow-md); }
.region.soon { opacity: .82; }
.region-top { display: flex; align-items: flex-start; gap: 12px; }
.region-top .flag { font-size: 1.7rem; line-height: 1; flex: none; }
.region-top .rt-name { flex: 1; min-width: 0; }
.region-top .rt-name b { display: block; font-size: 1.05rem; letter-spacing: -.01em; }
.region-top .rt-name span { font-size: .85rem; color: var(--muted); }
.region-status { font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px; flex: none; white-space: nowrap; }
.region-status.ok { background: var(--teal-50); color: var(--teal-700); }
.region-status.soon { background: #fff5e6; color: #c2872a; }
.region-sub { font-size: .85rem; color: var(--slate); display: flex; align-items: center; gap: 7px; margin-top: -2px; }
.region-sub::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--teal-400); flex: none; }
.region .btn { width: 100%; margin-top: auto; padding: 11px 16px; font-size: .92rem; }
.region.is-active .btn { background: var(--teal-50); color: var(--teal-700); border-color: var(--teal-300); cursor: default; box-shadow: none; }
.region-activate[disabled] { opacity: .55; cursor: not-allowed; }

/* provisioning modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  background: rgba(7,37,26,.55); backdrop-filter: blur(4px); padding: 24px;
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  width: 100%; max-width: 440px; background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 30px; transform: translateY(12px) scale(.98);
  transition: transform .25s ease; position: relative;
}
.modal-overlay.open .modal { transform: none; }
.modal-region { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.modal-region .flag { font-size: 1.9rem; }
.modal-region b { font-size: 1.15rem; }
.modal-region span { display: block; font-size: .85rem; color: var(--muted); }
.modal h3 { font-size: 1.15rem; margin-bottom: 18px; letter-spacing: -.01em; }
.prov-steps { display: grid; gap: 12px; margin-bottom: 8px; }
.prov-step { display: flex; align-items: center; gap: 12px; font-size: .95rem; color: var(--muted); transition: color .3s ease; }
.prov-step .dot {
  width: 24px; height: 24px; flex: none; border-radius: 50%; display: grid; place-content: center;
  border: 2px solid var(--line); background: #fff; transition: all .3s ease;
}
.prov-step .dot .spin { width: 13px; height: 13px; border: 2px solid var(--teal-200); border-top-color: var(--teal-500);
  border-radius: 50%; animation: rot .7s linear infinite; }
.prov-step .dot .ok { width: 13px; height: 13px; color: #fff; display: none; }
@keyframes rot { to { transform: rotate(360deg); } }
.prov-step.active { color: var(--ink); font-weight: 600; }
.prov-step.done { color: var(--ink); }
.prov-step.done .dot { background: var(--teal-500); border-color: var(--teal-500); }
.prov-step.done .dot .spin { display: none; }
.prov-step.done .dot .ok { display: block; }
.prov-step .dot .spin, .prov-step.active .dot .spin { display: block; }
.prov-step:not(.active):not(.done) .dot .spin { display: none; }

.prov-done { text-align: center; display: none; }
.prov-done.show { display: block; }
.prov-done .check { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--grad-teal); display: grid; place-content: center; box-shadow: var(--shadow-teal); }
.prov-done .check svg { width: 28px; height: 28px; color: #06250f; }
.prov-done h3 { font-size: 1.3rem; margin-bottom: 8px; }
.prov-done p { color: var(--slate); font-size: .95rem; margin-bottom: 14px; }
.prov-endpoint { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: .9rem;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px;
  color: var(--teal-700); margin-bottom: 22px; word-break: break-all; }
.prov-actions { display: flex; gap: 10px; justify-content: center; }
.prov-body.hide { display: none; }
html[dir="rtl"] .prov-step, html[dir="rtl"] .modal-region { flex-direction: row-reverse; }

@media (max-width: 960px) {
  .region-grid { grid-template-columns: repeat(2,1fr); }
  .region-stats { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 560px) { .region-grid { grid-template-columns: 1fr; } }

/* ---------- About page ---------- */
.fb-sub { color: var(--teal-700); font-weight: 700; font-size: 1.08rem; margin-bottom: 16px; }
.fb-text h3 .biglogo { font-size: 1.9rem; }
.facts-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 8px 10px; position: relative; overflow: hidden;
}
.facts-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--grad-teal); }
.fact-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 17px 18px; border-bottom: 1px solid var(--line); }
.fact-row:last-child { border-bottom: none; }
.fact-row .k { color: var(--muted); font-size: .9rem; font-weight: 600; }
.fact-row .v { color: var(--ink); font-weight: 700; font-size: 1rem; text-align: right; }
html[dir="rtl"] .fact-row .v { text-align: left; }
html[dir="rtl"] .facts-card::before { inset: 0 0 0 auto; width: 4px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .section { padding: 72px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .flywheel { max-width: 360px; }
  .feature-block, .feature-block.reverse { grid-template-columns: 1fr; gap: 36px; }
  .feature-block.reverse .fb-media { order: 0; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .outcomes-grid { grid-template-columns: repeat(2,1fr); }
  .pillars-grid, .sol-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
/* collapse nav to a hamburger below 1180px — the 8 links need room to stay loose */
@media (max-width: 1180px) {
  .nav-links, .nav-actions .signin { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column;
    gap: 0; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); padding: 8px 0;
  }
  .nav.open .nav-links a { padding: 14px 24px; width: 100%; }
}
@media (max-width: 560px) {
  .cta-inner { padding: 44px 24px; }
  .stats-grid, .outcomes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1; }
  .node.n2 { left: -2%; } .node.n3 { right: -2%; }
  .float-card.fc1 { right: 0; } .float-card.fc2 { left: 0; }
}

/* ---------- Case-card logo + link ---------- */
.case-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 16px; }
.case .clogo { font-weight: 800; letter-spacing: -.02em; font-size: 1.02rem; color: var(--deep-800);
  display: inline-flex; align-items: center; gap: 8px; }
.case .clogo::before { content: ""; width: 22px; height: 22px; border-radius: 6px; background: var(--grad-teal); flex: none; }
.case-top .tag { margin-bottom: 0; }
.case .case-link { margin-top: 16px; }

/* ---------- RTL (Arabic) ---------- */
html[dir="rtl"] .link-arrow svg,
html[dir="rtl"] .btn svg { transform: scaleX(-1); }
html[dir="rtl"] .link-arrow:hover svg { transform: scaleX(-1) translateX(4px); }
html[dir="rtl"] .compare th,
html[dir="rtl"] .compare td { text-align: right; }
html[dir="rtl"] .hero-trust .dots span { margin-left: 0; margin-right: -8px; }
html[dir="rtl"] .farrow { transform: none; }
html[dir="rtl"] .case .clogo::before { }

/* ---------- Customer detail page ---------- */
.cd-list { display: grid; gap: 24px; }
.cd { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow-sm); transition: box-shadow .25s ease, transform .25s ease; }
.cd:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.cd-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.cd-head .clogo { font-weight: 800; font-size: 1.12rem; color: var(--deep-800); display: inline-flex; align-items: center; gap: 9px; letter-spacing: -.02em; }
.cd-head .clogo::before { content: ""; width: 26px; height: 26px; border-radius: 8px; background: var(--grad-teal); flex: none; }
.cd-head .tag { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--teal-700); background: var(--teal-50); padding: 5px 11px; border-radius: 999px; }
.cd h3 { font-size: 1.45rem; letter-spacing: -.02em; margin-bottom: 12px; }
.cd-metric { margin-bottom: 24px; display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; }
.cd-metric .metric { font-size: 2rem; font-weight: 800; letter-spacing: -.02em;
  background: var(--grad-teal); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cd-metric .ms { color: var(--muted); font-weight: 600; }
.cd-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cd-block h5 { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-600); margin-bottom: 8px; }
.cd-block p { color: var(--slate); font-size: .95rem; }
.cd-who { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-weight: 600; font-size: .9rem; }
@media (max-width: 780px) { .cd-grid { grid-template-columns: 1fr; gap: 16px; } .cd { padding: 26px; } }
