/* ============================================================
   ATMOSLY HOMEPAGE v3 — "Three cores, one platform"
   Layers on top of home.css (tokens, buttons, nav, section-head)
   Three presentation DIRECTIONS toggled by html[data-dir=a|b|c]
   ============================================================ */

/* ---- Direction visibility ---- */
[data-variant] { display: none !important; }
html[data-dir="a"] [data-variant="a"],
html[data-dir="b"] [data-variant="b"],
html[data-dir="c"] [data-variant="c"] { display: revert !important; }
html[data-dir="a"] [data-variant="a"].v-flex,
html[data-dir="b"] [data-variant="b"].v-flex,
html[data-dir="c"] [data-variant="c"].v-flex { display: flex !important; }
html[data-dir="a"] [data-variant="a"].v-grid,
html[data-dir="b"] [data-variant="b"].v-grid,
html[data-dir="c"] [data-variant="c"].v-grid { display: grid !important; }

/* Direction B uses the lifecycle section instead of the #cores (A/C) block */
html[data-dir="b"] #cores { display: none; }

/* Guard: home-v2.css defines a bare `.ops` section wrapper (padding:100px 0).
   Reset padding on core-tinted base elements so that rule can't leak onto them. */
.cp-ic, .tcore-ic, .exp-tab-ic, .op-pill .ic,
.lc-step-num .dot, .lc-stage-tag, .tcore-kicker, .nav-mega-col { padding: 0; }

/* shared core color accents */
:root {
  --c-ops-1: #2E6BFF;  --c-ops-2: #20BEF2;  --c-ops-soft: #EAF1FF;
  --c-cd-1: #7C5CFF;   --c-cd-2: #B07CFF;   --c-cd-soft: #F0ECFF;
  --c-prov-1: #0E9F6E; --c-prov-2: #34D399; --c-prov-soft: #E6F8F1;
}

/* ============================================================
   HERO (shared shell)
   ============================================================ */
.h3 {
  position: relative;
  overflow: hidden;
  padding: 72px 0 84px;
}
.h3-bg { position: absolute; inset: 0; pointer-events: none; }
.h3-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(15,23,42,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 28%, black 35%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 28%, black 35%, transparent 78%);
}
.h3-blob { position: absolute; border-radius: 50%; filter: blur(8px); }
.h3-blob-a { width: 560px; height: 560px; top: -220px; right: -120px;
  background: radial-gradient(closest-side, rgba(46,107,255,0.34), transparent); }
.h3-blob-b { width: 460px; height: 460px; top: 40px; left: -160px;
  background: radial-gradient(closest-side, rgba(32,190,242,0.26), transparent); }

.h3-inner { position: relative; }
.h3-eyebrows { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.h3-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  padding: 6px 12px 6px 10px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line-1); color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.h3-pill { white-space: nowrap; }
.h3-pill i { width: 7px; height: 7px; border-radius: 50%; display: block; flex-shrink: 0; }
.h3-pill.ops i { background: var(--c-ops-1); }
.h3-pill.cd i  { background: var(--c-cd-1); }
.h3-pill.prov i{ background: var(--c-prov-1); }

.h3-headline {
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.026em;
  font-weight: 800;
  margin: 0 0 22px;
  text-wrap: balance;
  max-width: 16ch;
}
.h3-headline em {
  font-style: normal;
  background: linear-gradient(120deg, var(--brand-1) 0%, var(--brand-2) 55%, var(--brand-4) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.h3-lede {
  font-size: 19px; line-height: 1.55; color: var(--ink-2);
  max-width: 56ch; margin: 0 0 30px; text-wrap: pretty;
}
.h3-lede b { color: var(--ink-1); font-weight: 600; }
.h3-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.h3-micro {
  list-style: none; margin: 22px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  font-size: 13.5px; color: var(--ink-3); font-weight: 500;
}
.h3-micro li { display: inline-flex; align-items: center; gap: 7px; }
.h3-micro .ck { color: var(--ok); font-weight: 800; }

/* ---- A: light hero, copy left + control-plane card right ---- */
.h3-a-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

/* ---- B: dark hero ---- */
.h3.h3-b { background: var(--bg-dark); color: #E8ECF5; padding: 80px 0 96px; }
.h3-b .h3-grid {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
}
.h3-b .h3-blob-a { background: radial-gradient(closest-side, rgba(46,107,255,0.42), transparent); }
.h3-b .h3-blob-b { background: radial-gradient(closest-side, rgba(124,92,255,0.30), transparent); }
.h3-b .h3-pill { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); color: #C7D0E0; box-shadow: none; }
.h3-b .h3-headline { color: #F4F7FC; max-width: 20ch; }
.h3-b .h3-headline em {
  background: linear-gradient(120deg, #5CD7FF 0%, #7C5CFF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.h3-b .h3-lede { color: #AEB8CC; max-width: 62ch; }
.h3-b .h3-lede b { color: #fff; }
.h3-b .h3-micro { color: #8E9BB3; }
.h3-b-wrap { text-align: center; max-width: 980px; margin: 0 auto; }
.h3-b-wrap .h3-eyebrows, .h3-b-wrap .h3-ctas, .h3-b-wrap .h3-micro { justify-content: center; }
.h3-b-wrap .h3-headline, .h3-b-wrap .h3-lede { margin-left: auto; margin-right: auto; }

/* ---- C: light hero, centered + compact ---- */
.h3-c-wrap { text-align: center; max-width: 940px; margin: 0 auto; }
.h3-c-wrap .h3-eyebrows, .h3-c-wrap .h3-ctas, .h3-c-wrap .h3-micro { justify-content: center; }
.h3-c-wrap .h3-headline, .h3-c-wrap .h3-lede { margin-left: auto; margin-right: auto; }

/* ============================================================
   HERO VISUAL — control-plane stack card (Direction A)
   ============================================================ */
.cp-card {
  background: #fff; border: 1px solid var(--line-1);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.cp-head {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-bottom: 1px solid var(--line-2); background: var(--bg-tint);
}
.cp-dots { display: flex; gap: 6px; }
.cp-dots i { width: 9px; height: 9px; border-radius: 50%; display: block; background: var(--ink-5); }
.cp-dots i:first-child { background: #FF8B7A; }
.cp-dots i:nth-child(2) { background: #FFC25C; }
.cp-dots i:nth-child(3) { background: #6DDB94; }
.cp-title { font-size: 12.5px; font-weight: 600; color: var(--ink-2); }
.cp-title .mono { color: var(--ink-3); }
.cp-live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: var(--ok); }
.cp-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px var(--ok-soft); animation: cpPulse 1.6s ease-out infinite; }
@keyframes cpPulse { 0%{box-shadow:0 0 0 0 rgba(16,185,129,.4)} 100%{box-shadow:0 0 0 7px rgba(16,185,129,0)} }
.cp-rows { padding: 12px; display: grid; gap: 10px; }
.cp-row {
  display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 12px;
  padding: 13px 14px; border-radius: var(--radius); border: 1px solid var(--line-1);
  background: #fff;
}
.cp-row.lead { border-color: #C9D8FB; box-shadow: 0 6px 18px -10px rgba(46,107,255,.4); }
.cp-ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; color: #fff; }
.cp-ic.ops  { background: linear-gradient(135deg,var(--c-ops-1),var(--c-ops-2)); }
.cp-ic.cd   { background: linear-gradient(135deg,var(--c-cd-1),var(--c-cd-2)); }
.cp-ic.prov { background: linear-gradient(135deg,var(--c-prov-1),var(--c-prov-2)); }
.cp-rb-h { display: block; font-size: 14px; font-weight: 700; color: var(--ink-1); }
.cp-rb-s { display: block; font-size: 12px; color: var(--ink-3); }
.cp-stat { text-align: right; font-family: var(--font-mono); font-size: 12px; white-space: nowrap; }
.cp-stat span { white-space: nowrap; }
.cp-stat b { display: block; font-size: 15px; color: var(--ink-1); }
.cp-stat span { color: var(--ink-4); font-size: 10.5px; }
.cp-foot {
  border-top: 1px solid var(--line-2); padding: 11px 16px; background: var(--bg-tint);
  font-size: 12px; color: var(--ink-3); display: flex; align-items: center; gap: 8px; justify-content: space-between;
}
.cp-foot .mono { color: var(--ink-2); }

/* ============================================================
   SECTION: THE THREE CORES — labeled intro (shared)
   ============================================================ */
.cores { padding: 96px 0; }
.cores-intro { text-align: center; max-width: 760px; margin: 0 auto 52px; }
.cores-count {
  display: inline-flex; gap: 18px; margin-top: 26px; flex-wrap: wrap; justify-content: center;
}
.cores-count .cc {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-size: 13px; color: var(--ink-3);
}
.cores-count .cc b { font-family: var(--font-mono); font-size: 22px; font-weight: 700; color: var(--ink-1); }

/* ---- Core color text helpers ---- */
.t-ops  { color: var(--c-ops-1); }
.t-cd   { color: var(--c-cd-1); }
.t-prov { color: var(--c-prov-1); }

/* ============================================================
   DIRECTION A — TRINITY GRID
   ============================================================ */
.trinity { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.tcore {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line-1); border-radius: var(--radius-xl);
  padding: 30px 28px 28px; box-shadow: var(--shadow-md);
  transition: transform 160ms ease, box-shadow 220ms ease;
}
.tcore:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.tcore.lead { border-color: #C9D8FB; box-shadow: 0 22px 50px -24px rgba(46,107,255,.45); }
.tcore-top { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.tcore-ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.tcore-ic.ops  { background: linear-gradient(135deg,var(--c-ops-1),var(--c-ops-2)); }
.tcore-ic.cd   { background: linear-gradient(135deg,var(--c-cd-1),var(--c-cd-2)); }
.tcore-ic.prov { background: linear-gradient(135deg,var(--c-prov-1),var(--c-prov-2)); }
.tcore-kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-4); }
.tcore-kicker.ops { color: var(--c-ops-1); }
.tcore-kicker.cd { color: var(--c-cd-1); }
.tcore-kicker.prov { color: var(--c-prov-1); }
.tcore h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; margin: 2px 0 0; line-height: 1.15; }
.tcore-body { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); margin: 0 0 18px; }
.tcore-feats { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 9px; }
.tcore-feats li { display: flex; gap: 10px; font-size: 13.5px; color: var(--ink-2); line-height: 1.4; }
.tcore-feats svg { flex-shrink: 0; margin-top: 2px; }
.tcore-mock {
  margin-top: auto; border: 1px solid var(--line-2); border-radius: var(--radius);
  background: var(--bg-tint); padding: 13px 14px; font-size: 12px;
}
.tcore-mock-h { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; color: var(--ink-3); margin-bottom: 9px; }
.tcore-mock-h i { width: 7px; height: 7px; border-radius: 50%; display: block; }
.tm-line { display: flex; align-items: center; gap: 8px; padding: 4px 0; color: var(--ink-2); }
.tm-line .mono { color: var(--ink-4); font-size: 10.5px; flex-shrink: 0; }
.tm-tag { margin-left: auto; font-family: var(--font-mono); font-size: 10px; padding: 1px 6px; border-radius: 5px; }
.tm-ok  { background: var(--ok-soft); color: #047857; }
.tm-crit{ background: var(--crit-soft); color: #B91C1C; }
.tm-warn{ background: var(--warn-soft); color: #B45309; }
.tm-bar { display: flex; flex-direction: column; gap: 3px; }
.tm-bar-row { display: flex; align-items: center; gap: 8px; font-size: 11px; }
.tm-bar-track { flex: 1; height: 6px; border-radius: 3px; background: var(--bg-sunken); overflow: hidden; }
.tm-bar-fill { display: block; height: 100%; }
.tcore-foot-link { margin-top: 14px; font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.tcore.lead .tcore-foot-link { color: var(--c-ops-1); }
.tcore-foot-link.cd { color: var(--c-cd-1); }
.tcore-foot-link.prov { color: var(--c-prov-1); }
.tcore-badge {
  position: absolute; top: -11px; left: 28px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  background: var(--c-ops-1); color: #fff; padding: 4px 11px; border-radius: 999px;
  box-shadow: var(--shadow-brand);
}

/* ============================================================
   DIRECTION B — LIFECYCLE FLOW (dark section)
   ============================================================ */
.lifecycle { padding: 0 0 96px; background: var(--bg-dark); color: #E8ECF5; }
.lifecycle .cores-intro h2 { color: #F4F7FC; }
.lifecycle .cores-intro .section-sub { color: #AEB8CC; }
.lc-flow {
  position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  margin-top: 8px;
}
.lc-rail {
  position: absolute; left: 8%; right: 8%; top: 64px; height: 2px;
  background: linear-gradient(90deg, var(--c-prov-2), var(--c-cd-2), var(--c-ops-2));
  opacity: 0.5;
}
.lc-stage {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-xl); padding: 26px 24px 24px;
  backdrop-filter: blur(4px);
  transition: transform 160ms ease, border-color 220ms ease;
}
.lc-stage:hover { transform: translateY(-3px); }
.lc-stage.lead { border-color: rgba(92,215,255,0.4); background: linear-gradient(180deg, rgba(46,107,255,0.12), rgba(255,255,255,0.02)); }
.lc-step-num {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: #8E9BB3;
  display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
}
.lc-step-num .dot { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 12px; }
.lc-step-num .dot.prov { background: linear-gradient(135deg,var(--c-prov-1),var(--c-prov-2)); }
.lc-step-num .dot.cd   { background: linear-gradient(135deg,var(--c-cd-1),var(--c-cd-2)); }
.lc-step-num .dot.ops  { background: linear-gradient(135deg,var(--c-ops-1),var(--c-ops-2)); }
.lc-stage-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.lc-stage-tag.prov { color: var(--c-prov-2); }
.lc-stage-tag.cd   { color: var(--c-cd-2); }
.lc-stage-tag.ops  { color: var(--brand-4); }
.lc-stage h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin: 4px 0 12px; color: #F4F7FC; }
.lc-stage p { font-size: 14px; line-height: 1.55; color: #AEB8CC; margin: 0 0 18px; }
.lc-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.lc-chip {
  font-size: 11.5px; font-weight: 600; padding: 5px 11px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: #C7D0E0;
}
.lc-guard {
  margin-top: 18px; padding-top: 16px; border-top: 1px dashed rgba(255,255,255,0.14);
  display: flex; align-items: center; gap: 9px; font-size: 12px; color: #94A2B8;
}
.lc-guard svg { color: var(--c-prov-2); flex-shrink: 0; }
.lc-guard b { color: #D6DEEC; font-weight: 600; }

/* ============================================================
   DIRECTION C — TABBED EXPLORER (single pane)
   ============================================================ */
.explorer { max-width: 1100px; margin: 0 auto; }
.exp-tabs { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 22px; }
.exp-tab {
  text-align: left; padding: 18px 20px; border-radius: var(--radius-lg);
  border: 1px solid var(--line-1); background: #fff; box-shadow: var(--shadow-sm);
  transition: border-color 160ms, box-shadow 200ms, transform 160ms; cursor: pointer;
}
.exp-tab:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.exp-tab-top { display: flex; align-items: center; gap: 11px; margin-bottom: 8px; }
.exp-tab-ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.exp-tab-ic.ops { background: linear-gradient(135deg,var(--c-ops-1),var(--c-ops-2)); }
.exp-tab-ic.cd  { background: linear-gradient(135deg,var(--c-cd-1),var(--c-cd-2)); }
.exp-tab-ic.prov{ background: linear-gradient(135deg,var(--c-prov-1),var(--c-prov-2)); }
.exp-tab-num { font-family: var(--font-mono); font-size: 11px; color: var(--ink-4); }
.exp-tab h3 { font-size: 16.5px; font-weight: 700; letter-spacing: -0.01em; margin: 0; }
.exp-tab p { font-size: 12.5px; color: var(--ink-3); margin: 0; line-height: 1.45; }
.exp-tab.is-active { border-color: transparent; box-shadow: 0 0 0 2px var(--c-ops-1), var(--shadow-md); }
.exp-tab.is-active[data-tab="cd"]   { box-shadow: 0 0 0 2px var(--c-cd-1), var(--shadow-md); }
.exp-tab.is-active[data-tab="prov"] { box-shadow: 0 0 0 2px var(--c-prov-1), var(--shadow-md); }

.exp-stage {
  border: 1px solid var(--line-1); border-radius: var(--radius-xl);
  background: #fff; box-shadow: var(--shadow-lg); overflow: hidden; min-height: 420px;
}
.exp-panel { display: none; }
.exp-panel.is-active { display: grid; grid-template-columns: 0.85fr 1.15fr; }
.exp-panel-copy { padding: 40px 36px; border-right: 1px solid var(--line-2); }
.exp-panel-copy .tcore-kicker { display: block; margin-bottom: 10px; }
.exp-panel-copy h3 { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 14px; line-height: 1.12; }
.exp-panel-copy p { font-size: 15px; line-height: 1.6; color: var(--ink-2); margin: 0 0 20px; }
.exp-feats { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 11px; }
.exp-feats li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-2); }
.exp-feats svg { flex-shrink: 0; margin-top: 3px; }
.exp-panel-visual { padding: 32px; background: var(--bg-tint); display: flex; align-items: center; }
.exp-screen {
  width: 100%; background: #fff; border: 1px solid var(--line-1);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden;
}
.exp-screen-head { display: flex; align-items: center; gap: 9px; padding: 11px 15px; border-bottom: 1px solid var(--line-2); background: var(--bg-tint); }
.exp-screen-head .cp-dots i { width: 9px; height: 9px; }
.exp-screen-head .mono { font-size: 11.5px; color: var(--ink-3); }
.exp-screen-body { padding: 18px 18px 20px; }

/* generic mock rows reused in explorer screens */
.mk-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line-3); font-size: 13px; color: var(--ink-2); }
.mk-row:last-child { border-bottom: 0; }
.mk-row .mono { font-size: 11px; color: var(--ink-4); flex-shrink: 0; }
.mk-row .tm-tag { margin-left: auto; }
.mk-title { font-size: 12px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.mk-bars { display: grid; gap: 11px; margin-top: 6px; }
.mk-bar-row { display: grid; grid-template-columns: 120px 1fr 44px; align-items: center; gap: 10px; font-size: 12.5px; color: var(--ink-2); }
.mk-bar-track { height: 8px; border-radius: 4px; background: var(--bg-sunken); overflow: hidden; }
.mk-bar-fill { display: block; height: 100%; border-radius: 4px; }
.mk-pipe { display: flex; align-items: center; gap: 0; margin: 4px 0 12px; }
.mk-pipe-step { flex: 1; text-align: center; font-size: 10.5px; font-weight: 600; color: var(--ink-3); position: relative; }
.mk-pipe-step .dot2 { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 5px; font-size: 11px; }
.mk-pipe-step.done .dot2 { background: var(--ok-soft); color: #047857; }
.mk-pipe-step.run .dot2 { background: var(--c-cd-soft); color: var(--c-cd-1); }
.mk-pipe-step.idle .dot2 { background: var(--bg-sunken); color: var(--ink-4); }
.mk-pipe-line { flex: 0 0 14px; height: 2px; background: var(--line-1); }

/* ============================================================
   SHARED — control-plane band ("3 → 1")
   ============================================================ */
.oneplane { padding: 84px 0; background: var(--bg-tint); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.op-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.op-copy h2 { font-size: clamp(28px,3.4vw,40px); font-weight: 800; letter-spacing: -0.022em; line-height: 1.1; margin: 16px 0 16px; text-wrap: balance; }
.op-copy h2 em { font-style: normal; background: linear-gradient(135deg,var(--brand-1),var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.op-copy p { font-size: 16.5px; color: var(--ink-2); line-height: 1.6; margin: 0 0 18px; }
.op-bullets { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.op-bullets li { display: flex; gap: 11px; font-size: 14.5px; color: var(--ink-2); }
.op-bullets svg { flex-shrink: 0; margin-top: 2px; color: var(--brand-1); }
.op-bullets b { color: var(--ink-1); }
.op-diagram {
  background: #fff; border: 1px solid var(--line-1); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); padding: 28px;
}
.op-three { display: grid; gap: 12px; }
.op-pillrow { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.op-pill {
  border-radius: var(--radius); padding: 16px 14px; text-align: center;
  border: 1px solid var(--line-1); background: var(--bg-tint);
}
.op-pill .ic { width: 36px; height: 36px; border-radius: 10px; margin: 0 auto 10px; display: grid; place-items: center; color: #fff; }
.op-pill .ic.ops { background: linear-gradient(135deg,var(--c-ops-1),var(--c-ops-2)); }
.op-pill .ic.cd { background: linear-gradient(135deg,var(--c-cd-1),var(--c-cd-2)); }
.op-pill .ic.prov { background: linear-gradient(135deg,var(--c-prov-1),var(--c-prov-2)); }
.op-pill h4 { font-size: 13.5px; font-weight: 700; margin: 0 0 2px; }
.op-pill span { font-size: 11px; color: var(--ink-4); }
.op-converge { display: flex; justify-content: center; padding: 6px 0; color: var(--ink-4); }
.op-plane {
  border-radius: var(--radius); padding: 18px; text-align: center; color: #fff;
  background: linear-gradient(120deg, var(--bg-dark) 0%, #16233e 100%);
}
.op-plane .mono { font-size: 11px; color: #8E9BB3; display: block; margin-bottom: 4px; letter-spacing: 0.05em; }
.op-plane b { font-size: 17px; font-weight: 700; }
.op-plane-row { display: flex; justify-content: center; gap: 20px; margin-top: 12px; font-size: 11px; color: #AEB8CC; }
.op-plane-row span { display: inline-flex; align-items: center; gap: 5px; }
.op-plane-row i { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); display: block; }

/* ============================================================
   GUARDRAILS callout (lives inside Provisioning core copy)
   ============================================================ */
.guard-note {
  display: flex; gap: 12px; padding: 14px 16px; border-radius: var(--radius);
  background: var(--c-prov-soft); border: 1px solid #BBE9D6; margin-top: 4px;
}
.guard-note svg { color: var(--c-prov-1); flex-shrink: 0; margin-top: 1px; }
.guard-note-h { font-size: 13px; font-weight: 700; color: #08643f; }
.guard-note-s { font-size: 12.5px; color: #15734f; line-height: 1.45; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .h3-a-grid { grid-template-columns: 1fr; gap: 40px; }
  .trinity { grid-template-columns: 1fr; }
  .lc-flow { grid-template-columns: 1fr; }
  .lc-rail { display: none; }
  .exp-tabs { grid-template-columns: 1fr; }
  .exp-panel.is-active { grid-template-columns: 1fr; }
  .exp-panel-copy { border-right: 0; border-bottom: 1px solid var(--line-2); }
  .op-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .op-pillrow { grid-template-columns: 1fr; }
  .h3-headline { font-size: 38px; }
}

/* ---- Brand logo image (nav + footer) ---- */
.nav-logo-img { height: 30px; width: auto; display: block; }
.nav .nav-logo-img { height: 36px; } /* header logo +20% */
.nav-logo-img-foot { height: 30px; }

/* ---- Mega-menu navigation ---- */
.nav-links { display: flex; align-items: center; gap: 8px; margin-left: 12px; }
.nav-item { position: relative; }
.nav-trigger, .nav-top {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  padding: 9px 14px; border-radius: 8px; cursor: pointer; white-space: nowrap;
  transition: color .15s ease, background .15s ease;
}
.nav-trigger:hover, .nav-top:hover,
.nav-item:focus-within .nav-trigger { color: var(--ink-1); }
/* Only the dropdown triggers get a hover/focus background pill — it signals an
   openable menu. Pricing is a direct link, so it gets a text-colour change only:
   no lingering "active tab" pill when you land on /pricing with the cursor still
   over it. It has no caret either, so drop the inter-child gap. */
.nav-trigger:hover, .nav-item:focus-within .nav-trigger { background: var(--bg-tint); }
.nav-top { gap: 0; }
.nav-trigger svg { transition: transform .2s ease; opacity: .65; }
.nav-item:hover .nav-trigger svg,
.nav-item:focus-within .nav-trigger svg { transform: rotate(180deg); }

.nav-mega {
  position: absolute; top: calc(100% + 9px); left: 0;
  background: #fff; border: 1px solid var(--line-1); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 18px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
  z-index: 60;
}
.nav-mega::before { content: ""; position: absolute; top: -11px; left: 0; right: 0; height: 11px; }
.nav-item:hover .nav-mega,
.nav-item:focus-within .nav-mega { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-mega-platforms { display: grid; grid-template-columns: repeat(3, minmax(204px, 1fr)); gap: 8px 24px; width: max-content; }
.nav-mega-col { display: flex; flex-direction: column; }
.nav-mega-h {
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-4); padding: 8px 12px 7px;
}
.nav-mega-col.ops .nav-mega-h { color: var(--c-ops-1); }
.nav-mega-col.cd .nav-mega-h { color: var(--c-cd-1); }
.nav-mega-col.prov .nav-mega-h { color: var(--c-prov-1); }
.nav-mega a {
  display: block; padding: 10px 12px; border-radius: 10px;
  font-size: 14px; font-weight: 600; color: var(--ink-1); line-height: 1.3;
  transition: background .14s ease;
}
.nav-mega a span { display: block; font-size: 12px; font-weight: 400; color: var(--ink-3); margin-top: 3px; line-height: 1.4; }
.nav-mega a:hover { background: var(--bg-tint); }
.nav-mega-list { display: flex; flex-direction: column; gap: 2px; min-width: 268px; }

/* ---- Solutions mega: featured IDP pillar + persona column ---- */
.nav-mega-solutions { display: grid; grid-template-columns: 288px 264px; gap: 16px 26px; width: max-content; }
.nav-mega-solutions a.nav-mega-sol-feat {
  grid-column: 1; grid-row: 1; align-self: stretch;
  display: flex; flex-direction: column; padding: 20px; border-radius: 14px;
  background: linear-gradient(165deg, color-mix(in oklch, #4361EE 9%, #fff), var(--bg-tint));
  border: 1px solid var(--line-2);
}
.nav-mega-solutions a.nav-mega-sol-feat:hover {
  background: linear-gradient(165deg, color-mix(in oklch, #4361EE 15%, #fff), var(--bg-tint));
  border-color: color-mix(in oklch, #4361EE 35%, transparent);
}
.nav-mega-solutions .nav-mega-sol-feat .nmsf-chip {
  width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center;
  color: #fff; background: linear-gradient(135deg, #4361EE, #5B8CFF); margin: 0 0 13px;
}
.nav-mega-solutions .nav-mega-sol-feat .nmsf-chip svg { width: 16px; height: 16px; }
.nav-mega-solutions .nav-mega-sol-feat .nmsf-k { font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-4); margin: 0; }
.nav-mega-solutions .nav-mega-sol-feat .nmsf-t { font-size: 15px; font-weight: 750; color: var(--ink-1); letter-spacing: -.01em; margin: 3px 0 0; }
.nav-mega-solutions .nav-mega-sol-feat .nmsf-d { font-size: 12.5px; font-weight: 400; line-height: 1.5; color: var(--ink-3); margin: 8px 0 0; }
.nav-mega-solutions .nav-mega-sol-feat .nmsf-link { font-size: 12.5px; font-weight: 700; color: #4361EE; margin-top: auto; padding-top: 14px; }

.nav-mega-solutions .nav-mega-sol-col { grid-column: 2; grid-row: 1; display: flex; flex-direction: column; }
.nav-mega-solutions .nav-mega-sol-col { gap: 3px; }
.nav-mega-solutions .nav-mega-sol-col a { display: flex; align-items: flex-start; gap: 12px; }
.nav-mega-solutions .nav-mega-sol-col a .nms-dot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; margin: 6px 0 0; background: var(--c, var(--ink-4)); }
.nav-mega-solutions .nav-mega-sol-col a .nms-main { flex: 1; font-size: 14px; font-weight: 600; color: var(--ink-1); margin: 0; }
.nav-mega-solutions .nav-mega-sol-col a .nms-main span { display: block; font-size: 12px; font-weight: 400; color: var(--ink-3); margin-top: 1px; }

/* ---- Mega menu polish: core chips + featured footer ---- */
/* NB: chip accent classes are prefixed (nmc-*) to avoid colliding with the
   section-level .ops/.cd/.prov rules (e.g. .ops adds 100px section padding). */
.nav-mega-platforms .nav-mega-col { background: transparent; padding: 0; }
.nav-mega-chip {
  width: 18px; height: 18px; border-radius: 5px;
  display: inline-grid; place-items: center; color: #fff;
  vertical-align: -4px; margin-right: 6px;
}
.nav-mega-chip svg { width: 11px; height: 11px; }
.nav-mega-chip.nmc-ops  { background: linear-gradient(135deg,var(--c-ops-1),var(--c-ops-2)); }
.nav-mega-chip.nmc-cd   { background: linear-gradient(135deg,var(--c-cd-1),var(--c-cd-2)); }
.nav-mega-chip.nmc-prov { background: linear-gradient(135deg,var(--c-prov-1),var(--c-prov-2)); }
.nav-mega-foot {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: 16px; padding: 16px 12px 4px;
  border-top: 1px solid var(--line-2);
}
.nav-mega-foot-lead { font-size: 12.5px; color: var(--ink-4); font-weight: 500; }
.nav-mega-foot a.nav-mega-foot-link {
  display: inline-flex; align-items: center;
  font-size: 12.5px; font-weight: 700; color: var(--c-prov-1);
  padding: 5px 0; margin: 0; border-radius: 0;
}
.nav-mega-foot a.nav-mega-foot-link:hover { background: transparent; text-decoration: underline; }

@media (max-width: 1040px) { .nav-links { display: none; } }

/* ---- Tour tabs: 4 columns on this page ---- */
.tour-tabs { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 760px) { .tour-tabs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .tour-tabs { grid-template-columns: 1fr; } }

/* ---- Comparison: 4 columns (ported from v2) ---- */
.vs-grid-v2 { grid-template-columns: repeat(4, 1fr); }
.vs-grid-v2 .vs-col { padding: 24px; }
.vs-grid-v2 .vs-col h3 { font-size: 17px; line-height: 1.25; }
.vs-grid-v2 .vs-list { font-size: 13px; }
.vs-grid-v2 .vs-list li { padding: 6px 0; }
.vs-grid-v2 .vs-col-foot { font-size: 12px; padding: 10px 12px; }
@media (max-width: 980px) { .vs-grid-v2 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .vs-grid-v2 { grid-template-columns: 1fr; } }
