/* DTB v2, Mercury-grade: warm, soft, dimensional. Our own voice.
   Craft = warm bone ground, characterful type, diffuse depth, restraint. */
@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@500&display=swap');

:root {
  --bone: #F6F5EF;        /* warm ground, never pure white */
  --bone-2: #EFEEE6;      /* soft card ground */
  --white: #FFFFFF;
  --ink: #1B1B16;         /* warm near-black */
  --body: #59574E;        /* warm gray text */
  --faint: #93907F;       /* labels */
  --accent: #5A54F0;      /* indigo, used sparingly */
  --accent-soft: #ECEBFF;
  --good: #1E9E6A; --good-bg: rgba(30,158,106,0.11);
  --bad:  #D9534A; --bad-bg:  rgba(217,83,74,0.11);
  --line: rgba(27,27,22,0.10);
  --line-soft: rgba(27,27,22,0.055);

  --shadow: 0 1px 2px rgba(28,24,14,0.05), 0 2px 6px rgba(28,24,14,0.04),
            0 44px 90px -34px rgba(34,28,16,0.24);
  --shadow-pill: 0 2px 4px rgba(28,24,14,0.06), 0 14px 34px -10px rgba(34,28,16,0.22);

  --maxw: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-synthesis: none;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Schibsted Grotesk', system-ui, sans-serif;
  background: var(--bone); color: var(--body);
  font-size: 17px; line-height: 1.6; letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: 'Schibsted Grotesk', sans-serif; color: var(--ink); font-weight: 500; letter-spacing: -0.028em; line-height: 1.06; }
.mono { font-family: 'JetBrains Mono', monospace; letter-spacing: 0; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: clamp(22px, 5vw, 44px); }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px clamp(22px, 5vw, 44px);
  transition: background .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(246,245,239,0.8); backdrop-filter: blur(18px) saturate(180%); border-bottom-color: var(--line-soft); }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Schibsted Grotesk'; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; font-size: 16.5px; }
.brand__mark { width: 17px; height: 17px; border-radius: 6px; background: radial-gradient(120% 120% at 30% 25%, #8B85FF, #5A54F0 60%, #4A43D8); box-shadow: 0 2px 9px rgba(90,84,240,0.4); }
.nav__links { display: flex; gap: 30px; font-size: 15px; font-weight: 500; color: var(--body); }
.nav__links a { transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
@media (max-width: 820px) { .nav__links { display: none; } }

.btn { display: inline-flex; align-items: center; justify-content: center; font-family: 'Schibsted Grotesk'; font-weight: 600; font-size: 15px; padding: 12px 20px; border-radius: 12px; border: 1px solid transparent; transition: all .22s var(--ease); cursor: pointer; white-space: nowrap; letter-spacing: -0.01em; }
.btn--sm { padding: 9px 16px; font-size: 14.5px; border-radius: 10px; }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 1px 2px rgba(74,67,216,0.4), 0 8px 20px -8px rgba(90,84,240,0.5); }
.btn--accent:hover { background: #4a43d8; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: rgba(27,27,22,0.24); background: rgba(27,27,22,0.03); }

/* ---------- hero v4 (Mintlify-vibe: serif headline, line-art corners, cropped console panel) ---------- */
.hero3 { position: relative; min-height: max(740px, 96vh); overflow: hidden; padding: 168px 0 0;
  background: linear-gradient(180deg, #FDFDFB 0%, #FBFAF5 72%, var(--bone) 100%); }
.hero3::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 220px; z-index: 2;
  background: linear-gradient(180deg, transparent, var(--bone) 82%); pointer-events: none; }
.hero3__lines { position: absolute; z-index: 0; pointer-events: none; }
.hero3__lines--tr { top: -4%; right: -6%; width: 62%; height: 80%;
  -webkit-mask-image: linear-gradient(215deg, #000 48%, transparent 88%);
  mask-image: linear-gradient(215deg, #000 48%, transparent 88%); }
.hero3__lines--bl { bottom: -9%; left: -9%; width: 58%; height: 70%;
  -webkit-mask-image: linear-gradient(35deg, #000 52%, transparent 90%);
  mask-image: linear-gradient(35deg, #000 52%, transparent 90%); }
.hero3__inner { position: relative; z-index: 3; left: -56px; }
@media (max-width: 1100px) { .hero3__inner { left: 0; } }
.chip { display: inline-flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--line);
  border-radius: 9px; padding: 7px 13px; font-size: 13.5px; font-weight: 500; color: var(--ink);
  box-shadow: 0 1px 2px rgba(28,24,14,0.04); transition: border-color .2s; }
.chip:hover { border-color: rgba(27,27,22,0.22); }
.chip b { font-family: 'JetBrains Mono', monospace; font-weight: 500; color: var(--good); background: var(--good-bg);
  padding: 2px 8px; border-radius: 6px; font-size: 12px; }
.chip__arr { color: var(--faint); font-size: 15px; line-height: 1; }
.hero3__title { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 600; font-size: clamp(43px, 5.6vw, 78px);
  line-height: 1.04; letter-spacing: -0.035em; color: var(--ink); margin-top: 28px; }
.hero3__sub { font-size: clamp(17px, 1.55vw, 20.5px); color: var(--body); max-width: 38ch; margin-top: 24px; }
.hero3__sub b { color: var(--ink); font-weight: 600; }
.hero3__cta { display: flex; align-items: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.btn--ghost2 { background: var(--white); color: var(--ink); border-color: var(--line); }
.btn--ghost2:hover { border-color: rgba(27,27,22,0.24); }
.hero3__panel { position: absolute; z-index: 1; top: clamp(340px, 34vh, 440px); left: 46%;
  width: clamp(760px, 64vw, 1240px); }
.hero3__panel .browser { margin-top: 0; box-shadow: 0 2px 6px rgba(28,24,14,0.05), 0 40px 90px -24px rgba(34,28,16,0.28); }
@media (max-width: 940px) {
  .hero3 { min-height: 0; padding-bottom: 56px; }
  .hero3__panel { position: static; width: 100%; margin-top: 48px; padding-inline: clamp(22px, 5vw, 44px); }
}

.btn--pill { border-radius: 100px; padding: 13px 24px; }
.link-arrow { font-weight: 600; font-size: 15.5px; color: var(--accent); letter-spacing: -0.01em; transition: opacity .2s; }
.link-arrow:hover { opacity: 0.75; }

.minicard { background: var(--white); border: 1px solid var(--line-soft); border-radius: 16px; padding: 18px 20px;
  box-shadow: var(--shadow); }
.minicard__label { font-size: 12.5px; font-weight: 600; color: var(--faint); letter-spacing: 0.02em; }
.minicard__num { font-family: 'Schibsted Grotesk'; font-size: 40px; font-weight: 600; letter-spacing: -0.03em; color: var(--ink); line-height: 1.1; }
.minicard__num span { font-size: 0.55em; color: var(--faint); font-weight: 500; }
.minicard__cap { font-size: 11.5px; color: var(--faint); margin-top: 2px; }
.minibars { display: flex; align-items: flex-end; gap: 5px; height: 54px; margin: 10px 0 8px; }
.minibars i { flex: 1; height: var(--h); border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, var(--accent), #8b85ff); opacity: 0.85; }
.minibars i:nth-child(7), .minibars i:nth-child(8) { background: linear-gradient(180deg, #FF8A7A, #E5484D); }
.feedchip { display: inline-flex; align-items: center; gap: 9px; background: var(--white); border: 1px solid var(--line-soft);
  border-radius: 100px; padding: 9px 16px; font-size: 12px; color: var(--body); box-shadow: var(--shadow-pill); }

.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 0 rgba(30,158,106,0.5); animation: pulse 2.6s var(--ease) infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(30,158,106,0.4); } 70%,100% { box-shadow: 0 0 0 8px rgba(30,158,106,0); } }
.tag { font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: 100px; white-space: nowrap; }
.tag--ok { color: var(--good); background: var(--good-bg); }
.tag--block { color: var(--bad); background: var(--bad-bg); }
.tag:not(.tag--ok):not(.tag--block) { color: var(--body); background: rgba(27,27,22,0.07); }

/* legacy hero classes still used by the closing CTA section */
.hero__cta { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }

/* section eyebrows */
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 500; color: var(--body); background: var(--white); border: 1px solid var(--line); border-radius: 100px; padding: 7px 15px 7px 12px; box-shadow: 0 1px 2px rgba(28,24,14,0.05); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }

/* ---------- browser-framed console (lives in the hero panel) ---------- */
.browser { margin-top: 44px; background: var(--white); border: 1px solid var(--line-soft);
  border-radius: 18px; box-shadow: var(--shadow); overflow: hidden; }
.browser__bar { display: flex; align-items: center; gap: 14px; padding: 11px 16px;
  border-bottom: 1px solid var(--line-soft); background: #FBFAF6; }
.bdots { display: flex; gap: 6px; }
.bdots i { width: 11px; height: 11px; border-radius: 50%; background: rgba(27,27,22,0.12); }
.bdots i:nth-child(1) { background: #F0AFA8; } .bdots i:nth-child(2) { background: #F2D8A4; } .bdots i:nth-child(3) { background: #B5DCC0; }
.btab { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--ink);
  background: var(--white); border: 1px solid var(--line-soft); border-radius: 8px; padding: 5px 12px; }
.brand__mark--sm { width: 12px; height: 12px; border-radius: 4px; }
.burl { margin-left: auto; display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; color: var(--faint); background: rgba(27,27,22,0.04); border-radius: 100px; padding: 5px 13px; }
.burl svg { opacity: 0.65; flex-shrink: 0; }

.browser__body { display: grid; grid-template-columns: 196px 1fr 234px; min-height: 452px; }

/* sidebar */
.browser__nav { border-right: 1px solid var(--line-soft); padding: 12px 10px; display: flex; flex-direction: column; gap: 1px; background: #FCFBF8; }
.bnav__group { font-size: 10px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: #B7B3A2; padding: 13px 10px 5px; }
.bnav__group:first-child { padding-top: 3px; }
.bnav__item { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 500; color: var(--body); padding: 7px 10px; border-radius: 8px; }
.bnav__item svg { width: 15px; height: 15px; color: #A7A392; flex-shrink: 0; }
.bnav__item.is-active { background: var(--white); color: var(--ink); font-weight: 600; border: 1px solid var(--line-soft); padding: 6px 9px; box-shadow: 0 1px 2px rgba(27,27,22,0.04); }
.bnav__item.is-active svg { color: var(--accent); }
.bnav__badge { margin-left: auto; font-size: 10px; font-weight: 700; background: rgba(255,184,77,0.22); color: #B27B1E; border-radius: 6px; padding: 1px 6px; }
.bnav__count { margin-left: auto; font-size: 11px; color: #B7B3A2; font-family: 'JetBrains Mono', monospace; }

/* main / stream */
.browser__main { padding: 15px 18px; min-width: 0; display: flex; flex-direction: column; }
.bmain__toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 11px; }
.bmain__live { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--ink); }
.bmain__stats { font-size: 11.5px; color: var(--faint); }
.bmain__stats b { color: var(--body); font-weight: 600; }
.bmain__stats .c-blk { color: var(--bad); }
.bstream__head, .brow { display: grid; grid-template-columns: 1fr 60px 146px 50px; gap: 10px; align-items: center; }
.bstream__head { font-size: 9.5px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: #B7B3A2;
  padding: 0 2px 8px; border-bottom: 1px solid var(--line-soft); }
.bstream__head span:nth-child(2), .bstream__head span:nth-child(4) { text-align: right; }
.bstream { display: flex; flex-direction: column; }
.brow { padding: 9px 2px; border-bottom: 1px solid var(--line-soft); }
.brow:last-child { border-bottom: none; }
.brow__m { min-width: 0; }
.brow__m b { display: block; font-weight: 600; color: var(--ink); font-size: 12.5px; letter-spacing: -0.01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brow__m span { display: block; font-size: 10px; color: var(--faint); margin-top: 1px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brow__amt { font-size: 12px; color: var(--ink); text-align: right; }
.brow__t { font-size: 10px; color: #B7B3A2; text-align: right; }
.brow--new { animation: browIn .5s var(--ease); }
@keyframes browIn { from { opacity: 0; transform: translateY(-7px); } }
.brow .tag { justify-self: start; display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; padding: 3px 9px 3px 8px; border-radius: 7px; white-space: nowrap; }
.brow .tag::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

/* right rail cards */
.browser__side { border-left: 1px solid var(--line-soft); padding: 15px; display: flex; flex-direction: column; gap: 12px; background: #FCFBF8; }
.scard { background: var(--white); border: 1px solid var(--line-soft); border-radius: 12px; padding: 14px 15px; }
.scard__top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.scard__label { font-size: 11.5px; font-weight: 600; color: var(--faint); }
.scard__delta { font-size: 10.5px; font-weight: 600; color: var(--bad); }
.scard__num { font-family: 'Schibsted Grotesk'; font-size: 30px; font-weight: 600; letter-spacing: -0.03em; color: var(--ink); line-height: 1; margin-top: 7px; }
.scard__num span { font-size: 0.5em; color: var(--faint); font-weight: 500; margin-left: 1px; }
.spark { width: 100%; height: 40px; margin-top: 9px; display: block; overflow: visible; }
.scard__foot { font-size: 10px; color: #B7B3A2; margin-top: 9px; line-height: 1.45; }
.scard--alert .scard__alert-t { font-size: 13px; font-weight: 600; color: var(--ink); margin-top: 9px; }
.scard--alert .scard__alert-s { font-size: 10.5px; color: var(--body); margin-top: 3px; }
.uitag { font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 100px; }
.uitag--amber { color: #B27B1E; background: rgba(255,184,77,0.2); }

@media (max-width: 980px) { .browser__body { grid-template-columns: 196px 1fr; } .browser__side { display: none; } }
@media (max-width: 720px) { .browser__body { grid-template-columns: 1fr; } .browser__nav { display: none; } }

/* ---------- built (engineering trust: two-tone head, line-wave, stat row) ---------- */
.built { padding: clamp(80px,11vw,150px) 0; }
.built__frame { border-top: 1px solid var(--line); padding-top: clamp(36px,5vw,56px); }
.built__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; }
.built__title { font-size: clamp(25px,3vw,39px); font-weight: 500; letter-spacing: -0.028em; line-height: 1.18; max-width: 36ch; }
.built__title span { color: #A3A092; }
.btn--ink { background: var(--ink); color: #fff; box-shadow: 0 1px 2px rgba(27,27,22,0.3), 0 6px 16px -6px rgba(27,27,22,0.4); }
.btn--ink:hover { background: #2e2e26; transform: translateY(-1px); }
.built__head .btn { flex-shrink: 0; margin-top: 8px; }
@media (max-width: 760px) { .built__head { flex-direction: column; } }
.built__wave { margin: clamp(10px,2vw,24px) 0 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%); }
.built__wave svg { display: block; width: 100%; height: clamp(180px, 26vw, 320px); }
.built__stats { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line-soft); margin-top: clamp(24px,3.5vw,44px); }
.bstat { padding: clamp(24px,3.5vw,40px) clamp(20px,3vw,40px) 8px; border-left: 1px solid var(--line-soft); }
.bstat:first-child { border-left: none; padding-left: 0; }
.bstat__icon { width: 19px; height: 19px; color: var(--faint); }
.bstat__num { font-family: 'Schibsted Grotesk'; font-size: clamp(40px,4.6vw,64px); font-weight: 500;
  letter-spacing: -0.035em; color: var(--ink); line-height: 1.05; margin-top: clamp(20px,3vw,36px); }
.bstat__cap { margin-top: 10px; font-size: 15px; color: var(--body); max-width: 26ch; }
@media (max-width: 760px) {
  .built__stats { grid-template-columns: 1fr; }
  .bstat { border-left: none; border-top: 1px solid var(--line-soft); padding-left: 0; }
  .bstat:first-child { border-top: none; }
}

/* ---------- ramp (Stripe-style adoption rail) ---------- */
.ramp { padding: clamp(80px,11vw,140px) 0 clamp(40px,6vw,70px); overflow: hidden; }
.ramp__title { font-size: clamp(30px,4vw,48px); margin-top: 22px; }
.ramp__axis { margin-top: 44px; }
.ramp__track { height: 3px; background: rgba(27,27,22,0.08); border-radius: 2px; overflow: hidden; }
.ramp__track i { display: block; height: 100%; width: 25%; border-radius: 2px;
  background: linear-gradient(90deg, #7cc5e8, var(--accent) 65%, #8b85ff);
  transition: width .25s var(--ease); }
.ramp__labels { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 16px; }
.ramp__label { background: none; border: 0; padding: 0; cursor: pointer; text-align: left;
  display: flex; flex-direction: column; gap: 2px; font-family: inherit; }
.ramp__label b { font-size: 15px; font-weight: 600; color: var(--faint); letter-spacing: -0.01em; transition: color .2s; }
.ramp__label span { font-size: 12.5px; color: var(--faint); opacity: 0.75; }
.ramp__label.is-active b { color: var(--ink); }
@media (max-width: 640px) { .ramp__label span { display: none; } .ramp__label b { font-size: 13px; } }

.ramp__rail { --railpad: max(calc((100vw - var(--maxw)) / 2 + clamp(22px, 5vw, 44px)), 22px);
  display: flex; gap: 18px; margin-top: 34px;
  overflow-x: auto; scroll-snap-type: x mandatory; cursor: grab;
  padding: 10px var(--railpad) 26px;
  scroll-padding-left: var(--railpad);
  scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.ramp__rail::-webkit-scrollbar { display: none; }
.ramp__rail.dragging { cursor: grabbing; scroll-snap-type: none; }
.rampcard { flex: 0 0 min(430px, 84vw); scroll-snap-align: start;
  background: var(--white); border: 1px solid var(--line-soft); border-radius: 20px;
  padding: 26px 26px 22px; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.rampcard__tag { align-self: flex-start; font-size: 12px; font-weight: 600; padding: 5px 12px;
  border-radius: 100px; color: var(--body); background: rgba(27,27,22,0.06); }
.rampcard__tag--green { color: var(--good); background: var(--good-bg); }
.rampcard__tag--indigo { color: var(--accent); background: var(--accent-soft); }
.rampcard__tag--amber { color: #B27B1E; background: rgba(255,184,77,0.16); }
.rampcard h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; margin-top: 16px; }
.rampcard p { font-size: 14.5px; color: var(--body); line-height: 1.6; margin-top: 10px; }
.rampcard .link-arrow { font-size: 14.5px; margin-top: 12px; }
.rampcard__ui { margin-top: 20px; background: #F1F0E9; border-radius: 14px; padding: 16px 18px; min-height: 148px; }
.rampcard__ui-title { font-size: 11.5px; font-weight: 600; color: var(--faint); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 10px; }
.uirow { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 7px 0; border-bottom: 1px solid rgba(27,27,22,0.06); font-size: 13px; color: var(--body); }
.uirow:last-child { border-bottom: none; }
.uirow b { font-weight: 600; color: var(--ink); font-size: 12.5px; white-space: nowrap; }
.uirow .mono { font-size: 12px; }
.uitag { font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 100px; }
.uitag--ok { color: var(--good); background: var(--good-bg); }
.uitag--bad { color: var(--bad); background: var(--bad-bg); }
.uitag--amber { color: #B27B1E; background: rgba(255,184,77,0.2); }
.rampcard__ui--code { display: flex; flex-direction: column; gap: 9px; justify-content: center;
  background: #17181F; font-size: 12.5px; line-height: 1.3; color: #D8DAE6; }
.code-cm { color: #6C7086; } .code-dim { color: #6C7086; }
.code-ok { color: #4ADE9C; } .code-kw { color: #C792EA; } .code-fn { color: #82AAFF; }

/* rebuilt mini-mockups (findings report, batch job, review queue) */
.uicard { display: flex; flex-direction: column; }
.uicard__head { display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding-bottom: 10px; margin-bottom: 11px; border-bottom: 1px solid rgba(27,27,22,0.08); }
.uicard__title { font-size: 12px; font-weight: 600; color: var(--ink); }
.uicard__meta { font-size: 10px; color: var(--faint); letter-spacing: 0.05em; }
.uicard__rows { display: flex; flex-direction: column; gap: 11px; }
.uirow2 { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.uirow2 > span:first-child { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.uirow2 b { font-size: 12.5px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.uirow2 em { font-style: normal; font-size: 10.5px; color: var(--faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.uirow2 > .mono { font-size: 12px; color: var(--body); font-weight: 500; flex-shrink: 0; }
.uicard__foot { display: flex; align-items: center; justify-content: space-between; gap: 8px;
  margin-top: 12px; padding-top: 11px; border-top: 1px solid rgba(27,27,22,0.08); font-size: 12px; color: var(--body); }
.uicard__foot b { color: var(--ink); font-weight: 700; }
.uicard__proj { font-size: 10.5px; color: var(--faint); flex-shrink: 0; }
.uicard__prog { height: 5px; border-radius: 3px; background: rgba(27,27,22,0.09); overflow: hidden; }
.uicard__prog span { display: block; height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--accent), #8b85ff); }
.uicard__progmeta { display: flex; justify-content: space-between; font-size: 10.5px; color: var(--faint); margin: 7px 0 13px; }
.uicard__progmeta .c-flag { color: var(--bad); font-weight: 600; }

/* ---------- cta (light) ---------- */
.cta { position: relative; text-align: center; padding: clamp(90px,13vw,170px) 0; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(56% 62% at 50% 8%, rgba(120,110,255,0.15), transparent 62%); }
.cta .container { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(34px,5vw,60px); max-width: 16ch; margin: 0 auto; }
.cta .sub { margin: 20px auto 0; max-width: 52ch; color: var(--body); font-size: 18px; }
.cta .hero__cta { justify-content: center; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line-soft); padding: 40px 0; }
.footer__inner { display: flex; flex-direction: column; gap: 15px; }
.footer__row { display: flex; align-items: center; gap: 10px; }
.footer__name { font-family: 'Schibsted Grotesk'; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; }
.footer__note { font-size: 12.5px; color: var(--faint); max-width: 74ch; line-height: 1.6; }
.footer__contact { font-size: 13px; color: var(--body); }

/* ---------- pulse (full-bleed stat carousel, line-art wave) ---------- */
.pulse { position: relative; min-height: 100vh; min-height: 100svh; display: grid; place-items: center;
  overflow: hidden; padding: clamp(90px,12vw,150px) 0;
  background: linear-gradient(180deg, var(--bone) 0%, #FAF9F2 52%, var(--bone) 100%); }
.pulse__wave { position: absolute; z-index: 0; pointer-events: none; left: 0; bottom: 3%;
  width: 100%; height: clamp(170px, 30vh, 300px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%); }
.pulse__wave--top { bottom: auto; top: 1%; height: clamp(130px, 22vh, 230px); }
.pulse__inner { position: relative; z-index: 1; text-align: center; }
.pulse__slides { display: grid; }
.pulse__slide { grid-area: 1 / 1; opacity: 0; transform: translateY(18px); pointer-events: none;
  transition: opacity 1s var(--ease), transform 1s var(--ease); }
.pulse__slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
.pulse__num { font-family: 'Schibsted Grotesk'; font-weight: 600; letter-spacing: -0.04em;
  font-size: clamp(76px, 12.5vw, 168px); line-height: 1;
  background: linear-gradient(105deg, #FF8A7A 8%, #B07BD6 55%, #5A54F0 95%);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.pulse__cap { margin-top: 20px; font-size: clamp(17px, 1.8vw, 22px); color: #45433B; font-weight: 500; }
.pulse__cap b { color: var(--ink); font-weight: 650; }
.pulse__dots { display: flex; justify-content: center; gap: 9px; margin-top: clamp(56px, 9vh, 110px); }
.pulse__dots button { width: 26px; height: 3px; border: 0; border-radius: 2px; cursor: pointer;
  background: rgba(27,27,22,0.3); padding: 0; transition: all .3s var(--ease); }
.pulse__dots button.is-active { width: 42px; background: var(--ink); }

/* ---------- world / offshore globe (soft, ethereal) ---------- */
.world { padding: clamp(80px,11vw,140px) 0; }
.world__grid { display: grid; grid-template-columns: 1fr 0.92fr; gap: clamp(40px,6vw,80px); align-items: center; }
@media (max-width: 900px) { .world__grid { grid-template-columns: 1fr; gap: 44px; } .world__viz { order: -1; } }
.world h2 { font-size: clamp(30px,4vw,48px); max-width: 14ch; margin-top: 22px; }
.world .sub { margin-top: 16px; color: var(--body); max-width: 46ch; font-size: 18px; }
.world .stat2 { margin-top: 26px; display: inline-flex; align-items: baseline; gap: 11px; }
.world .stat2 b { font-family: 'Schibsted Grotesk'; font-size: 26px; font-weight: 600; color: var(--accent); letter-spacing: -0.02em; }
.world .stat2 span { font-size: 14px; color: var(--body); }

.worldglobe { position: relative; aspect-ratio: 1; width: 100%; max-width: 460px; margin: 0 auto; }
.worldglobe::before { content: ""; position: absolute; inset: 4%; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, rgba(120,110,255,0.12), rgba(246,245,239,0) 62%); filter: blur(26px);
  animation: haloBreathe 7.5s var(--ease) infinite alternate; }
.worldglobe::after { content: ""; position: absolute; inset: -10%; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, rgba(30,30,26,0.05), transparent 60%); filter: blur(34px); }
@keyframes haloBreathe { to { transform: scale(1.07); opacity: 0.82; } }
.worldglobe svg { position: relative; z-index: 1; width: 100%; height: 100%; overflow: visible; }
.wg-line { fill: none; stroke: rgba(27,27,22,0.15); stroke-width: 1; }
.wg-rim { fill: none; stroke: rgba(27,27,22,0.26); stroke-width: 1.2; }
.wg-orbit { transform-origin: 200px 200px; animation: spin 26s linear infinite; }
.wg-orbit--2 { animation-duration: 34s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.wg-dot { fill: #B9B5FF; }
.wg-origin { fill: var(--accent); }
.wg-dest { fill: #FF8A7A; }
.wg-arc { fill: none; stroke: rgba(217,83,74,0.55); stroke-width: 1.4; stroke-linecap: round;
  stroke-dasharray: 5 240; animation: flow 3.2s linear infinite; }
.wg-arc--2 { animation-delay: 1.1s; } .wg-arc--3 { animation-delay: 2.1s; }
@keyframes flow { from { stroke-dashoffset: 245; } to { stroke-dashoffset: 0; } }

/* ---------- reveal ---------- */
[data-r] { opacity: 0; transform: translateY(16px); animation: rise .95s var(--ease) forwards; }
[data-r="1"]{animation-delay:.04s} [data-r="2"]{animation-delay:.12s} [data-r="3"]{animation-delay:.20s}
[data-r="4"]{animation-delay:.28s} [data-r="5"]{animation-delay:.38s} [data-r="6"]{animation-delay:.48s}
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  [data-r],.pulse-dot { animation: none !important; opacity: 1; transform: none; }
  .pulse__slide { transition: none; }
  .worldglobe::before,.wg-orbit,.wg-arc { animation: none; }
}
