/* ============================================================
   NURA AI — Apple-inspired production system
   Clean · airy · SF Pro · big type · purposeful motion
   ============================================================ */

:root {
  --white:      #ffffff;
  --gray:       #f5f5f7;
  --gray-2:     #fafafc;
  --gray-3:     #f0f0f5;
  --ink:        #1d1d1f;
  --ink-soft:   #2b2b2f;
  --muted:      #6e6e73;
  --muted-2:    #71717a;
  --line:       #d2d2d7;
  --line-2:     #e8e8ed;

  --blue:       #0071e3;
  --blue-2:     #0077ed;
  --blue-3:     #0a84ff;
  --blue-link:  #0066cc;
  --blue-soft:  #e8f1fe;
  --blue-deep:  #1b46c8;
  --green:      #1d9b56;
  --amber:      #b25e09;
  --violet:     #7c5cff;

  --font:       "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Inter", Helvetica, Arial, sans-serif;
  --font-text:  "SF Pro Text",    -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Inter", Helvetica, Arial, sans-serif;
  --mono:       "SF Mono", ui-monospace, "JetBrains Mono", Menlo, monospace;

  --maxw:       1024px;
  --wide:       1200px;
  --ease:       cubic-bezier(.28,.11,.32,1);
  --ease-spring:cubic-bezier(.34,1.56,.64,1);
  --radius:     22px;
  --radius-lg:  30px;
  --shadow-card:  0 6px 30px -12px rgba(0,0,0,.14), 0 2px 8px -4px rgba(0,0,0,.08);
  --shadow-float: 0 40px 90px -45px rgba(0,0,0,.42), 0 12px 36px -22px rgba(0,0,0,.20);
  --shadow-deep:  0 60px 120px -60px rgba(0,0,0,.55), 0 24px 48px -30px rgba(0,0,0,.28);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-text);
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: rgba(0,113,227,.18); }

.wrap      { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.wrap-wide { max-width: var(--wide); }

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 300;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--blue-3));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .1s linear;
  pointer-events: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.03;
  font-size: clamp(44px, 7.8vw, 96px);
}
.h2 {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: -.022em;
  line-height: 1.07;
  font-size: clamp(32px, 4.8vw, 56px);
}
.h3 {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.12;
  font-size: clamp(24px, 3vw, 34px);
}
.eyebrow {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 28px);
  letter-spacing: -.01em;
  color: var(--blue);
}
.lead {
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.42;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: -.01em;
}
.kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.blue-line { color: var(--blue); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-text);
  font-size: 17px; font-weight: 400; letter-spacing: -.01em;
  border-radius: 980px;
  padding: 11px 22px;
  position: relative; overflow: hidden;
  transition: background .25s var(--ease), color .25s var(--ease),
              transform .25s var(--ease), border-color .25s var(--ease),
              box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.22), transparent 60%);
  opacity: 0;
  transition: opacity .25s;
}
.btn:hover::after { opacity: 1; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-2); transform: translateY(-1px); box-shadow: 0 8px 24px -8px rgba(0,113,227,.52); }
.btn-primary:active { transform: translateY(0); }
.btn-soft { background: rgba(0,0,0,.05); color: var(--ink); }
.btn-soft:hover { background: rgba(0,0,0,.09); transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-light:hover { background: var(--gray); border-color: var(--muted-2); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-ghost:hover { background: var(--blue-soft); transform: translateY(-1px); }
.btn-lg { font-size: 19px; padding: 15px 30px; }
.btn-sm { font-size: 15px; padding: 9px 18px; }
.btn-block { width: 100%; }

/* chevron text link */
.tlink {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--blue-link);
  font-size: clamp(17px, 1.8vw, 21px);
  letter-spacing: -.01em;
}
.tlink svg { width: 1em; height: 1em; transition: transform .25s var(--ease); }
.tlink:hover { text-decoration: underline; }
.tlink:hover svg { transform: translateX(3px); }
.tlink.sm { font-size: 17px; }
.tlink.onblue { color: #fff; }
.tlink.onblue:hover { text-decoration: underline; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 200;
  height: 52px;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled {
  border-bottom-color: rgba(0,0,0,.08);
  background: rgba(255,255,255,.88);
}
.nav-inner {
  max-width: var(--wide); margin: 0 auto; height: 100%;
  display: flex; align-items: center; gap: 24px;
  padding: 0 24px;
}
.brand { display: flex; align-items: center; gap: 8px; font-family: var(--font); flex: none; }
.brand-logo { height: 22px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 24px; margin: 0 auto; }
.nav-links a {
  font-size: 13px; color: var(--ink); opacity: .8;
  letter-spacing: -.01em; transition: opacity .2s; white-space: nowrap;
}
.nav-links a:hover { opacity: 1; }
.nav-cta { display: flex; align-items: center; gap: 10px; flex: none; }
.nav-cta .btn { font-size: 13px; padding: 6px 15px; }
.burger {
  display: none; width: 26px; height: 26px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.burger span { display: block; height: 1.5px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* full-screen mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 190;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 80px 32px 40px;
  display: flex; flex-direction: column; gap: 0;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: none; }
.mobile-menu a {
  font-size: clamp(28px, 7vw, 40px);
  font-family: var(--font);
  font-weight: 600; letter-spacing: -.02em;
  padding: 14px 0; border-bottom: 1px solid var(--line-2);
  color: var(--ink); opacity: .84;
  transition: opacity .2s, padding-left .25s var(--ease);
}
.mobile-menu a:hover { opacity: 1; padding-left: 8px; }
.mobile-menu .btn { margin-top: 30px; width: 100%; font-size: 19px; padding: 16px; }
.mobile-menu .btn + .btn { margin-top: 10px; }

/* ============================================================
   HERO
   ============================================================ */
.hero, .topbanner {
  padding: 0;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}

/* original hero (below the top banner) */
.hero-banner {
  position: relative; z-index: 1;
  max-width: 960px; margin: 0 auto;
  text-align: center;
  padding: clamp(56px, 8vw, 104px) 22px clamp(24px, 4vw, 48px);
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
}
.hero .display .grad { color: var(--blue); }
@media (prefers-reduced-motion: no-preference) {
  .hero .display .grad {
    background: linear-gradient(100deg, #0071e3 0%, #2997ff 22%, #7c5cff 48%, #2997ff 72%, #0071e3 100%);
    background-size: 280% 100%;
    -webkit-background-clip: text; background-clip: text; color: transparent;
    animation: gradShift 8s linear infinite;
  }
}
@keyframes gradShift { to { background-position: -280% 0; } }
.hero-lead {
  max-width: 680px; margin: 26px auto 0;
  display: flex; flex-direction: column; gap: 16px;
}
.hero-lead p {
  font-size: clamp(17.5px, 1.65vw, 21px);
  line-height: 1.56; color: #35353c;
  letter-spacing: -.013em; text-wrap: pretty;
}
.hero-lead b { color: var(--ink); font-weight: 600; }
.hero-banner .hero-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  justify-content: center; margin-top: clamp(38px, 5vw, 58px);
}

/* aurora background */
.hero-aurora { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-aurora span {
  position: absolute; border-radius: 50%;
  filter: blur(72px); opacity: .6;
}
.blob1 { width: 660px; height: 660px; top: -220px; left: -160px; background: radial-gradient(circle, rgba(0,113,227,.28), transparent 65%); animation: drift1 22s ease-in-out infinite; }
.blob2 { width: 560px; height: 560px; top: -180px; right: -140px; background: radial-gradient(circle, rgba(124,92,255,.22), transparent 65%); animation: drift2 27s ease-in-out infinite; }
.blob3 { width: 500px; height: 500px; top: 60px; left: 44%; background: radial-gradient(circle, rgba(56,189,248,.20), transparent 68%); animation: drift3 24s ease-in-out infinite; }
.blob4 { width: 380px; height: 380px; bottom: -100px; right: 20%; background: radial-gradient(circle, rgba(0,113,227,.15), transparent 65%); animation: drift1 18s ease-in-out infinite reverse; }

@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(80px,52px) scale(1.06); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-64px,44px) scale(1.04); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-44px,-32px) scale(1.10); } }

/* dot grid overlay */
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(0,0,0,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 20%, transparent 100%);
}

/* banner: baked composed image on desktop, live stacked cards on mobile */
.topbanner {
  position: relative; overflow: hidden;
  aspect-ratio: 2688 / 1152;
  background: linear-gradient(120deg, #e9f0fb 0%, #eef4fc 55%, #e4ecf8 100%);
}
.tb-baked { display: block; width: 100%; height: 100%; }
.tb-baked img { display: block; width: 100%; height: 100%; object-fit: cover; }
.tb-live { display: none; }

/* live (mobile) pieces */
.tb-bg { display: block; width: 100%; height: auto; }
.hero-copy { padding: clamp(28px,6vw,40px) clamp(20px,5vw,32px) 2px; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
.topbanner .display { font-size: clamp(32px, 8.5vw, 46px); line-height: 1.05; color: var(--ink); }
.grad-dot { color: var(--blue); }
.hero-sub { font-size: clamp(15px, 4vw, 18px); line-height: 1.45; color: var(--ink); letter-spacing: -.011em; margin-top: 12px; text-wrap: pretty; }
.hero-sub b { color: var(--ink); font-weight: 600; }
.hero-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; margin-top: 18px; }
.hf { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--ink); letter-spacing: -.01em; }
.hf-ic { width: 32px; height: 32px; border-radius: 9px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; flex: none; }
.hf-ic svg { width: 18px; height: 18px; }

.hero-cards { display: flex; flex-direction: column; gap: 14px; padding: clamp(18px,4vw,26px) clamp(20px,5vw,32px) 4px; }
.hc { background: #fff; border: 1px solid var(--line-2); border-radius: 16px; padding: 16px 18px; box-shadow: var(--shadow-card); }
.hc.active { border-color: rgba(0,113,227,.4); }
.hc-ey { font-size: 12px; font-weight: 700; letter-spacing: .01em; color: var(--blue); }
.hc-name { font-family: var(--font); font-size: 19px; font-weight: 600; letter-spacing: -.02em; color: var(--ink); margin-top: 4px; display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.hc-badge { font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 980px; letter-spacing: -.005em; white-space: nowrap; }
.hc-badge.live { background: #e6f6ec; color: var(--green); }
.hc-badge.soon { background: var(--gray); color: var(--muted-2); }
.hc-role { font-size: 13px; color: var(--muted); margin-top: 2px; letter-spacing: -.01em; }
.hc-caps { list-style: none; margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.hc-caps li { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--ink); font-weight: 500; letter-spacing: -.01em; }
.hc-ck { width: 18px; height: 18px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; flex: none; }
.hc-ck svg { width: 11px; height: 11px; }
.hc.active .hc-ck { background: #e6f6ec; color: var(--green); }
.hc-note { margin-top: 12px; border-radius: 10px; padding: 11px 13px; font-size: 12.5px; line-height: 1.42; color: var(--ink-soft); letter-spacing: -.005em; }
.hc-note b { display: block; font-weight: 600; margin-bottom: 1px; }
.hc-note.green { background: rgba(29,155,86,.1); }
.hc-note.green b { color: var(--green); }
.hc-note.blue { background: var(--blue-soft); }
.hc-note.blue b { color: var(--blue); }

/* the composed banner is used at all widths (incl. mobile); live stacked version retired */
.tb-baked { display: block; }
.tb-live { display: none; }

/* hero entrance animations */
@media (prefers-reduced-motion: no-preference) {
  .hr-rise {
    opacity: 0; transform: translateY(28px);
    animation: hrRise .9s var(--ease) forwards;
  }
  .hr-rise.fs { opacity: 1 !important; transform: none !important; animation: none !important; }
}
@keyframes hrRise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

/* ============================================================
   FILM ROLL (DINA Console)
   ============================================================ */
.reel-section {
  padding: clamp(52px, 7vw, 96px) 0 clamp(80px, 10vw, 128px);
  overflow: hidden;
  background: var(--white);
}
.reel-head {
  text-align: center; margin-bottom: clamp(32px, 4.5vw, 52px);
  padding: 0 22px;
}
.reel-head .eyebrow { display: block; }
.reel-head .h2 { margin-top: 8px; }

.reel {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reel-track { display: flex; gap: 20px; width: max-content; padding: 8px 0 16px; }
@media (prefers-reduced-motion: no-preference) {
  .reel-track { animation: reelRoll 60s linear infinite; }
  .reel:hover .reel-track { animation-play-state: paused; }
}
@keyframes reelRoll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.reel-card {
  flex: none; width: 320px; height: 320px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.reel-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: var(--shadow-float);
  border-color: rgba(0,113,227,.2);
}
.rc-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line-2);
  background: #fbfbfd; flex: none;
}
.rc-d { width: 10px; height: 10px; border-radius: 50%; background: #e0e0e6; flex: none; }
.rc-name { font-family: var(--mono); font-size: 12px; color: var(--muted-2); letter-spacing: .02em; }
.rc-d + .rc-name { margin-left: 6px; }
.rc-live {
  margin-left: auto; font-size: 11.5px; color: var(--green);
  font-weight: 500; display: inline-flex; align-items: center; gap: 5px;
}
.rc-live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: livepulse 2.2s infinite; }
.rc-in { padding: 20px; flex: 1; display: flex; flex-direction: column; min-height: 0; }
.rc-eye { font-family: var(--mono); font-size: 10px; letter-spacing: .08em; color: var(--muted-2); }
.rc-h { font-family: var(--font); font-size: 21px; font-weight: 600; letter-spacing: -.015em; margin-top: 8px; }
.rc-p { font-size: 13.5px; color: var(--muted); line-height: 1.45; margin-top: 7px; }
.rc-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.dp { font-size: 10px; font-weight: 500; padding: 3px 9px; border-radius: 980px; background: var(--gray); color: var(--muted); }
.dp.amber { background: #fdf1dd; color: #9a6207; }
.dp.violet { background: #efe9fd; color: #6d4bd0; }
.rc-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 14px; align-content: center; }
.rc-kpi { display: flex; flex-direction: column; gap: 3px; }
.rc-kpi .k-l { font-size: 10px; color: var(--muted-2); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.rc-kpi .k-n { font-family: var(--font); font-size: 34px; font-weight: 600; letter-spacing: -.02em; color: var(--blue); line-height: 1.1; }
.rc-kpi .k-n .pct { font-size: 14px; }
.rc-list { gap: 9px; }
.rc-case { border: 1px solid var(--line-2); border-radius: 11px; padding: 10px 12px; border-left: 2.5px solid var(--blue); }
.rc-case.gated { border-left-color: #e0961a; }
.rc-ct { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 10px; color: var(--muted-2); }
.rc-ct .bl { color: var(--blue); }
.rc-case p { font-size: 13px; color: var(--ink); line-height: 1.35; margin-top: 6px; letter-spacing: -.01em; }
.rc-hd2 { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--muted); letter-spacing: .02em; }
.rc-n2 { margin-left: auto; font-family: var(--mono); font-size: 12px; color: var(--muted-2); }
.rc-trace { gap: 13px; justify-content: center; }
.rc-trace .tr { display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: var(--ink); font-weight: 500; letter-spacing: -.01em; }
.rc-trace .tk { width: 22px; height: 22px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; flex: none; }
.rc-trace .tk svg { width: 12px; height: 12px; }
.rc-chan { gap: 9px; justify-content: center; }
.rc-chan span { font-size: 14px; color: var(--ink); padding: 9px 14px; background: var(--gray); border-radius: 10px; font-weight: 500; letter-spacing: -.01em; }

/* ============================================================
   SECTION SHELLS
   ============================================================ */
.section { padding: clamp(80px, 11vw, 144px) 0; scroll-margin-top: 64px; }
.section.sec-pb-tight { padding-bottom: clamp(28px, 4vw, 52px); }
.subpage-back { display: inline-flex; align-items: center; gap: 5px; font-size: 14px; font-weight: 600; color: var(--blue); margin-bottom: 22px; letter-spacing: -.01em; }
.subpage-back svg { width: 16px; height: 16px; }
.subpage-back:hover { text-decoration: underline; }
[id] { scroll-margin-top: 64px; }
.section.gray { background: var(--gray); }
.section.white { background: var(--white); }
.section-head { max-width: 760px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head .eyebrow { display: block; }
.section-head .h2 { margin-top: 8px; }
.section-head .lead { margin-top: 18px; }

/* ============================================================
   THE GAP — editorial
   ============================================================ */
.gap-section {
  background: var(--gray);
  padding: clamp(80px, 10vw, 140px) 0;
}
.gap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5.5vw, 80px);
  align-items: center;
}
.gap-block { text-align: left; }
.gap-section .eyebrow { display: block; margin-bottom: 20px; }
.gap-statement {
  font-family: var(--font); font-weight: 600;
  letter-spacing: -.022em; line-height: 1.28;
  font-size: clamp(24px, 2.6vw, 38px);
  text-wrap: pretty;
}
.gap-statement .gap-lead { color: var(--ink); }
.gap-statement .gap-mut { color: var(--muted-2); }
.gap-statement .gap-accent { color: var(--blue); white-space: nowrap; }
.gap-body { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; max-width: 48ch; }
.gap-body p { font-size: clamp(16px, 1.55vw, 19px); line-height: 1.55; color: var(--muted); letter-spacing: -.01em; text-wrap: pretty; }

.gap-viz {
  background: #fff; border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  padding: clamp(26px, 3vw, 38px);
}
.gv-label { font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: -.01em; margin-bottom: 12px; }
.gv-bar { display: flex; height: 58px; border-radius: 14px; overflow: hidden; background: var(--gray); }
.gv-seg {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 0 15px;
  height: 100%; width: var(--w);
  transition: width 1.25s var(--ease);
  position: relative; overflow: hidden;
}
.gv-seg > * { position: relative; z-index: 1; }
.gv-seg.ops { background: #e4e4ec; }
.gv-seg.ops.auto { background: #edeff4; }
.gv-seg.strat { background: linear-gradient(135deg, #0a84ff, #0040c1); }
.gv-t { font-size: 12.5px; font-weight: 600; white-space: nowrap; letter-spacing: -.01em; }
.gv-seg.ops .gv-t { color: var(--muted); }
.gv-seg.strat .gv-t { color: #fff; }
.gv-num {
  font-family: var(--font); font-weight: 600; font-size: 13.5px;
  letter-spacing: -.01em; margin-left: auto; flex: none;
  font-variant-numeric: tabular-nums;
}
.gv-seg.ops .gv-num { color: var(--muted-2); }
.gv-seg.strat .gv-num { color: #fff; }
.gap-viz.pre .gv-seg { width: 0; }
.gap-viz .gv-row.r2 .gv-seg { transition-delay: .18s; }

/* shimmer sweep on the strategic (blue) segments */
@media (prefers-reduced-motion: no-preference) {
  .gv-seg.strat::after {
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background: linear-gradient(100deg, transparent 35%, rgba(255,255,255,.32) 50%, transparent 65%);
    transform: translateX(-130%);
    animation: gvShine 3.4s ease-in-out 1.3s infinite;
  }
}
@keyframes gvShine { 0% { transform: translateX(-130%); } 55%, 100% { transform: translateX(240%); } }

.gv-mid {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 16px 0; font-size: 13.5px; font-weight: 600; color: var(--blue); letter-spacing: -.01em;
}
.gv-mic {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center; flex: none;
}
@media (prefers-reduced-motion: no-preference) {
  .gv-mic { animation: gvBob 2.4s ease-in-out infinite; }
}
@keyframes gvBob { 0%, 100% { transform: translateY(-2px); } 50% { transform: translateY(3px); } }
.gv-mic svg { width: 16px; height: 16px; }
.gv-legend {
  display: flex; gap: 22px; margin-top: 20px;
  padding-top: 18px; border-top: 1px solid var(--line-2);
}
.gv-legend .lg {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--muted); font-weight: 500;
}
.gv-legend .lg::before { content: ""; width: 11px; height: 11px; border-radius: 4px; }
.gv-legend .lg.ops::before { background: #e4e4ec; }
.gv-legend .lg.strat::before { background: linear-gradient(135deg, #0a84ff, #0040c1); }

/* ============================================================
   BUILT TO BE TRUSTED
   ============================================================ */
.trust-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px; margin-top: clamp(40px, 5vw, 64px);
}
.trust-card {
  background: #fff; border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.trust-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0; transition: opacity .4s;
}
.trust-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: rgba(0,113,227,.2); }
.trust-card:hover::before { opacity: 1; }
.trust-card h3 {
  font-family: var(--font); font-size: 22px; font-weight: 600;
  letter-spacing: -.015em; line-height: 1.15; color: var(--ink);
}
.trust-card p { font-size: 16px; color: var(--muted); line-height: 1.5; margin-top: 12px; letter-spacing: -.005em; }
.trust-cta { text-align: center; margin-top: clamp(40px, 5vw, 56px); }

/* ============================================================
   STATS
   ============================================================ */
.stats { padding: clamp(8px, 1.5vw, 28px) 0 clamp(20px,4vw,40px); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; text-align: center;
  border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  overflow: hidden; background: #fff; box-shadow: var(--shadow-card);
}
.stat {
  padding: clamp(28px,4vw,48px) 20px;
  border-right: 1px solid var(--line-2);
  transition: background .25s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--gray); }
.stat .n {
  font-family: var(--font); font-weight: 600;
  letter-spacing: -.03em; font-size: clamp(44px, 6vw, 80px); line-height: 1;
  background: linear-gradient(180deg, #1d1d1f 0%, #3a3a42 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .l { margin-top: 12px; font-size: 16px; color: var(--muted); letter-spacing: -.01em; }

/* ============================================================
   PLATFORM / BENTO
   ============================================================ */
.bento {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 18px; margin-top: clamp(44px, 5.5vw, 68px);
}
.tile {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  padding: clamp(24px, 3vw, 36px);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.tile::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none; opacity: 0; transition: opacity .35s;
  background: radial-gradient(360px circle at var(--mx,50%) var(--my,50%), rgba(0,113,227,.11), transparent 60%);
  z-index: 0;
}
.tile:hover::after { opacity: 1; }
.tile.dark::after { background: radial-gradient(400px circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.16), transparent 58%); }
.tile > * { position: relative; z-index: 1; }
.tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: rgba(0,113,227,.24); }
.tile.dark:hover { box-shadow: 0 36px 70px -35px rgba(27,70,200,.70); border-color: transparent; }
.gray .tile:not(.dark), .section.gray .tile:not(.dark) { background: #fff; }

.tile .tic {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center; margin-bottom: 20px;
  transition: transform .4s var(--ease-spring), background .3s;
}
.tile:hover .tic { transform: scale(1.1) rotate(-4deg); background: var(--blue); color: #fff; }
.tile .tic svg { width: 24px; height: 24px; }
.tile h3 { font-family: var(--font); font-weight: 600; font-size: 23px; letter-spacing: -.015em; line-height: 1.12; }
.tile p { margin-top: 10px; font-size: 16px; color: var(--muted); line-height: 1.46; letter-spacing: -.005em; }
.tile .big {
  font-family: var(--font); font-weight: 600;
  letter-spacing: -.03em; font-size: clamp(42px, 4.6vw, 64px);
  line-height: 1; margin-bottom: 4px; color: var(--ink);
}

.tile.c2 { grid-column: span 2; }
.tile.c3 { grid-column: span 3; }
.tile.c4 { grid-column: span 4; }
.tile.c6 { grid-column: span 6; }

/* dark hero tile */
.tile.dark {
  background: linear-gradient(150deg, #2f6cf0 0%, #1b46c8 100%);
  color: #fff; border-color: transparent;
}
.tile.dark p { color: rgba(255,255,255,.8); }
.tile.dark .tic { background: rgba(255,255,255,.16); color: #fff; }
.tile.dark h3 { color: #fff; }
.tile.feature { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; padding: 40px; }
.tile.feature .ftxt { min-width: 0; }

/* gate visual */
.gate-viz { display: flex; flex-direction: column; gap: 10px; }
.gv-step {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px; padding: 13px 16px;
  font-size: 14.5px; letter-spacing: -.01em;
  transition: background .5s var(--ease), border-color .5s, transform .5s var(--ease), box-shadow .5s;
}
.gv-step.on { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.34); transform: translateX(7px); box-shadow: 0 12px 28px -16px rgba(0,0,0,.6); }
.gv-step.on.gate { background: rgba(255,176,52,.22); border-color: rgba(255,176,52,.65); }
.gv-step.on.ship { background: rgba(48,209,128,.20); border-color: rgba(48,209,128,.58); }
.gv-step .gvi { width: 27px; height: 27px; border-radius: 8px; display: grid; place-items: center; flex: none; transition: transform .5s var(--ease-spring); }
.gv-step.on .gvi { transform: scale(1.14); }
.gv-step.draft .gvi { background: rgba(255,255,255,.13); color: #fff; }
.gv-step.gate { border-color: rgba(255,176,52,.4); background: rgba(255,176,52,.12); }
.gv-step.gate .gvi { background: rgba(255,176,52,.22); color: #ffc16b; }
.gv-step.ship .gvi { background: rgba(48,209,128,.22); color: #41d67e; }
.gv-step .gvi svg { width: 15px; height: 15px; }
.gv-step b { font-weight: 600; }
.gv-step span.sub { color: rgba(255,255,255,.58); font-size: 12.5px; display: block; }

/* integration pills */
.intg-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.intg-pills span {
  font-size: 13px; font-weight: 500; color: var(--muted);
  background: var(--gray); border: 1px solid var(--line-2);
  border-radius: 980px; padding: 6px 14px; letter-spacing: -.01em;
  transition: background .2s, color .2s, border-color .2s;
}
.intg-pills span:hover { background: var(--blue-soft); color: var(--blue); border-color: rgba(0,113,227,.3); }

/* ============================================================
   HOW IT WORKS — animated workflow strip
   ============================================================ */
.wf {
  margin-top: clamp(36px, 4vw, 54px);
  display: flex; align-items: stretch;
}
.wf-step { flex: 1 1 0; min-width: 0; display: flex; }
.wf-card {
  width: 100%; background: #fff;
  border: 1.5px solid var(--line-2); border-radius: 20px;
  padding: 22px 20px; display: flex; flex-direction: column;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
  position: relative;
}
.wf-ic {
  width: 44px; height: 44px; border-radius: 13px;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center; margin-bottom: 16px;
  transition: background .4s, color .4s, transform .4s var(--ease-spring);
}
.wf-ic svg { width: 22px; height: 22px; }
.wf-card h4 { font-family: var(--font); font-size: 17px; font-weight: 600; letter-spacing: -.015em; }
.wf-card p { font-size: 13px; color: var(--muted); line-height: 1.42; margin-top: 7px; letter-spacing: -.005em; }
.wf-badge {
  margin-top: auto; align-self: flex-start;
  font-size: 11.5px; font-weight: 600; letter-spacing: -.005em;
  padding: 4px 11px; border-radius: 980px;
}
.wf-badge.prog { background: var(--blue-soft); color: var(--blue); }
.wf-badge.sub  { background: var(--gray); color: var(--muted); }
.wf-badge.pend { background: #fdf1dd; color: #9a6207; }
.wf-badge.rev  { background: var(--blue-soft); color: var(--blue); }
.wf-badge.done { background: #e6f6ec; color: var(--green); }

/* sweeping active / done states */
.wf-step.active .wf-card { border-color: var(--blue); box-shadow: 0 22px 50px -26px rgba(0,113,227,.5); transform: translateY(-8px); }
.wf-step.active .wf-ic { background: var(--blue); color: #fff; transform: scale(1.08) rotate(-3deg); }
.wf-step.gate.active .wf-card { border-color: var(--amber); box-shadow: 0 22px 50px -26px rgba(178,94,9,.5); }
.wf-step.gate.active .wf-ic { background: var(--amber); color: #fff; }
.wf-step.done .wf-card { border-color: rgba(29,155,86,.32); }
.wf-step.done .wf-ic { background: #e6f6ec; color: var(--green); }

/* animated connecting arrows */
.wf-arrow {
  flex: 0 0 auto; width: clamp(20px, 2.6vw, 46px);
  align-self: center; position: relative; color: #c2c8d2;
  display: flex; align-items: center; justify-content: flex-end;
}
.wf-line {
  position: absolute; left: 2px; right: 7px; top: 50%; height: 2px; transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, currentColor 0 5px, transparent 5px 10px);
  background-size: 10px 2px;
}
@media (prefers-reduced-motion: no-preference) { .wf-line { animation: wfFlow .7s linear infinite; } }
@keyframes wfFlow { to { background-position: 10px 0; } }
.wf-head { position: relative; z-index: 1; display: grid; place-items: center; }
.wf-head svg { width: clamp(12px, 1.4vw, 16px); height: auto; }
.wf-arrow.on { color: var(--blue); }
.wf-arrow.cur { color: var(--blue); }
.wf-arrow.cur .wf-head { animation: wfNudge 1s ease-in-out infinite; }
@keyframes wfNudge { 0%,100% { transform: translateX(0); } 50% { transform: translateX(3px); } }
@keyframes wfNudgeV { 0%,100% { transform: rotate(90deg) translateX(0); } 50% { transform: rotate(90deg) translateX(3px); } }
@keyframes wfFlowV { to { background-position: 0 10px; } }

/* ============================================================
   HOW IT WORKS — banner composite
   ============================================================ */
.sc {
  position: relative; margin-top: clamp(36px, 4vw, 54px);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #eef3fb 0%, #f7f9fd 55%, #e9eff9 100%);
  border: 1px solid var(--line-2); box-shadow: var(--shadow-float);
  overflow: hidden; aspect-ratio: 1.6; min-height: 540px;
}
.sc-portrait {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 16%; z-index: 0;
}
.sc::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.10) 0%, transparent 22%, transparent 55%, rgba(236,242,250,.55) 100%);
}
.sc > * { position: relative; }
.sc-dina {
  position: absolute; left: 3%; top: 6%; z-index: 3;
  display: flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,.92); border: 1px solid var(--line-2);
  border-radius: 16px; padding: 13px 18px; box-shadow: var(--shadow-card);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.sc-dina-ic { width: 30px; height: 30px; border-radius: 9px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; flex: none; }
.sc-dina-ic svg { width: 17px; height: 17px; }
.sc-dina b { display: block; font-family: var(--font); font-size: 16px; font-weight: 600; color: var(--blue); letter-spacing: -.01em; }
.sc-dina span { display: block; font-size: 11.5px; color: var(--muted); }

/* bottom-center: animated workflow cards (square, compact) */
.sc-stack { position: absolute; left: 50%; transform: translateX(-50%); bottom: 6%; width: 72%; z-index: 2; }
.sc-stack .sc-flow { position: static; left: auto; right: auto; bottom: auto; width: 100%; }
.sc-flow .wf { margin-top: 0; align-items: stretch; }
.sc .wf-card { aspect-ratio: 1 / 1; padding: 13px 12px; border-radius: 16px; box-shadow: 0 8px 22px -12px rgba(20,40,90,.28); }
.sc .wf-ic { width: 32px; height: 32px; border-radius: 10px; margin-bottom: 9px; }
.sc .wf-ic svg { width: 17px; height: 17px; }
.sc .wf-card h4 { font-size: 13px; line-height: 1.16; }
.sc .wf-card p { font-size: 10.5px; margin-top: 4px; line-height: 1.32; }
.sc .wf-badge { font-size: 9.5px; padding: 3px 8px; margin-top: 9px; }
.sc .wf-arrow { width: clamp(12px, 1.4vw, 24px); }

/* right rail of dashboard panels */
.sc-rail { position: absolute; top: 5%; right: 2.5%; width: 25%; z-index: 2; display: flex; flex-direction: column; gap: 11px; }
.sc-panel { background: #fff; border: 1px solid var(--line-2); border-radius: 16px; padding: 13px 15px; box-shadow: var(--shadow-card); }
.sc-ph { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.sc-ph span { font-family: var(--font); font-size: 14px; font-weight: 600; letter-spacing: -.01em; color: var(--ink); }
.sc-ph a { font-size: 11.5px; color: var(--blue); }
.sc-trace { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.sc-trace li { display: flex; gap: 11px; position: relative; }
.sc-td { width: 11px; height: 11px; border-radius: 50%; background: #fff; border: 2.5px solid var(--blue); flex: none; margin-top: 2px; position: relative; z-index: 1; }
.sc-trace li:not(:last-child) .sc-td::after { content: ""; position: absolute; left: 50%; top: 100%; transform: translateX(-50%); width: 2px; height: 11px; background: var(--line-2); }
.sc-trace b { display: block; font-size: 12.5px; font-weight: 600; color: var(--ink); letter-spacing: -.01em; }
.sc-trace span { font-size: 11px; color: var(--muted-2); }
/* back-office strip — separate card below the banner */
.sc-tabsbar {
  margin-top: 16px;
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 8px;
  background: #fff; border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 16px clamp(16px, 3vw, 36px);
  box-shadow: var(--shadow-card);
}
.sc-tab { display: flex; flex-direction: column; align-items: center; gap: 7px; padding: 8px 14px; border-radius: 12px; font-size: 12.5px; font-weight: 500; color: var(--muted); white-space: nowrap; transition: background .2s, color .2s; flex: 1 1 auto; min-width: 104px; }
.sc-tab svg { width: 21px; height: 21px; }
.sc-tab.active { background: var(--blue-soft); color: var(--blue); }
.sc-tab:hover { color: var(--blue); }

/* below desktop: collapse to just the animated workflow strip */
@media (max-width: 1000px) {
  .sc { aspect-ratio: auto; min-height: 0; background: transparent; border: none; box-shadow: none; overflow: visible; }
  .sc::after { display: none; }
  .sc-portrait, .sc-dina, .sc-rail { display: none; }
  .sc-stack { position: static; transform: none; width: 100%; }
  .sc .wf-card { aspect-ratio: auto; }
  .sc-flow { position: static; left: auto; right: auto; bottom: auto; width: 100%; }
}

/* ============================================================
   ROSTER
   ============================================================ */
.col-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; margin-top: clamp(40px, 5vw, 64px);
}
.ccard {
  position: relative; background: #fff;
  border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 24px; box-shadow: 0 1px 3px rgba(0,0,0,.04);
  transition: .35s var(--ease);
  display: flex; flex-direction: column;
}
.ccard:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: rgba(0,113,227,.2); }
.cav {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  font-family: var(--font); font-weight: 600; font-size: 20px;
  margin-bottom: 16px; flex: none;
  transition: transform .35s var(--ease-spring);
}
.ccard:hover .cav { transform: scale(1.1); }
.cav.dina   { background: linear-gradient(135deg,#0a84ff,#0040c1); }
.cav.lina   { background: linear-gradient(135deg,#19c37d,#0f9b6c); }
.cav.yara   { background: linear-gradient(135deg,#a855f7,#7c3aed); }
.cav.reem   { background: linear-gradient(135deg,#38bdf8,#0ea5e9); }
.cav.faisal { background: linear-gradient(135deg,#fb923c,#f97316); }
.cav.hana   { background: linear-gradient(135deg,#f472b6,#db2777); }
.cav.kairo  { background: linear-gradient(135deg,#3b82f6,#2563eb); }
.cav.tariq  { background: linear-gradient(135deg,#1d4ed8,#1e3a8a); }
.cname { font-family: var(--font); font-weight: 600; font-size: 19px; letter-spacing: -.01em; }
.crole { font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted-2); margin-top: 4px; }
.cdesc { font-size: 14px; color: var(--muted); line-height: 1.46; margin-top: 12px; letter-spacing: -.005em; }
.cmeta { margin-top: auto; padding-top: 16px; font-size: 12.5px; color: var(--muted-2); }
.cbadge {
  position: absolute; top: 22px; right: 22px;
  font-size: 11px; font-weight: 600; letter-spacing: .02em;
  padding: 4px 10px; border-radius: 980px;
}
.cbadge.live  { background: #e6f6ec; color: var(--green); }
.cbadge.next  { background: #e8f1fe; color: var(--blue); }
.cbadge.soon  { background: var(--gray); color: var(--muted-2); }
.roster-cta   { text-align: center; margin-top: clamp(44px, 5vw, 60px); }

/* ============================================================
   GET TO KNOW DINA — horizontal card carousel
   ============================================================ */
.dina-know { padding-bottom: clamp(64px, 8vw, 110px); overflow: hidden; }
.dk-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.dk-head .h2 { margin: 0; }
.dk-nav { display: flex; gap: 10px; flex: none; }
.dk-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gray); color: var(--ink);
  display: grid; place-items: center;
  transition: background .2s, transform .2s, opacity .2s;
}
.dk-arrow svg { width: 20px; height: 20px; }
.dk-arrow:hover:not(:disabled) { background: var(--line-2); transform: scale(1.06); }
.dk-arrow:disabled { opacity: .32; cursor: default; }

.dk-rail {
  margin-top: clamp(28px, 4vw, 44px);
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  outline: none;
}
.dk-rail::-webkit-scrollbar { display: none; }
.dk-track {
  display: flex; gap: 20px; width: max-content;
  padding: 6px clamp(22px, calc((100vw - var(--wide)) / 2 + 24px), 50vw) 24px;
}

.dk-card {
  scroll-snap-align: start; flex: none;
  width: clamp(258px, 78vw, 340px);
  height: clamp(384px, 62vw, 476px);
  border-radius: 26px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  padding: 30px 28px;
  background: var(--gray);
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.dk-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-float); }
.dk-cap { position: relative; z-index: 2; }
.dk-eye { font-family: var(--font); font-size: 13.5px; font-weight: 600; letter-spacing: -.01em; color: var(--muted); display: block; margin-bottom: 9px; }
.dk-title { font-family: var(--font); font-weight: 600; letter-spacing: -.02em; line-height: 1.08; font-size: clamp(23px, 2.3vw, 29px); color: var(--ink); }
.dk-visual { margin-top: auto; position: relative; z-index: 2; padding-top: 24px; }

/* card variants */
.dk-card.blue { background: linear-gradient(160deg, #eaf2ff 0%, #d9e7ff 100%); }
.dk-card.blue .dk-eye { color: var(--blue); }
.dk-card.dark { background: linear-gradient(155deg, #122a55 0%, #0a1838 100%); }
.dk-card.dark .dk-eye { color: rgba(255,255,255,.6); }
.dk-card.dark .dk-title { color: #fff; }

/* intro card — DINA photo background */
.dk-card.intro { background: linear-gradient(155deg, #0a84ff 0%, #0040c1 100%); }
.dk-photo { position: absolute; inset: 0; z-index: 0; }
.dk-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 14%; }
.dk-card.intro::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(6,20,58,.72) 0%, rgba(6,20,58,.30) 26%,
    rgba(6,20,58,.06) 46%, rgba(6,18,52,.52) 78%, rgba(5,16,46,.90) 100%);
}
.dk-card.intro .dk-eye { color: rgba(255,255,255,.86); }
.dk-card.intro .dk-title { color: #fff; text-shadow: 0 1px 12px rgba(2,12,40,.45); }
.dk-mark { width: 46px; height: 46px; border-radius: 13px; background: rgba(255,255,255,.16); color: #fff; display: grid; place-items: center; margin-bottom: 16px; }
.dk-mark svg { width: 25px; height: 25px; }
.dk-introtxt { font-size: 14.5px; line-height: 1.5; color: rgba(255,255,255,.86); letter-spacing: -.01em; }
/* "always on" visual */
.dk-status { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.82); margin-bottom: 14px; }
.dk-live { width: 9px; height: 9px; border-radius: 50%; background: #41d67e; flex: none; animation: livepulse 2.2s infinite; }
.dk-metric { display: flex; flex-direction: column; }
.dk-big { font-family: var(--font); font-weight: 600; font-size: clamp(46px, 6vw, 64px); letter-spacing: -.03em; line-height: 1; color: #fff; }
.dk-ml { font-size: 13.5px; color: rgba(255,255,255,.62); margin-top: 7px; }

/* journey path */
.dk-path { list-style: none; }
.dk-path li { display: flex; align-items: center; gap: 13px; font-family: var(--font); font-size: 17px; font-weight: 600; color: var(--ink); letter-spacing: -.01em; padding: 10px 0; position: relative; }
.dk-pdot { width: 13px; height: 13px; border-radius: 50%; background: #fff; border: 2.5px solid var(--blue); flex: none; position: relative; z-index: 1; }
.dk-path li:not(:last-child)::before { content: ""; position: absolute; left: 5.5px; top: 50%; width: 2px; height: 100%; background: var(--line); z-index: 0; }

/* citation chip */
.dk-cite { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.72); border: 1px solid rgba(0,113,227,.2); border-radius: 16px; padding: 13px 15px; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.dk-cic { width: 38px; height: 38px; border-radius: 11px; background: var(--blue); color: #fff; display: grid; place-items: center; flex: none; }
.dk-cic svg { width: 19px; height: 19px; }
.dk-cite b { font-family: var(--font); font-size: 15px; font-weight: 600; color: var(--ink); display: block; letter-spacing: -.01em; }
.dk-csub { font-size: 12.5px; color: var(--blue-link); }

/* governance pills */
.dk-gate { display: flex; gap: 10px; }
.dk-pill { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; padding: 11px 19px; border-radius: 980px; letter-spacing: -.01em; }
.dk-pill svg { width: 14px; height: 14px; }
.dk-pill.hold { background: rgba(255,255,255,.1); color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.2); }
.dk-pill.go { background: #fff; color: #0a1838; }

.dk-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: clamp(36px, 4vw, 52px); }

/* ============================================================
   VALUE WITH DINA
   ============================================================ */
.va-scroll { overflow-x: auto; padding: 24px 4px 10px; margin: 0 -4px; margin-top: clamp(18px,3vw,40px); }
.value-apple { position: relative; }
.va-lane {
  position: absolute; left: 33.333%; width: 33.334%; top: 0; bottom: 0; z-index: 0;
  background: linear-gradient(180deg, #f4f9ff, #ffffff 42%);
  border: 1.5px solid rgba(0,113,227,.3); border-radius: 28px;
  box-shadow: 0 44px 88px -46px rgba(0,113,227,.44), 0 12px 32px -22px rgba(0,113,227,.22);
}
.va-row { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: stretch; }
.va-cell { padding: 22px 30px; font-size: 16px; line-height: 1.5; letter-spacing: -.01em; color: var(--muted); display: flex; align-items: flex-start; }
.va-cell.mid { padding: 22px 34px; }
.va-row:not(.va-head) .va-cell:not(.mid) { border-top: 1px solid var(--line-2); }
.va-head .va-cell { padding-top: 30px; padding-bottom: 16px; font-family: var(--font); font-size: 13px; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; color: var(--muted-2); }
.va-head .va-cell.h.mid { color: var(--blue); padding-top: 34px; }
.va-cell.before { color: var(--muted-2); }
.va-cell.with { color: var(--ink); font-weight: 600; gap: 11px; letter-spacing: -.015em; }
.va-cell.with .ck { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; margin-top: 1px; }
.va-cell.with .ck svg { width: 13px; height: 13px; }
.va-cell.change { color: var(--ink-soft); }
.va-row:last-child .va-cell.mid { padding-bottom: 32px; }

/* value table → stacked, labelled cards on mobile */
@media (max-width: 768px) {
  .va-scroll { overflow: visible; padding: 0; margin: clamp(24px,5vw,36px) 0 0; }
  .value-apple { min-width: 0; }
  .va-lane, .va-row.va-head { display: none; }
  .va-row {
    display: block; background: #fff; border: 1px solid var(--line-2);
    border-radius: 18px; box-shadow: var(--shadow-card);
    padding: 18px; margin-bottom: 14px;
  }
  .va-cell { display: block; padding: 0; border: none !important; font-size: 15px; line-height: 1.46; }
  .va-cell::before {
    display: block; font-family: var(--font); font-size: 11px; font-weight: 700;
    letter-spacing: .05em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 5px;
  }
  .va-cell.before { color: var(--muted); margin-bottom: 14px; }
  .va-cell.before::before { content: "Before · the human team"; }
  .va-cell.with {
    display: flex; flex-wrap: wrap; align-items: flex-start; gap: 9px;
    background: var(--blue-soft); border-radius: 12px; padding: 13px 14px; margin-bottom: 14px;
    color: var(--ink); font-weight: 600;
  }
  .va-cell.with::before { content: "With DINA"; color: var(--blue); flex-basis: 100%; }
  .va-cell.with > span:last-child { flex: 1; min-width: 0; }
  .va-cell.change { color: var(--ink-soft); }
  .va-cell.change::before { content: "What changes"; }
  .va-row:last-child .va-cell.mid { padding-bottom: 0; }
}

/* ============================================================
   DINA MODULES
   ============================================================ */
.mfeat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(40px, 5vw, 60px); }
.mfcard {
  position: relative; background: #fff;
  border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-card); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.mfcard::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: linear-gradient(90deg, #19c37d, #12a877); }
.mfcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-float); }
.mf-ic { width: 50px; height: 50px; border-radius: 14px; background: rgba(29,155,86,.12); color: var(--green); display: grid; place-items: center; margin-bottom: 20px; }
.mf-ic svg { width: 25px; height: 25px; }
.mf-live {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; letter-spacing: .01em; color: var(--green);
}
.mf-live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: livepulse 2.2s infinite; }
.mf-name { font-family: var(--font); font-size: 24px; font-weight: 600; letter-spacing: -.015em; margin: 12px 0 8px; }
.mf-desc { font-size: 15px; color: var(--muted); line-height: 1.46; letter-spacing: -.005em; }

@keyframes livepulse { 0% { box-shadow: 0 0 0 0 rgba(29,155,86,.45); } 70% { box-shadow: 0 0 0 8px rgba(29,155,86,0); } 100% { box-shadow: 0 0 0 0 rgba(29,155,86,0); } }

.prog { margin-top: clamp(44px, 5.5vw, 64px); }
.mprog-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 12px; }
.mprog-row .pl { font-size: 15px; font-weight: 600; color: var(--ink); letter-spacing: -.01em; }
.mprog-row .pr { font-size: 13.5px; color: var(--muted-2); }
.prog-bar { height: 8px; background: var(--gray); border-radius: 980px; overflow: hidden; }
.prog-fill { display: block; height: 100%; width: 0; background: linear-gradient(90deg, #19c37d, #12a877); border-radius: 980px; transition: width 1.4s var(--ease) .3s; }
.prog.reveal:not(.pre) .prog-fill { width: 20%; }

.mgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: 11px; margin-top: 28px; }
.mtile {
  position: relative; background: #fff;
  border: 1px solid var(--line-2); border-radius: 15px;
  padding: 16px; display: flex; flex-direction: column; gap: 7px;
  transition: opacity .7s var(--ease), transform .7s var(--ease), box-shadow .3s, border-color .3s;
}
.mtile:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.mt-id { font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--muted-2); }
.mt-name { font-size: 14px; font-weight: 600; color: var(--ink); letter-spacing: -.01em; line-height: 1.25; }
.mt-dot { position: absolute; top: 16px; right: 16px; width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
.s-active { border-color: rgba(29,155,86,.45); background: linear-gradient(180deg, rgba(29,155,86,.07), #fff 70%); }
.s-active .mt-id { color: var(--green); }
.s-active .mt-dot { background: var(--green); animation: livepulse 2.2s infinite; }
.s-design { border-color: rgba(124,92,255,.32); }
.s-design .mt-dot { background: #7c5cff; }
.s-design .mt-id { color: #6d4bd0; }
.s-later .mt-dot { background: var(--line); }
.mod-legend { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 22px; padding-left: 4px; }
.mst { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; letter-spacing: -.005em; }
.mst::before { content: ""; width: 8px; height: 8px; border-radius: 50%; flex: none; }
.mst.active  { color: var(--green);    } .mst.active::before  { background: var(--green); }
.mst.design  { color: #6d4bd0;         } .mst.design::before  { background: #7c5cff; }
.mst.later   { color: var(--muted-2); font-weight: 500; } .mst.later::before { background: var(--line); }

/* ============================================================
   ARABIC
   ============================================================ */
.h2.ar { line-height: 1.22; }
.ar-root { font-size: 1.05em; color: var(--ink); font-weight: 600; }
.ar2-stage { position: relative; max-width: 580px; margin: clamp(40px,5vw,60px) auto 0; }
.ar2-glow {
  position: absolute; inset: -12% -8% auto; height: 82%; z-index: 0;
  background: radial-gradient(60% 100% at 50% 0%, rgba(0,113,227,.18), transparent 70%);
  filter: blur(14px); pointer-events: none;
}
.ar2-card {
  position: relative; z-index: 1; background: #fff;
  border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float); overflow: hidden;
}
.ar2-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 18px; border-bottom: 1px solid var(--line-2); background: #fbfbfd;
}
.ar2-tabs { display: inline-flex; gap: 4px; background: var(--gray); border-radius: 980px; padding: 3px; }
.ar2-tab { font-size: 12.5px; font-weight: 500; color: var(--muted); padding: 5px 13px; border-radius: 980px; cursor: pointer; transition: .2s; }
.ar2-tab.active { background: #fff; color: var(--ink); font-weight: 600; box-shadow: 0 1px 3px rgba(0,0,0,.1); }
.ar2-id { font-family: var(--mono); font-size: 11.5px; color: var(--muted-2); letter-spacing: .03em; }
.ar2-body { padding: 26px 24px; display: flex; flex-direction: column; gap: 14px; }
.ar2-bub { padding: 14px 18px; border-radius: 18px; font-size: 17px; line-height: 1.72; }
.ar2-bub.them { align-self: flex-start; background: var(--gray); border-top-right-radius: 6px; max-width: 82%; }
.ar2-bub.dina { align-self: stretch; background: var(--blue-soft); color: #08326e; border-top-right-radius: 6px; }
.ar2-meta { display: block; margin-top: 10px; font-family: var(--mono); font-size: 11.5px; color: var(--blue-link); text-align: left; opacity: .85; letter-spacing: .02em; }
.ar2-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 920px; margin: clamp(44px,5vw,64px) auto 0; }
.ar2-feat { text-align: center; padding: 0 12px; }
.ar2-fic { width: 52px; height: 52px; border-radius: 14px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; margin: 0 auto 16px; transition: transform .35s var(--ease-spring), background .3s; }
.ar2-feat:hover .ar2-fic { transform: scale(1.12); background: var(--blue); color: #fff; }
.ar2-fic svg { width: 25px; height: 25px; }
.ar2-feat h4 { font-family: var(--font); font-size: 19px; font-weight: 600; letter-spacing: -.015em; }
.ar2-feat p { font-size: 15px; color: var(--muted); line-height: 1.46; margin-top: 7px; letter-spacing: -.005em; }
.ar2-foot { text-align: center; margin-top: clamp(40px,5vw,58px); }
.ar2-foot p { font-size: 16px; color: var(--muted); letter-spacing: -.01em; }
.ar2-foot .ar-cta { margin-top: 22px; gap: 8px; }

/* ============================================================
   METHODOLOGY
   ============================================================ */
.method { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: clamp(40px,5vw,64px); }
.mcard {
  background: #fff; border: 1px solid var(--line-2);
  border-radius: var(--radius-lg); padding: 42px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.mcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(0,113,227,.2); }
.mcard .mnum { font-family: var(--font); font-weight: 600; letter-spacing: -.02em; font-size: 38px; color: var(--blue); line-height: 1; }
.mcard .mnum.mnum-text { font-size: 34px; letter-spacing: -.015em; }
.mcard h3 { margin: 18px 0 12px; }
.mcard p { font-size: 17px; color: var(--muted); line-height: 1.5; letter-spacing: -.005em; }
.adapt-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; }
.adapt-chip { font-size: 14px; color: var(--ink); background: var(--gray); border-radius: 11px; padding: 9px 14px; letter-spacing: -.01em; transition: background .2s, color .2s; }
.adapt-chip:hover { background: var(--blue-soft); color: var(--blue); }
.adapt-chip b { color: var(--blue); }

/* 7 Design Systems */
.disc-grid {
  margin-top: clamp(40px,5vw,64px);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-2); border-radius: var(--radius); background: #fff; overflow: hidden;
}
.disc {
  padding: 28px; border-right: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
  display: flex; flex-direction: column;
  transition: background .25s;
}
.disc:hover { background: #fafafe; }
.disc:nth-child(4n) { border-right: none; }
.disc:nth-child(n+5) { border-bottom: none; }
.disc .dnum { font-size: 13px; font-weight: 600; color: var(--blue); letter-spacing: -.01em; }
.disc h4 { font-family: var(--font); font-size: 19px; font-weight: 600; letter-spacing: -.015em; line-height: 1.18; margin: 12px 0 8px; }
.disc p { font-size: 14.5px; color: var(--muted); line-height: 1.46; letter-spacing: -.005em; }
.disc.cta { background: linear-gradient(150deg, #2f6cf0, #1b46c8); color: #fff; justify-content: center; gap: 12px; }
.disc.cta:hover { background: linear-gradient(150deg, #3b7df5, #2252d8); }
.disc.cta h4 { margin: 0; font-size: 22px; color: #fff; }
.disc.cta p { color: rgba(255,255,255,.85); }

/* ADAPT five-lens */
.adapt-grid { margin-top: clamp(40px,5vw,64px); display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.adapt-card {
  background: #fff; border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 26px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.adapt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(0,113,227,.2); }
.ac-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font); font-weight: 600; font-size: 18px;
  margin-bottom: 20px;
  transition: transform .35s var(--ease-spring);
}
.adapt-card:hover .ac-av { transform: scale(1.12); }
.adapt-card h4 { font-family: var(--font); font-size: 20px; font-weight: 600; letter-spacing: -.01em; }
.adapt-card p { font-size: 14.5px; color: var(--muted); line-height: 1.46; margin-top: 8px; letter-spacing: -.005em; }

/* ============================================================
   SECURITY
   ============================================================ */
.sec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(40px,5vw,64px); }
.sec-card {
  background: #fff; border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.sec-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(0,113,227,.2); }
.sec-card .si {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center; margin-bottom: 20px;
  transition: background .3s, color .3s, transform .35s var(--ease-spring);
}
.sec-card:hover .si { background: var(--blue); color: #fff; transform: scale(1.1); }
.sec-card .si svg { width: 24px; height: 24px; }
.sec-card h4 { font-family: var(--font); font-weight: 600; font-size: 20px; letter-spacing: -.01em; }
.sec-card p { font-size: 15.5px; color: var(--muted); margin-top: 9px; line-height: 1.5; }

/* ============================================================
   COMPANY
   ============================================================ */
.company-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 5.5vw, 76px); align-items: center;
}
.company-photo {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-deep); aspect-ratio: 16 / 10;
  background: #e7ecf3; position: relative;
}
.company-photo picture { display: block; width: 100%; height: 100%; }
.company-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.company-photo:hover img { transform: scale(1.03); }
.company-text .eyebrow { display: block; }
.company-text .h2 { margin-top: 8px; }
.company-lead { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.52; color: var(--muted); margin-top: 22px; letter-spacing: -.01em; max-width: 40ch; }
.company-text .tlink { margin-top: 26px; display: inline-flex; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-section {
  position: relative; overflow: hidden;
  padding: clamp(96px, 14vw, 180px) 0;
}
.cta-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, #0a1628 0%, #0d1f44 50%, #061232 100%);
}
.cta-aurora { position: absolute; inset: 0; pointer-events: none; }
.cta-aurora .ca1 { position: absolute; width: 600px; height: 600px; top: -200px; left: -150px; border-radius: 50%; background: radial-gradient(circle, rgba(0,113,227,.35), transparent 60%); filter: blur(80px); animation: drift1 20s ease-in-out infinite; }
.cta-aurora .ca2 { position: absolute; width: 500px; height: 500px; bottom: -150px; right: -100px; border-radius: 50%; background: radial-gradient(circle, rgba(124,92,255,.3), transparent 60%); filter: blur(80px); animation: drift2 25s ease-in-out infinite; }
.cta-content { position: relative; z-index: 1; text-align: center; color: #fff; padding: 0 22px; }
.cta-content .eyebrow { color: #5ac8fa; display: block; margin-bottom: 16px; }
.cta-content .h2 { color: #fff; max-width: 18ch; margin: 0 auto; }
.cta-content .lead { color: rgba(255,255,255,.76); max-width: 38ch; margin: 20px auto 0; }
.cta-actions { display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.cta-actions .btn-light { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); color: #fff; backdrop-filter: blur(8px); }
.cta-actions .btn-light:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.44); }
.cta-note { margin-top: 20px; font-size: 14px; color: rgba(255,255,255,.5); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--gray); color: var(--muted); font-size: 12px; line-height: 1.5; }
.footer .wrap { padding-top: 48px; padding-bottom: 40px; }
.foot-note { padding-bottom: 22px; border-bottom: 1px solid var(--line); color: var(--muted-2); max-width: 100%; }
.foot-cols { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 32px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.foot-brand .brand { margin-bottom: 14px; }
.foot-brand p { font-size: 12.5px; color: var(--muted-2); max-width: 30ch; }
.foot-col h5 { font-size: 12px; font-weight: 600; color: var(--ink); margin-bottom: 12px; letter-spacing: -.01em; }
.foot-col a { display: block; color: var(--muted); padding: 4px 0; transition: color .2s; }
.foot-col a:hover { color: var(--blue); }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 20px; color: var(--muted-2); }
.foot-bottom span:last-child { font-family: var(--mono); letter-spacing: .04em; }

/* ============================================================
   WHATSAPP MODAL
   ============================================================ */
.modal-back {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid; place-items: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-back.open { opacity: 1; pointer-events: auto; }
.modal {
  width: 100%; max-width: 390px; background: #fff;
  border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow-deep);
  transform: scale(.94) translateY(16px);
  transition: transform .35s var(--ease-spring);
}
.modal-back.open .modal { transform: none; }
.modal-top { display: flex; align-items: center; gap: 11px; padding: 18px 20px; border-bottom: 1px solid var(--line-2); position: relative; }
.modal-top .chat-av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg,#0a84ff,#0040c1); color: #fff; display: grid; place-items: center; font-weight: 600; font-size: 17px; font-family: var(--font); flex: none; }
.modal-top .nm { display: block; font-weight: 600; font-size: 16px; letter-spacing: -.01em; }
.modal-top .st { font-size: 12.5px; color: var(--green); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 30px; height: 30px; border-radius: 50%; background: var(--gray); display: grid; place-items: center; transition: background .2s; }
.modal-close:hover { background: var(--line-2); }
.modal-body { padding: 22px 24px 28px; text-align: center; }
.bub { max-width: 86%; padding: 13px 17px; border-radius: 20px; font-size: 15px; line-height: 1.48; }
.bub.them { align-self: flex-start; background: var(--gray); border-bottom-left-radius: 6px; }
.bub.dina { align-self: flex-start; background: var(--blue-soft); color: #08326e; border-bottom-left-radius: 6px; }
.modal-body .bub { text-align: left; margin-bottom: 14px; max-width: 100%; }
.qr { width: 150px; height: 150px; margin: 8px auto 20px; border-radius: 16px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; }
.qr img { width: 122px; height: 122px; display: block; }
.qr span { font-family: var(--mono); font-size: 10px; color: var(--muted-2); text-align: center; line-height: 1.5; }

/* ============================================================
   FLOATING CTA
   ============================================================ */
.floating-cta {
  position: fixed; bottom: 92px; right: 28px; z-index: 150;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
  opacity: 0; transform: translateY(16px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  pointer-events: none;
}
/* floating WhatsApp button (always visible) */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 150;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 26px -8px rgba(37,211,102,.6), 0 4px 12px -6px rgba(0,0,0,.25);
  transition: transform .25s var(--ease-spring), box-shadow .25s var(--ease);
}
.wa-fab:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 14px 30px -8px rgba(37,211,102,.7); }
.wa-fab svg { width: 30px; height: 30px; }
.floating-cta.visible { opacity: 1; transform: none; pointer-events: auto; }
.floating-cta .btn { box-shadow: 0 8px 24px -8px rgba(0,113,227,.5), 0 4px 12px -6px rgba(0,0,0,.2); }

/* back to top */
.back-top {
  position: fixed; bottom: 28px; left: 28px; z-index: 150;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.4);
  opacity: 0; transform: translateY(16px);
  transition: opacity .4s, transform .4s, background .2s;
  pointer-events: none;
}
.back-top.visible { opacity: 1; transform: none; pointer-events: auto; }
.back-top:hover { background: var(--blue); }
.back-top svg { width: 20px; height: 20px; }

/* ============================================================
   HERO SCROLL HINT
   ============================================================ */
.hero-scroll-hint {
  position: relative; z-index: 1;
  display: flex; justify-content: center;
  padding-bottom: clamp(24px, 3vw, 40px);
  margin-top: auto;
}
.hero-scroll-hint svg {
  width: 22px; height: 22px; color: var(--muted-2);
  animation: scrollBounce 2.4s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(7px); opacity: 1; } }

/* ============================================================
   TRUST CARD ICONS
   ============================================================ */
.tc-ic {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center; margin-bottom: 20px;
  transition: background .3s, color .3s, transform .35s var(--ease-spring);
  flex: none;
}
.tc-ic svg { width: 24px; height: 24px; }
.trust-card:hover .tc-ic { background: var(--blue); color: #fff; transform: scale(1.1) rotate(-4deg); }

/* ============================================================
   SECTION CTA ROW
   ============================================================ */
.section-cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-top: clamp(44px, 5.5vw, 64px);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { transition: opacity .85s var(--ease), transform .85s var(--ease); }
  .reveal.pre { opacity: 0; transform: translateY(28px); }
  .reveal.pre.slide-left  { transform: translateX(-28px); }
  .reveal.pre.slide-right { transform: translateX( 28px); }
  .reveal.pre.scale-in    { transform: scale(.96); }
  .reveal.d1 { transition-delay: .08s; }
  .reveal.d2 { transition-delay: .16s; }
  .reveal.d3 { transition-delay: .24s; }
  .reveal.d4 { transition-delay: .32s; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .disc-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-cta .btn-soft { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid var(--line-2); }
  .stat:nth-child(4) { border-top: 1px solid var(--line-2); border-right: none; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile.c2, .tile.c3, .tile.c4, .tile.c6 { grid-column: span 2; }
  .tile.feature { grid-template-columns: 1fr; gap: 24px; }
  /* workflow strip → vertical on smaller screens */
  .wf { flex-direction: column; }
  .wf-step { width: 100%; }
  .wf-arrow { width: 100%; height: 28px; justify-content: center; }
  .wf-arrow .wf-line { left: 50%; right: auto; top: 3px; bottom: 6px; height: auto; width: 2px; transform: translateX(-50%); background: repeating-linear-gradient(180deg, currentColor 0 5px, transparent 5px 10px); background-size: 2px 10px; animation-name: wfFlowV; }
  .wf-head { transform: rotate(90deg); }
  .wf-arrow.cur .wf-head { animation-name: wfNudgeV; }
  .col-grid { grid-template-columns: repeat(2, 1fr); }
  .method { grid-template-columns: 1fr; }
  .mfeat { grid-template-columns: 1fr; }
  .ar2-feats { grid-template-columns: 1fr; gap: 32px; max-width: 420px; }
  .sec-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .gap-grid { grid-template-columns: 1fr; gap: 44px; }
  .company-grid { grid-template-columns: 1fr; gap: 36px; }
  .disc-grid { grid-template-columns: 1fr 1fr; }
  .disc:nth-child(even) { border-right: none; }
  .disc:nth-child(n+5) { border-bottom: 1px solid var(--line-2); }
  .disc:nth-last-child(-n+2) { border-bottom: none; }
  .adapt-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .floating-cta { bottom: 84px; right: 20px; }
  .wa-fab { bottom: 20px; right: 20px; }
  .back-top { bottom: 20px; left: 20px; }
}

@media (max-width: 560px) {
  .hero-actions { gap: 12px; flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .reel-card { width: 270px; height: 270px; }
  .col-grid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr; }
  .tile.c2, .tile.c3, .tile.c4, .tile.c6 { grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-top: 1px solid var(--line-2); }
  .stat:first-child { border-top: none; }
  .disc-grid { grid-template-columns: 1fr; }
  .disc { border-right: none !important; border-bottom: 1px solid var(--line-2) !important; }
  .disc:last-child { border-bottom: none !important; }
  .adapt-grid { grid-template-columns: 1fr 1fr; }
  .sec-grid { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr; }
  .back-top, .floating-cta { display: none; }
  .section-cta { flex-direction: column; align-items: center; }
}

/* ==================== LEGAL PAGES (privacy / terms) ==================== */
.legal { padding: clamp(92px, 12vw, 150px) 0 clamp(56px, 8vw, 96px); }
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal h1 { font-family: var(--font); font-weight: 600; letter-spacing: -.022em; line-height: 1.07; font-size: clamp(34px, 5vw, 52px); color: var(--ink); }
.legal .updated { color: var(--muted-2); font-size: 14px; margin-top: 14px; letter-spacing: -.01em; }
.legal .legal-intro { margin-top: 20px; font-size: clamp(17px, 1.7vw, 19px); line-height: 1.6; color: var(--muted); letter-spacing: -.01em; }
.legal-body { margin-top: clamp(26px, 4vw, 40px); }
.legal-body h2 { font-family: var(--font); font-size: clamp(20px, 2.3vw, 25px); font-weight: 600; letter-spacing: -.015em; color: var(--ink); margin: 40px 0 12px; }
.legal-body h3 { font-size: 17px; font-weight: 600; color: var(--ink-soft); margin: 22px 0 7px; letter-spacing: -.01em; }
.legal-body p { font-size: 16px; line-height: 1.66; color: var(--muted); letter-spacing: -.005em; margin-bottom: 14px; }
.legal-body ul { margin: 4px 0 16px; padding-left: 22px; }
.legal-body li { font-size: 16px; line-height: 1.6; color: var(--muted); letter-spacing: -.005em; margin-bottom: 7px; }
.legal-body strong { color: var(--ink-soft); font-weight: 600; }
.legal-body a { color: var(--blue-link); }
.legal-body a:hover { text-decoration: underline; }
.legal-toc { margin: 28px 0 8px; padding: 18px 20px; background: var(--gray); border-radius: 14px; }
.legal-toc h2 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-2); margin: 0 0 10px; }
.legal-toc ol { margin: 0; padding-left: 20px; }
.legal-toc li { margin-bottom: 5px; font-size: 14.5px; }
.legal-toc a { color: var(--blue-link); }

/* ==================== ABOUT / COMPANY PAGE (redesign) ==================== */
.ab-hero { background: linear-gradient(165deg,#f3f8ff 0%, #e9f1fe 55%, #e5edfb 100%); padding: clamp(92px,13vw,148px) 0 clamp(52px,7vw,86px); }
.ab-hero .wrap { max-width: 960px; }
.ab-hero .eyebrow { display:block; }
.ab-hero h1 { font-family:var(--font); font-weight:600; letter-spacing:-.026em; line-height:1.04; font-size:clamp(34px,5.6vw,64px); color:var(--ink); margin-top:12px; max-width:17ch; }
.ab-intro { margin-top:24px; max-width:64ch; }
.ab-intro p { font-size:clamp(17px,1.8vw,21px); line-height:1.55; color:var(--muted); letter-spacing:-.01em; margin-bottom:14px; }
.ab-intro b { color:var(--ink-soft); font-weight:600; }

.ab-section { padding: clamp(60px,8.5vw,116px) 0; }
.ab-wrap { max-width: 940px; margin:0 auto; }
.ab-section .eyebrow { display:block; }
.ab-h2 { font-family:var(--font); font-weight:600; letter-spacing:-.022em; line-height:1.08; font-size:clamp(28px,3.6vw,46px); color:var(--ink); margin-top:6px; }

.ab-statement { font-family:var(--font); font-weight:600; letter-spacing:-.022em; line-height:1.16; font-size:clamp(26px,3.4vw,46px); margin:22px 0; text-wrap:balance; }
.ab-statement .mut { color:var(--ink); } .ab-statement .accent { color:var(--blue); }

.ab-body { max-width:64ch; }
.ab-body p { font-size:clamp(16px,1.55vw,18.5px); line-height:1.66; color:var(--muted); letter-spacing:-.005em; margin-bottom:15px; }
.ab-body strong { color:var(--ink-soft); font-weight:600; }

.ab-principle { margin:clamp(30px,4.5vw,48px) 0 clamp(20px,3vw,32px); padding:clamp(28px,4.5vw,48px); border-radius:var(--radius-lg); background:linear-gradient(150deg,#0a1628,#0d1f44 55%,#061232); color:#fff; text-align:center; position:relative; overflow:hidden; }
.ab-principle .pr-label { font-size:12.5px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:#5ac8fa; }
.ab-principle .pr-line { font-family:var(--font); font-weight:600; letter-spacing:-.02em; font-size:clamp(23px,3.2vw,38px); margin-top:12px; line-height:1.15; }
.ab-principle .pr-line .b { color:#7fb6ff; }

.ab-cadence { display:flex; flex-wrap:wrap; gap:10px; margin-top:24px; }
.ab-cadence span { font-size:clamp(14px,1.5vw,16px); font-weight:600; color:var(--ink); background:#fff; border:1px solid var(--line-2); border-radius:980px; padding:9px 18px; letter-spacing:-.01em; box-shadow:0 1px 3px rgba(0,0,0,.04); }

/* founder */
.ab-founder { display:grid; grid-template-columns:.82fr 1.18fr; gap:clamp(28px,4.5vw,60px); align-items:start; margin-top:clamp(28px,4vw,44px); }
.ab-fphoto { position:sticky; top:84px; }
.ab-fphoto img { width:100%; height:auto; border-radius:var(--radius-lg); box-shadow:var(--shadow-float); display:block; }
.ab-fname { margin-top:16px; font-family:var(--font); font-weight:600; color:var(--ink); font-size:19px; letter-spacing:-.01em; }
.ab-frole { color:var(--muted); font-size:14px; margin-top:2px; }
.ab-flink { margin-top:12px; }
.ab-quote { font-family:var(--font); font-weight:600; letter-spacing:-.02em; line-height:1.24; font-size:clamp(21px,2.7vw,30px); color:var(--ink); margin:8px 0 20px; padding-left:18px; border-left:3px solid var(--blue); }

/* name */
.ab-name { text-align:center; }
.ab-name .ab-statement { max-width:22ch; margin-left:auto; margin-right:auto; }
.ab-name .ab-body { max-width:62ch; margin:0 auto; }

/* colleague film-roll */
.ab-roll-head { display:flex; align-items:baseline; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.ab-roll { display:flex; gap:18px; overflow-x:auto; scroll-snap-type:x mandatory; padding:8px 2px 20px; margin-top:28px; scrollbar-width:thin; }
.ab-roll::-webkit-scrollbar { height:8px; }
.ab-roll::-webkit-scrollbar-thumb { background:var(--line); border-radius:980px; }
.ab-col { scroll-snap-align:start; flex:none; width:clamp(232px,74vw,272px); background:#fff; border:1px solid var(--line-2); border-radius:24px; padding:24px; box-shadow:var(--shadow-card); display:flex; flex-direction:column; transition:transform .35s var(--ease), box-shadow .35s var(--ease); }
.ab-col:hover { transform:translateY(-5px); box-shadow:var(--shadow-float); }
.ab-col .acav { width:60px; height:60px; border-radius:50%; display:grid; place-items:center; color:#fff; font-family:var(--font); font-weight:700; font-size:24px; overflow:hidden; margin-bottom:16px; border:2px solid #fff; box-shadow:0 8px 20px -10px rgba(0,0,0,.35); }
.ab-col .acav img { width:100%; height:100%; object-fit:cover; }
.ab-col .ac-name { font-family:var(--font); font-weight:600; font-size:19px; letter-spacing:-.02em; color:var(--ink); display:flex; align-items:center; gap:9px; flex-wrap:wrap; }
.ab-col .ac-role { font-size:13px; color:var(--blue); font-weight:600; margin-top:3px; }
.ab-col .ac-desc { font-size:14px; line-height:1.5; color:var(--muted); margin-top:12px; }
.ab-col .ac-badge { font-size:11px; font-weight:600; padding:3px 9px; border-radius:980px; letter-spacing:-.005em; white-space:nowrap; }
.ab-col .ac-badge.live { background:#e6f6ec; color:var(--green); }
.ab-col .ac-badge.soon { background:var(--gray); color:var(--muted-2); }
.ab-roll-hint { font-size:13px; color:var(--muted-2); font-weight:500; }

@media (max-width: 760px) {
  .ab-founder { grid-template-columns:1fr; }
  .ab-fphoto { position:static; max-width:340px; }
}

/* photo avatars in roster + about film-roll */
.cav { overflow: hidden; }
.cav img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ab-col .ac-badge.next { background:#e8f1fe; color:var(--blue); }

/* ── FAQ accordion (money pages) ──────────────────────────── */
.faq { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--line-2); border-radius: 18px;
  padding: 2px 26px; transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq-item[open] { border-color: rgba(0,113,227,.25); box-shadow: var(--shadow-card); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; gap: 18px; padding: 24px 0;
  font-family: var(--font); font-weight: 600; font-size: clamp(16px,2.2vw,19px);
  color: var(--ink); line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex: none; width: 10px; height: 10px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(45deg); transition: transform .3s var(--ease); margin-top: -5px;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 3px; }
.faq-item p { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 0 0 24px; max-width: 72ch; }
.faq-item p:first-of-type { margin-top: -4px; }

/* subpage lead intro reuse for money pages */
.mp-intro { max-width: 720px; }
.mp-intro p { color: var(--muted); font-size: clamp(16px,2.4vw,19px); line-height: 1.65; margin: 0 0 16px; }
.mp-intro p b, .mp-intro p strong { color: var(--ink-soft); }

/* DINA teaser CTA row (homepage) */
.dina-teaser-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* ── DINA standalone hero (banner + overlay copy) ─────────── */
.dina-hero { background: var(--gray-2); padding: 8px 0 clamp(10px,2vw,22px); }
.dina-hero .subpage-back { display: inline-flex; align-items: center; gap: 6px; margin: 8px 0 14px; }
.dina-hero-stage {
  position: relative; max-width: var(--wide); margin: 0 auto;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card);
  background: #0c1830;
}
.dina-hero-img img {
  width: 100%; display: block; aspect-ratio: 16 / 11;
  object-fit: cover; object-position: 24% center;
}
.dina-hero-copy { padding: 24px 22px 30px; background: #fff; }
.dina-hero-copy .eyebrow { display: block; }
.dina-hero-copy h1 {
  margin: 10px 0 14px; font-family: var(--font); font-weight: 600;
  font-size: clamp(27px, 6.4vw, 38px); line-height: 1.05; letter-spacing: -.02em; color: var(--ink);
}
.dina-hero-copy p { color: var(--muted); font-size: clamp(15px,3.4vw,17px); line-height: 1.6; margin: 0; max-width: 54ch; }
.dina-hero-copy p strong { color: var(--ink-soft); }
.dina-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

@media (min-width: 920px) {
  .dina-hero-stage { aspect-ratio: 2688 / 1152; }
  .dina-hero-img { position: absolute; inset: 0; }
  .dina-hero-img img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; object-position: left center; }
  .dina-hero-stage::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(90deg, rgba(255,255,255,0) 35%, rgba(255,255,255,.6) 50%, rgba(255,255,255,.96) 66%);
  }
  .dina-hero-copy {
    position: absolute; top: 0; right: 0; height: 100%; width: 52%;
    display: flex; flex-direction: column; justify-content: center;
    background: transparent; padding: 0 clamp(30px,4vw,60px) 0 16px; z-index: 2;
  }
  .dina-hero-copy h1 { font-size: clamp(30px, 3.2vw, 44px); }
  .dina-hero-copy p { font-size: clamp(15px, 1.5vw, 18px); }
}

/* ── Control Hubs ──────────────────────────────────────────── */
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(40px, 5vw, 64px); }
.hub-card {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  padding: clamp(26px, 2.6vw, 36px); box-shadow: 0 1px 3px rgba(0,0,0,.04);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.hub-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent); opacity: 0; transition: opacity .4s;
}
.hub-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: rgba(0,113,227,.2); }
.hub-card:hover::before { opacity: 1; }
.hub-ic {
  width: 46px; height: 46px; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-soft); color: var(--blue); margin-bottom: 16px;
  transition: transform .4s var(--ease), background .4s, color .4s;
}
.hub-ic svg { width: 24px; height: 24px; }
.hub-card:hover .hub-ic { background: var(--blue); color: #fff; transform: scale(1.08) rotate(-4deg); }
.hub-tag { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); font-weight: 600; }
.hub-card h3 { font-family: var(--font); font-size: 20px; font-weight: 600; letter-spacing: -.015em; line-height: 1.2; color: var(--ink); margin-top: 8px; }
.hub-card > p { font-size: 15.5px; color: var(--muted); line-height: 1.55; margin-top: 12px; letter-spacing: -.005em; }
.hub-maps { list-style: none; margin: 18px 0 0; padding: 16px 0 0; border-top: 1px solid var(--line-2); display: flex; flex-direction: column; gap: 9px; }
.hub-maps li { font-size: 14px; color: var(--ink-soft); line-height: 1.45; padding-left: 19px; position: relative; }
.hub-maps li::before { content: ''; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); opacity: .5; }
.hub-soon {
  display: inline-block; margin-left: 5px; font-family: var(--mono); font-size: 10px; letter-spacing: .04em;
  text-transform: uppercase; color: #8a6d00; background: #fff6da; border: 1px solid #f0e2a8; border-radius: 999px; padding: 1px 7px; vertical-align: middle;
}
.hub-flow { margin: clamp(34px, 4vw, 50px) auto 0; text-align: center; max-width: 900px; }
.hub-flow-line { font-family: var(--font); font-size: clamp(16px, 2.1vw, 20px); font-weight: 600; letter-spacing: -.01em; color: var(--ink); line-height: 1.5; }
.hub-flow-line b { color: var(--blue); font-weight: 600; padding: 0 1px; }
.hub-flow-sub { font-size: 15px; color: var(--muted); line-height: 1.6; margin-top: 14px; }
@media (max-width: 860px) { .hub-grid { grid-template-columns: 1fr; } }

/* ── Control Hubs · architecture diagram ───────────────────── */
.arch-stage { max-width: 880px; margin: clamp(40px,5vw,60px) auto 0; display: flex; flex-direction: column; }
.arch-band { background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius); padding: 16px 22px; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.arch-label { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; }
.arch-chips { display: flex; gap: 9px; flex-wrap: wrap; justify-content: center; }
.arch-chip { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 500; color: var(--ink-soft); background: var(--gray); border: 1px solid var(--line-2); border-radius: 999px; padding: 7px 14px; }
.arch-chip svg { width: 15px; height: 15px; color: var(--blue); }

.arch-arrow { width: 2px; height: 20px; margin: 7px auto; background: linear-gradient(var(--blue), rgba(0,113,227,.25)); position: relative; opacity: .55; }
.arch-arrow::after { content: ''; position: absolute; bottom: -1px; left: 50%; transform: translateX(-50%); border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid var(--blue); }

.arch-orch { background: linear-gradient(180deg, #0c2a6b, #0b1b3a); border-color: transparent; flex-direction: column; gap: 5px; padding: 18px 22px; }
.arch-orch .arch-label.light { color: #9fc1ff; }
.arch-orch-flow { font-family: var(--font); font-size: clamp(15px,2vw,18px); font-weight: 600; color: #fff; letter-spacing: -.01em; text-align: center; }
.arch-orch-flow b { color: #6ea8ff; padding: 0 2px; }

.arch-hubs { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.arch-hub { background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius); padding: 18px 16px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; transition: border-color .3s, transform .3s var(--ease); }
.arch-hub:hover { border-color: rgba(0,113,227,.25); transform: translateY(-3px); }
.arch-hub-ic { width: 40px; height: 40px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; background: var(--blue-soft); color: var(--blue); margin-bottom: 2px; }
.arch-hub-ic svg { width: 22px; height: 22px; }
.arch-hub b { font-size: 15.5px; color: var(--ink); font-weight: 600; }
.arch-hub .d { font-size: 13px; color: var(--muted); line-height: 1.45; }
.arch-mini { font-size: 12px; color: var(--blue); font-weight: 500; margin-top: 2px; }

.arch-gate { background: linear-gradient(180deg, #f1f7ff, #fff); border: 1.5px solid var(--blue); border-radius: var(--radius); padding: clamp(18px,2.4vw,24px); display: flex; align-items: center; gap: 16px; box-shadow: 0 12px 34px -18px rgba(0,113,227,.45); }
.arch-gate-ic { flex: none; width: 48px; height: 48px; border-radius: 13px; background: var(--blue); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.arch-gate-ic svg { width: 26px; height: 26px; }
.arch-gate-txt b { display: block; font-size: 18px; color: var(--ink); font-weight: 600; letter-spacing: -.01em; }
.arch-gate-txt .d { display: block; font-size: 14.5px; color: var(--muted); line-height: 1.5; margin-top: 3px; }

.arch-chip.live { background: #eafaf0; border-color: #bfe9cd; color: #0a7a35; font-weight: 600; }
.arch-chip.live .dot-live { width: 7px; height: 7px; border-radius: 50%; background: #1fb955; display: inline-block; }
.arch-chip.ghost { color: var(--muted-2); background: #fff; }

.arch-foundation { margin-top: 10px; background: var(--gray-3); border: 1px solid transparent; border-radius: var(--radius); padding: 14px 18px; display: flex; gap: 10px 26px; flex-wrap: wrap; justify-content: center; }
.arch-foundation span { font-size: 13px; color: var(--ink-soft); font-weight: 500; display: inline-flex; align-items: center; gap: 7px; }
.arch-foundation span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); opacity: .55; }

.arch-caption { text-align: center; margin-top: 24px; font-family: var(--font); font-weight: 600; font-size: clamp(15px,2vw,18px); color: var(--ink); letter-spacing: -.01em; }

@media (max-width: 760px) { .arch-hubs { grid-template-columns: 1fr; } .arch-gate { flex-direction: row; align-items: flex-start; } }

/* Control Hubs diagram · hubs now carry capability lists (left-aligned) */
.arch-hub { text-align: left; align-items: stretch; }
.arch-hub-ic { align-self: flex-start; }
.arch-hub b { font-size: 16px; }
.arch-hub .d { font-size: 12.5px; color: var(--muted-2); line-height: 1.4; }
.arch-hub-list { list-style: none; margin: 12px 0 0; padding: 12px 0 0; border-top: 1px solid var(--line-2); display: flex; flex-direction: column; gap: 7px; }
.arch-hub-list li { font-size: 13px; color: var(--ink-soft); line-height: 1.35; padding-left: 17px; position: relative; }
.arch-hub-list li::before { content: ''; position: absolute; left: 0; top: 6px; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); opacity: .5; }

/* Control Hubs · breathing room + aligned dividers (equal hub rhythm) */
.arch-hubs { gap: 16px; }
.arch-hub { padding: clamp(20px,2vw,26px) clamp(18px,1.8vw,22px); gap: 8px; }
.arch-hub-ic { margin-bottom: 6px; }
.arch-hub .d { font-size: 13px; line-height: 1.5; min-height: 3.9em; } /* 3-line allowance keeps the list dividers level across all three hubs */
.arch-hub-list { margin-top: auto; padding-top: 14px; gap: 8px; } /* push lists to a shared baseline so the cards read as a set */
.arch-hub-list li { font-size: 13px; line-height: 1.4; }
.arch-orch { padding: 22px 24px; gap: 7px; }
.arch-foundation { margin-top: 14px; padding: 18px 20px; gap: 12px 30px; }
@media (max-width: 760px) { .arch-hub .d { min-height: 0; } }

/* ── Gap section · cited stat + execution meter ────────────── */
.gap-cite { margin-top: 20px; font-size: 14px; color: var(--muted-2); line-height: 1.5; max-width: 46ch; }
.gap-cite a { color: var(--muted-2); text-decoration: underline; text-underline-offset: 2px; margin-left: 5px; white-space: nowrap; }
.gap-cite a:hover { color: var(--blue); }

.gap-meter { align-self: start; }
.gm-card { background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: clamp(24px,2.8vw,34px); box-shadow: var(--shadow-card); }
.gm-head { margin-bottom: 22px; }
.gm-eyebrow { display: block; font-family: var(--font); font-size: 17px; font-weight: 600; color: var(--ink); letter-spacing: -.01em; }
.gm-sub { display: block; font-size: 13px; color: var(--muted-2); margin-top: 3px; }
.gm-row { margin-bottom: 16px; }
.gm-row-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; gap: 10px; }
.gm-row-top > span:first-child { font-size: 14px; color: var(--muted); }
.gm-time { font-family: var(--font); font-size: 15px; font-weight: 600; color: var(--ink); flex: none; }
.gm-time.blue { color: var(--blue); }
.gm-bar { height: 14px; border-radius: 8px; background: var(--gray); overflow: hidden; }
.gm-fill { display: block; height: 100%; border-radius: 8px; transition: width 1.1s var(--ease); }
.gm-fill.manual { width: 100%; background: #d3d5e0; }
.gm-fill.dina { width: 7%; background: linear-gradient(135deg, #0a84ff, #0040c1); transition-delay: .22s; }
.gap-viz.pre .gm-fill { width: 0; }
.gm-stat { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line-2); display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.gm-big { font-family: var(--font); font-weight: 700; font-size: clamp(40px,6vw,54px); line-height: .95; letter-spacing: -.03em; color: var(--blue); display: inline-flex; align-items: baseline; font-variant-numeric: tabular-nums; }
.gm-big .gv-num { font: inherit; color: inherit; letter-spacing: inherit; margin: 0; }
.gm-plus { font-size: .55em; font-weight: 600; }
.gm-stat-label { font-size: 15px; color: var(--muted); max-width: 15ch; line-height: 1.3; }
.gm-note { margin-top: 16px; font-size: 14.5px; color: var(--ink-soft); font-weight: 500; line-height: 1.45; }
.gm-foot { margin-top: 14px; font-size: 11.5px; color: var(--muted-2); line-height: 1.5; }

/* ── Gap meter · workflow snapshot + both-blue bars ────────── */
.gm-flow { margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--line-2); }
.gm-flow-label { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; display: block; margin-bottom: 11px; }
.gm-steps { display: flex; flex-wrap: wrap; align-items: center; gap: 7px 5px; }
.gm-steps .gm-step { font-size: 11.5px; font-weight: 500; color: var(--ink-soft); background: var(--gray); border: 1px solid var(--line-2); border-radius: 7px; padding: 4px 9px; white-space: nowrap; }
.gm-steps i { font-style: normal; color: var(--muted-2); font-size: 12px; }
/* both bars blue: human fills 100%, DINA a 10% stub (the empty 90% = time saved) */
.gm-fill.human { width: 100%; background: linear-gradient(135deg, #0a84ff, #0040c1); }
.gm-fill.dina { width: 10%; background: linear-gradient(135deg, #0a84ff, #0040c1); }

/* align the meter stat label vertically against the big 90%+ */
.gm-stat { align-items: center; }
.gm-stat-label { align-self: center; }

/* alternating section rhythm: gap = white so it doesn't clash with the grey Control Hubs below */
.gap-section { background: var(--white); }

/* ── Uniform section rhythm: one vertical padding everywhere ── */
:root { --section-py: clamp(64px, 8vw, 104px); }
.section { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.section.sec-pb-tight { padding-bottom: var(--section-py); }
.gap-section { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.reel-section { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.stats { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.cta-section { padding-top: var(--section-py); padding-bottom: var(--section-py); }

/* merged meter: title+time on the label row; gm-head/flow live inside the .gap-viz card */
.gv-label-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.gv-label-row b { color: var(--blue); font-weight: 700; font-size: 14px; letter-spacing: -.01em; }
.gap-viz .gm-head { margin-bottom: 18px; }
.gap-viz .gm-flow { margin-bottom: 22px; }
.gap-viz .gv-legend { margin-top: 18px; }
.gap-viz .gm-note { margin-top: 16px; }

/* meter label row: stack the value below the title on phones so the long AHT label never cramps */
@media (max-width: 560px) {
  .gv-label-row { flex-direction: column; align-items: flex-start; gap: 1px; }
}

/* ── Accessibility pass (ui-ux-pro-max audit, 2026-06-20) ──── */
/* 1. Branded, consistent keyboard focus ring (was relying on inconsistent browser defaults) */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
/* 2. cursor:pointer on all interactive controls */
button, .btn, [data-wa], .burger, summary { cursor: pointer; }
/* 3. Respect prefers-reduced-motion: halt the infinite decorative background drifts + loops */
@media (prefers-reduced-motion: reduce) {
  .blob1, .blob2, .blob3, .blob4,
  .cta-aurora .ca1, .cta-aurora .ca2,
  .hero-scroll-hint, .gv-mic, .wf-line {
    animation: none !important;
  }
}

/* footer brand tagline (from the NURA brand lockup) */
.foot-tagline {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--blue);
  margin: 10px 0 6px;
}
/* comfortable footer link tap targets on mobile */
@media (max-width: 760px) {
  .foot-col a { display: block; padding: 5px 0; }
}

/* PAS trust pillars: 3-up on desktop, 1-up on mobile */
.trust-grid.pas { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .trust-grid.pas { grid-template-columns: 1fr; } }

/* ── Platform: the governed-loop engine ───────────────────── */
.loop-flow { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 8px; margin-top: clamp(36px,4.5vw,52px); }
.loop-step { font-family: var(--font); font-size: clamp(14px,1.6vw,16px); font-weight: 600; color: var(--ink); background: #fff; border: 1px solid var(--line-2); border-radius: 12px; padding: 11px 18px; box-shadow: 0 1px 3px rgba(0,0,0,.05); }
.loop-step.stop { background: var(--ink); color: #fff; border-color: var(--ink); }
.loop-flow i { font-style: normal; color: var(--blue); font-size: 16px; font-weight: 600; }
.loop-note { text-align: center; max-width: 720px; margin: clamp(28px,3.5vw,40px) auto 0; font-size: clamp(15px,1.6vw,17px); color: var(--muted); line-height: 1.6; }

/* ── Platform: integrations ───────────────────────────────── */
.intg-systems { justify-content: center; gap: 10px; margin: clamp(36px,4.5vw,52px) auto 0; max-width: 820px; }
.intg-systems span { background: #fff; font-size: 14px; padding: 9px 18px; }
.intg-proto { text-align: center; margin-top: 22px; font-size: 15px; color: var(--muted); }
.intg-proto b { color: var(--ink); font-weight: 600; }

/* ── NURA AI Governed Engine — animated governed work loop ── */
.engine-sec { background: linear-gradient(180deg, #ffffff 0%, #f1f6ff 100%); }
.gengine { position: relative; max-width: 1080px; margin: clamp(44px,5.5vw,68px) auto 0; }

/* horizontal connecting track + traveling Beam-Blue pulse (desktop) */
.gengine-track { position: absolute; top: 31px; left: 8.5%; right: 8.5%; height: 3px; border-radius: 3px; background: var(--blue-soft); overflow: hidden; }
.gengine-beam { position: absolute; top: 0; left: 0; height: 100%; width: 22%; border-radius: 3px; background: linear-gradient(90deg, transparent, var(--blue), transparent); opacity: .9; }

.gengine-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; position: relative; }
.gstep { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 4px; }
.gstep-dot {
  width: 62px; height: 62px; border-radius: 50%; background: #fff; border: 2px solid var(--blue-soft);
  color: var(--blue); display: grid; place-items: center; position: relative; z-index: 1;
  box-shadow: 0 2px 12px -5px rgba(0,113,227,.28);
}
.gstep-dot svg { width: 26px; height: 26px; }
.gstep b { font-family: var(--font); font-size: 15px; font-weight: 600; color: var(--ink); margin-top: 15px; display: inline-flex; align-items: center; gap: 6px; }
.gstep-d { font-size: 13px; color: var(--muted); line-height: 1.42; margin-top: 6px; max-width: 18ch; }
.gstep-tag { font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); background: var(--blue-soft); border-radius: 999px; padding: 2px 7px; }
.gstep.gate .gstep-dot { background: var(--blue-soft); border-color: var(--blue); }
.gstep.stop .gstep-dot { background: var(--ink); border-color: var(--ink); color: #fff; }

@media (prefers-reduced-motion: no-preference) {
  .gengine-beam { animation: gbeam 6s linear infinite; }
  .gstep-dot { animation: gpulse 6s ease-in-out infinite; animation-delay: calc(var(--i) * 1s); }
  .gstep.stop .gstep-dot { animation-name: gpulseStop; }
}
@keyframes gbeam { 0% { transform: translateX(-120%); } 100% { transform: translateX(560%); } }
@keyframes gpulse {
  0%, 18%, 100% { border-color: var(--blue-soft); box-shadow: 0 2px 12px -5px rgba(0,113,227,.28); transform: scale(1); }
  7% { border-color: var(--blue); box-shadow: 0 0 0 7px rgba(0,113,227,.10), 0 8px 22px -6px rgba(0,113,227,.55); transform: scale(1.09); }
}
@keyframes gpulseStop {
  0%, 18%, 100% { box-shadow: 0 4px 14px -5px rgba(0,0,0,.32); transform: scale(1); }
  7% { box-shadow: 0 0 0 7px rgba(29,29,31,.10), 0 8px 22px -6px rgba(0,0,0,.42); transform: scale(1.09); }
}

/* mobile: vertical timeline (dot left, text right), no horizontal beam */
@media (max-width: 760px) {
  .gengine { max-width: 440px; }
  .gengine-track { display: none; }
  .gengine-steps { grid-template-columns: 1fr; gap: 0; }
  .gstep { display: grid; grid-template-columns: auto 1fr; column-gap: 16px; align-items: start; text-align: left; padding: 0 0 26px; position: relative; }
  .gstep-dot { grid-row: 1 / 3; }
  .gstep b { grid-column: 2; grid-row: 1; margin-top: 6px; }
  .gstep-d { grid-column: 2; grid-row: 2; max-width: none; margin-top: 4px; }
  .gstep:not(:last-child)::before { content: ''; position: absolute; left: 30px; top: 60px; bottom: 4px; width: 2px; background: var(--blue-soft); }
}

/* Trust Layer: hover-reveal capability tag (calm, premium) */
.trust-card .pas-reveal {
  align-self: flex-start; margin-top: auto; padding-top: 18px;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--blue);
  opacity: 0; transform: translateY(6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.trust-card .pas-reveal::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex: none; }
.trust-card:hover .pas-reveal, .trust-card:focus-within .pas-reveal { opacity: 1; transform: translateY(0); }
@media (hover: none) { .trust-card .pas-reveal { opacity: 1; transform: none; } }

/* Capability sections: subtle official NURA AI wordmark above the eyebrow */
.cap-brand { display: block; width: 74px; margin: 0 auto 16px; }
.cap-brand img { display: block; width: 100%; height: auto; }

/* Polish pass: consistent, subtle brand signature spacing */
.cap-brand { width: 70px; margin: 0 auto 20px; }
/* Trust micro-labels: read as enterprise principles, not code tags */
.trust-card .pas-reveal { font-family: var(--font-text); font-size: 13px; font-weight: 600; letter-spacing: -.005em; text-transform: none; gap: 8px; }
.trust-card .pas-reveal::before { width: 14px; height: 14px; border-radius: 50%; background: var(--blue-soft); position: relative; }

/* ============================================================
   INTEGRATIONS · NURA AI Integration Layer (rebuilt in code)
   Hub-and-spoke: 4 category cards around a central governed hub,
   a compact Protocols card below, subtle Beam-Blue connectors.
   ============================================================ */
/* section head sized so the headline holds one line (matches the reference) */
.ig-head { max-width: 1060px; }
.ig-head .h2 { font-size: clamp(28px, 3.7vw, 44px); }
.ig-head .lead { max-width: 700px; margin-left: auto; margin-right: auto; }

.ig-grid {
  --ig-cgap: clamp(34px, 4.2vw, 58px);
  --ig-rgap: clamp(26px, 3vw, 40px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 356px) minmax(0, 1fr);
  grid-template-areas:
    "ent   hub    com"
    "cloud proto  prod";
  column-gap: var(--ig-cgap);
  row-gap: var(--ig-rgap);
  max-width: 1156px;
  margin: clamp(40px, 4.8vw, 60px) auto 0;
  align-items: stretch;
}
.ig-ent   { grid-area: ent; }
.ig-cloud { grid-area: cloud; }
.ig-com   { grid-area: com; }
.ig-prod  { grid-area: prod; }
.ig-hub   { grid-area: hub; }
.ig-proto-wrap { grid-area: proto; display: flex; justify-content: center; }

/* category cards */
.ig-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: clamp(20px, 2.2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ig-card-label {
  display: block; text-align: center;
  font-family: var(--font); font-size: 14px; font-weight: 700;
  letter-spacing: -.02em; color: var(--ink); white-space: nowrap;
}

/* logo tiles */
.ig-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.ig-tiles.ig-tiles-3 { grid-template-columns: repeat(3, 1fr); }
.ig-tile {
  height: 56px; padding: 0 14px;
  background: #fff; border: 1px solid var(--line-2); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 2px rgba(20,20,40,.03);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.ig-tile img { max-height: 28px; max-width: 100%; width: auto; height: auto; object-fit: contain; display: block; }
.ig-tile:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -16px rgba(20,30,60,.26); border-color: rgba(0,113,227,.3); }
.ig-tile.span2 { grid-column: 1 / -1; }
/* text fallback tile (used when an official logo asset is not yet available) */
.ig-tile.is-text {
  font-family: var(--font); font-size: 14px; font-weight: 600;
  letter-spacing: -.01em; color: var(--ink-soft);
}

/* central governed hub */
.ig-hub {
  align-self: stretch;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 12px;
  padding: clamp(28px, 3vw, 38px) clamp(20px, 2vw, 28px);
  background: linear-gradient(180deg, #ffffff, #eef4ff);
  border: 1px solid rgba(0,113,227,.3);
  border-radius: 24px;
  box-shadow: 0 22px 60px -32px rgba(0,113,227,.42), 0 0 0 6px rgba(0,113,227,.04);
}
.ig-hub-mark { width: 84px; height: auto; }
.ig-hub-title { font-family: var(--font); font-size: clamp(23px, 2.4vw, 31px); font-weight: 700; color: var(--ink); letter-spacing: -.028em; line-height: 1.04; white-space: nowrap; }
.ig-hub-tag { font-family: var(--font-text); font-size: 12.5px; font-weight: 600; letter-spacing: .005em; color: var(--blue); }
.ig-hub-glyph { margin-top: 8px; filter: drop-shadow(0 8px 16px rgba(0,113,227,.32)); }
.ig-hub-glyph svg { width: 60px; height: auto; display: block; }

/* icon + label tiles (channels / productivity) — matches the architecture reference */
.ig-tiles.ig-apps { grid-template-columns: repeat(2, 1fr); }
.ig-app {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px;
  min-height: 92px; padding: 14px 8px;
  background: #fff; border: 1px solid var(--line-2); border-radius: 14px;
  box-shadow: 0 1px 2px rgba(20,20,40,.03);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.ig-app img { width: 30px; height: 30px; object-fit: contain; display: block; }
.ig-app b { font-family: var(--font); font-size: 12.5px; font-weight: 600; letter-spacing: -.01em; color: var(--ink-soft); text-align: center; line-height: 1.25; }
.ig-app:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -16px rgba(20,30,60,.26); border-color: rgba(0,113,227,.3); }
.ig-app.is-nura { background: var(--blue-soft); border-color: rgba(0,113,227,.2); }
.ig-app.is-nura b { color: var(--blue); }
.ig-app.is-nura:hover { border-color: rgba(0,113,227,.4); }

/* protocols · three icon tiles directly under the hub (center column) */
.ig-proto { width: 100%; }
.ig-proto .ig-tiles.ig-apps.ig-proto-tiles { grid-template-columns: repeat(3, 1fr); }
.ig-app.proto .ig-pico { width: 32px; height: 32px; color: var(--blue); display: block; }

/* governance + accuracy lines */
.ig-gov {
  text-align: center; max-width: 820px; margin: clamp(32px, 3.6vw, 44px) auto 0;
  font-size: clamp(15px, 1.7vw, 17px); color: var(--ink-soft); line-height: 1.6;
}
.ig-note {
  text-align: center; max-width: 720px; margin: 14px auto 0;
  font-size: 13.5px; color: var(--muted-2); line-height: 1.55;
}

/* dashed Beam-Blue connectors spanning the gap into the hub (desktop only) */
@media (min-width: 900px) {
  .ig-card, .ig-hub { position: relative; }
  /* horizontal connectors (side cards -> hub / protocols) */
  .ig-ent::after, .ig-cloud::after,
  .ig-com::after, .ig-prod::after {
    content: ''; position: absolute; top: 50%; height: 2px;
    width: var(--ig-cgap); transform: translateY(-50%);
    background-image: linear-gradient(90deg, rgba(0,113,227,.5) 0 56%, transparent 56% 100%);
    background-size: 9px 2px; background-repeat: repeat-x; background-position: left center;
  }
  .ig-ent::after, .ig-cloud::after { right: calc(-1 * var(--ig-cgap)); }
  .ig-com::after, .ig-prod::after { left: calc(-1 * var(--ig-cgap)); }
  /* vertical connector (protocols -> hub) */
  .ig-hub::after {
    content: ''; position: absolute; left: 50%; bottom: calc(-1 * var(--ig-rgap));
    transform: translateX(-50%); width: 2px; height: var(--ig-rgap);
    background-image: linear-gradient(180deg, rgba(0,113,227,.5) 0 56%, transparent 56% 100%);
    background-size: 2px 9px; background-repeat: repeat-y; background-position: center top;
  }
}
/* animate the dashes flowing into the central Integration Layer */
@media (min-width: 900px) and (prefers-reduced-motion: no-preference) {
  .ig-ent::after, .ig-cloud::after { animation: igFlowR .7s linear infinite; }
  .ig-com::after, .ig-prod::after { animation: igFlowL .7s linear infinite; }
  .ig-hub::after { animation: igFlowUp .7s linear infinite; }
  .ig-hub-glyph { animation: igFloat 3.2s ease-in-out infinite; }
}
@keyframes igFlowR  { from { background-position-x: 0; } to { background-position-x: 9px; } }
@keyframes igFlowL  { from { background-position-x: 0; } to { background-position-x: -9px; } }
@keyframes igFlowUp { from { background-position-y: 0; } to { background-position-y: -9px; } }
@keyframes igFloat  { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* tablet + mobile: stack, hub first, readable tiles */
@media (max-width: 899px) {
  .ig-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "hub" "ent" "cloud" "com" "prod" "proto";
    max-width: 600px;
    row-gap: 16px;
  }
  .ig-proto { max-width: none; }
  .ig-tiles { grid-template-columns: repeat(3, 1fr); }
  .ig-hub { padding: 26px 22px; }
}
@media (max-width: 520px) {
  .ig-tiles { grid-template-columns: repeat(2, 1fr); }
  .ig-tiles.ig-tiles-3 { gap: 8px; }
  .ig-tile { padding: 0 8px; }
}

/* Platform hero — full-bleed banner with overlaid headline + text */
.mp-hero {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; align-items: center;
  min-height: clamp(540px, 82vh, 768px);
  padding: clamp(84px, 11vw, 132px) 0 clamp(56px, 7vw, 92px);
}
.mp-hero-bg { position: absolute; inset: 0; z-index: -2; }
.mp-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 74% center; }
.mp-hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(96deg,
    rgba(7,15,33,.93) 0%, rgba(7,15,33,.82) 32%, rgba(7,15,33,.50) 56%,
    rgba(7,15,33,.16) 80%, rgba(7,15,33,0) 100%);
}
.mp-hero .mp-hero-inner {
  color: #fff;
  max-width: none;
  margin-inline: 0;
  padding-left: clamp(28px, 5.2vw, 92px);
  padding-right: 24px;
}
.mp-hero-inner .subpage-back { color: rgba(255,255,255,.78); }
.mp-hero-inner .subpage-back:hover { color: #fff; }
.mp-hero-inner .eyebrow { display: block; color: #7fb2ff; }
.mp-hero-inner h1 {
  font-family: var(--font); font-weight: 600; letter-spacing: -.026em; line-height: 1.04;
  font-size: clamp(34px, 5.2vw, 60px); color: #fff; margin-top: 12px; max-width: 16ch;
}
.mp-hero-inner .mp-intro { margin-top: 22px; max-width: 60ch; }
.mp-hero-inner .mp-intro p {
  font-size: clamp(16px, 1.7vw, 20px); line-height: 1.55; letter-spacing: -.01em;
  color: rgba(255,255,255,.82); margin-bottom: 14px;
}
.mp-hero-inner .mp-intro b, .mp-hero-inner .mp-intro strong { color: #fff; font-weight: 600; }
/* secondary CTA needs a light treatment on the dark hero */
.mp-hero .btn-soft {
  background: rgba(255,255,255,.13); color: #fff; border: 1px solid rgba(255,255,255,.3);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.mp-hero .btn-soft:hover { background: rgba(255,255,255,.22); transform: translateY(-1px); }
@media (max-width: 760px) {
  .mp-hero { min-height: 0; }
  .mp-hero-bg img { object-position: 68% center; }
  .mp-hero-scrim {
    background: linear-gradient(180deg, rgba(7,15,33,.66) 0%, rgba(7,15,33,.74) 42%, rgba(7,15,33,.90) 100%);
  }
}
