:root {
  color-scheme: dark;
  --ink: #03080d;
  --ink-soft: #07111a;
  --panel: #091722;
  --line: rgba(156, 196, 227, 0.2);
  --line-strong: rgba(181, 216, 243, 0.42);
  --ice: #8cbdf2;
  --ice-bright: #b9dcff;
  --white: #f5f8fb;
  --muted: #aab5c0;
  --paper: #f4f7fa;
  --paper-ink: #0c1218;
  --danger: #ffb4b4;
  --success: #b9f0d5;
  --max: 1600px;
  --pad: clamp(24px, 4.4vw, 76px);
  --section: clamp(88px, 10vw, 168px);
  --font-body: "DM Sans", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --font-editorial: "Instrument Serif", Georgia, serif;
  font-family: var(--font-body);
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--ink); }

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 2%, rgba(50, 124, 180, 0.16), transparent 31rem),
    var(--ink);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.16;
  background-image: radial-gradient(rgba(198, 228, 255, 0.55) 0.55px, transparent 0.55px);
  background-size: 31px 31px;
  mask-image: linear-gradient(to bottom, black, transparent 58%);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 2px solid var(--ice-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}

.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.site-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid transparent;
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  min-height: 104px;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 15px;
  line-height: 1;
}

.brand img { width: 52px; height: 44px; }
.brand-copy { display: grid; gap: 8px; }
.brand-name { font-size: 20px; letter-spacing: 0.25em; font-weight: 500; white-space: nowrap; }
.brand-tag { font-size: 8px; letter-spacing: 0.43em; color: #b6c1cb; white-space: nowrap; }

.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(24px, 3vw, 50px); }
.desktop-nav a { position: relative; color: #d8dde2; font-size: 13px; white-space: nowrap; }
.desktop-nav a::after {
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  content: "";
  transform: translateX(-50%) scale(0);
  border-radius: 50%;
  background: var(--ice-bright);
  box-shadow: 0 0 12px var(--ice);
  transition: transform 160ms ease;
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { transform: translateX(-50%) scale(1); }

.header-cta { justify-self: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  gap: 14px;
  padding: 0 26px;
  border: 1px solid rgba(232, 242, 250, 0.68);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.button:hover { border-color: var(--ice); box-shadow: 0 0 24px rgba(94, 173, 234, 0.18); }
.button-primary { border-color: var(--white); background: var(--white); color: #07101a; }
.button-primary:hover { border-color: var(--ice-bright); background: var(--ice-bright); box-shadow: 0 0 32px rgba(114, 186, 240, 0.28); }
.button[disabled] { opacity: 0.6; cursor: wait; }
.text-link { display: inline-flex; align-items: center; gap: 11px; color: var(--ice-bright); font-weight: 600; }
.text-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; }

.mobile-menu { display: none; justify-self: end; position: relative; }
.mobile-menu summary { list-style: none; cursor: pointer; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu nav {
  position: absolute;
  right: 0;
  top: 38px;
  display: grid;
  width: min(310px, calc(100vw - 40px));
  padding: 18px;
  border: 1px solid var(--line-strong);
  background: rgba(3, 8, 13, 0.98);
  box-shadow: 0 18px 50px rgba(0,0,0,.5);
}
.mobile-menu nav a { padding: 12px; border-bottom: 1px solid var(--line); }
.mobile-menu nav a:last-child { border-bottom: 0; color: var(--ice-bright); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 24px;
  color: #a9bdd0;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before { width: 30px; height: 1px; content: ""; background: var(--ice-bright); }
.eyebrow.no-line::before { display: none; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.07; font-weight: 470; letter-spacing: -0.035em; }
h1 { max-width: 850px; margin-bottom: 30px; font-size: clamp(52px, 5.2vw, 88px); }
h2 { margin-bottom: 28px; font-size: clamp(38px, 4vw, 66px); }
h3 { margin-bottom: 14px; font-size: clamp(23px, 2vw, 31px); }
.accent { color: var(--ice); }
.lead { max-width: 650px; color: #d3d9df; font-size: clamp(18px, 1.55vw, 24px); line-height: 1.55; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.micro { font-family: var(--font-body); font-size: 9px; font-weight: 600; letter-spacing: .23em; text-transform: uppercase; }

.hero {
  position: relative;
  min-height: min(800px, calc(100vh - 104px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-inner { position: relative; z-index: 2; display: flex; align-items: center; min-height: inherit; padding-block: 92px 112px; }
.hero-copy { position: relative; z-index: 3; width: min(56%, 820px); }
.home-line { white-space: nowrap; }
.hero-kicker { margin-bottom: 24px; color: #b7c0c8; font-family: var(--font-body); font-size: 9px; font-weight: 600; letter-spacing: .27em; text-transform: uppercase; }
.hero-kicker span { margin-inline: 11px; color: var(--ice); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; }
.hero-art {
  position: absolute;
  z-index: 1;
  right: -7%;
  bottom: -5%;
  width: min(78vw, 1240px);
  height: auto;
  opacity: 0.92;
  mask-image: linear-gradient(to right, transparent 0, rgba(0,0,0,.7) 22%, black 56%, rgba(0,0,0,.85) 82%, transparent 100%);
}
.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, var(--ink) 3%, rgba(3,8,13,.94) 29%, rgba(3,8,13,.35) 60%, rgba(3,8,13,.05) 78%, var(--ink) 100%);
}
.hero-side-note { position: absolute; z-index: 3; right: var(--pad); top: 58px; width: 170px; color: #b9c8d4; line-height: 1.75; }
.hero-index { position: absolute; z-index: 3; right: var(--pad); bottom: 44px; display: flex; align-items: center; gap: 12px; color: #8fa2b3; }
.hero-index strong { color: var(--white); font-weight: 500; }
.hero-index-line { width: 1px; height: 72px; background: linear-gradient(var(--ice-bright), transparent); }
.brand-motto {
  position: absolute;
  z-index: 3;
  top: 48px;
  right: var(--pad);
  width: 260px;
}
.brand-motto img { width: 100%; height: auto; max-height: 114px; aspect-ratio: 2.3; object-fit: cover; border-radius: 999px; opacity: .86; mask-image: linear-gradient(90deg, transparent, black 18%, black 84%, transparent); }
.brand-motto p { margin: 15px 18px 0; color: #98acbe; font-family: var(--font-body); font-size: 9px; font-weight: 500; letter-spacing: .2em; line-height: 1.65; text-transform: uppercase; }
.brand-motto strong { display: block; color: #e4f2ff; font-weight: 500; }
.brand-motto-compact { top: auto; bottom: 38px; }
.eyebrow-with-image { gap: 14px; }
.eyebrow-with-image img { width: 64px; height: 30px; border-radius: 999px; object-fit: cover; opacity: .9; }

.page-hero { min-height: 610px; }
.page-hero .hero-art { right: -4%; bottom: -18%; width: min(76vw, 1180px); opacity: .78; }
.page-hero .hero-copy { width: min(62%, 940px); }
.page-hero h1 { max-width: 950px; }

.capability-rail {
  position: relative;
  z-index: 4;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 8, 13, .78);
}

.capability-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.capability-tile {
  position: relative;
  display: grid;
  min-height: 196px;
  align-content: center;
  justify-items: center;
  padding: 26px 16px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.capability-tile:last-child { border-right: 0; }
.capability-tile::before { position: absolute; top: 0; left: 50%; width: 0; height: 1px; content: ""; background: var(--ice-bright); transition: width 160ms ease, left 160ms ease; }
.capability-tile:hover::before { left: 15%; width: 70%; }
.capability-icon { width: 42px; height: 42px; margin-bottom: 20px; fill: none; stroke: #cce4f9; stroke-width: 1.35; }
.capability-tile strong { font-family: var(--font-editorial); font-size: 23px; font-weight: 400; letter-spacing: -.01em; }
.capability-tile span { margin-top: 8px; color: #9fadb9; font-family: var(--font-body); font-size: 8px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }

.entry-section { position: relative; overflow: hidden; padding-block: clamp(66px, 7vw, 104px); border-bottom: 1px solid var(--line); background: #030a10; }
.entry-section::before,
.entry-section::after { position: absolute; width: min(760px, 68vw); aspect-ratio: 2.2; content: ""; pointer-events: none; border-top: 1px solid rgba(118, 216, 189, .2); border-radius: 50%; }
.entry-section::before { top: 28%; right: -15%; transform: rotate(-7deg); }
.entry-section::after { right: -4%; bottom: -64%; border-top-color: rgba(103, 170, 224, .17); transform: rotate(5deg); }
.entry-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(270px, .72fr) minmax(0, 1.28fr); gap: clamp(50px, 8vw, 132px); align-items: start; }
.entry-intro { max-width: 520px; }
.entry-intro h2 { margin: 24px 0; font-size: clamp(42px, 4.6vw, 68px); }
.entry-intro > p:last-child { max-width: 490px; color: var(--muted); font-size: 17px; }
.entry-routes { display: grid; border-top: 1px solid rgba(159, 211, 199, .26); }
.entry-route { position: relative; display: grid; grid-template-columns: minmax(190px, .72fr) minmax(250px, 1fr) 28px; gap: 30px; align-items: center; min-height: 128px; padding: 22px 8px; border-bottom: 1px solid rgba(159, 211, 199, .2); transition: padding 180ms ease, background 180ms ease; }
.entry-route::before { position: absolute; top: -1px; left: 0; width: 28%; height: 1px; content: ""; background: linear-gradient(90deg, #84bdf0, var(--pactum), transparent); opacity: 0; transition: width 180ms ease, opacity 180ms ease; }
.entry-route:hover { padding-inline: 18px; background: linear-gradient(90deg, rgba(103, 170, 224, .045), rgba(118, 216, 189, .065), transparent); }
.entry-route:hover::before { width: 74%; opacity: 1; }
.entry-route > span { font-family: var(--font-editorial); font-size: clamp(25px, 2.1vw, 33px); line-height: 1.08; }
.entry-route p { margin: 0; color: #a9b8b5; font-size: 14px; }
.entry-route svg { width: 23px; height: 23px; fill: none; stroke: #b8eee0; stroke-width: 1.5; transition: transform 180ms ease; }
.entry-route:hover svg { transform: translateX(5px); }

.section { padding-block: var(--section); border-bottom: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .65fr); gap: clamp(40px, 8vw, 150px); align-items: end; margin-bottom: clamp(60px, 7vw, 104px); }
.section-heading h2 { max-width: 850px; margin-bottom: 0; }
.section-heading p { max-width: 570px; margin-bottom: 8px; color: var(--muted); font-size: 18px; }

.paper-section { background: var(--paper); color: var(--paper-ink); }
.paper-section .eyebrow { color: #6689aa; }
.paper-section .eyebrow::before { background: #7fb0de; }
.paper-section .muted, .paper-section .section-heading p { color: #45515c; }
.paper-section .lead { color: #202b34; font-weight: 400; }
.paper-section p { color: #34404a; }
.paper-section .card h3 { color: var(--white); }
.paper-section .accent { color: #6d9ed1; }
.paper-section .button { border-color: #17232c; color: #111b23; }

.split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .8fr); gap: clamp(50px, 9vw, 150px); align-items: center; }
.split-copy { max-width: 750px; }
.split-copy p { color: var(--muted); font-size: 18px; }
.paper-section .split-copy p { color: #47535d; }

.statement { max-width: 980px; }
.statement h2 { font-size: clamp(44px, 5vw, 78px); }
.statement-meta { max-width: 570px; margin-left: auto; margin-top: 50px; color: #46535f; font-size: 19px; }

.metrics { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid rgba(11, 26, 38, .18); }
.metric { padding: 44px 36px; border-right: 1px solid rgba(11, 26, 38, .18); }
.metric:last-child { border-right: 0; }
.metric strong { display: block; margin-bottom: 8px; color: #152535; font-size: clamp(32px, 4vw, 58px); font-weight: 460; }
.metric span { color: #596873; font-size: 14px; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card { min-height: 330px; padding: clamp(30px, 3vw, 52px); background: var(--ink-soft); }
.card .number { display: block; margin-bottom: 72px; color: var(--ice); font-family: var(--font-body); font-size: 11px; letter-spacing: .25em; }
.card p { margin-bottom: 0; color: var(--muted); }
.card .capability-icon { width: 50px; height: 50px; margin-bottom: 64px; }

.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 72px 86px minmax(220px, .6fr) minmax(300px, 1fr); gap: 28px; align-items: start; padding-block: 40px; border-bottom: 1px solid var(--line); }
.service-row .capability-icon { width: 46px; height: 46px; margin: 0; }
.service-row .number { color: var(--ice); font-family: var(--font-body); font-size: 11px; letter-spacing: .2em; }
.service-row h3 { margin: 0; font-size: 27px; }
.service-row p { max-width: 680px; margin: 0; color: var(--muted); }

.process { display: grid; grid-template-columns: 1.15fr repeat(4, 1fr); border-block: 1px solid var(--line); }
.process-title, .process-step { min-height: 146px; padding: 28px 30px; border-right: 1px solid var(--line); }
.process-step:last-child { border-right: 0; }
.process-title { display: flex; align-items: center; font-size: 20px; letter-spacing: .18em; text-transform: uppercase; }
.process-step { position: relative; }
.process-step b { display: block; margin-bottom: 34px; color: var(--ice); font-family: var(--font-body); font-size: 10px; letter-spacing: .2em; }
.process-step span { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; }

.work-intro { max-width: 800px; margin-bottom: clamp(48px, 7vw, 92px); }
.work-intro p:last-child { max-width: 690px; color: var(--muted); font-size: 18px; }
.work-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.work-step { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(240px, .92fr); min-height: 420px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #050d15; }
.work-visual { position: relative; min-height: 100%; margin: 0; overflow: hidden; background: #0a141d; }
.work-visual::after { position: absolute; inset: 0; content: ""; pointer-events: none; background: linear-gradient(125deg, rgba(3,8,13,.05), rgba(5,15,24,.42)); }
.work-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.06); }
.work-copy { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(28px, 3.2vw, 50px); }
.work-number { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; color: var(--ice-bright); }
.work-number b { max-width: 220px; font-family: var(--font-editorial); font-size: clamp(25px, 2vw, 34px); font-weight: 400; letter-spacing: -.02em; line-height: 1; }
.work-number small { padding-bottom: 3px; color: #728b9e; font-size: 9px; font-weight: 600; letter-spacing: .2em; }
.work-copy h3 { margin-top: auto; font-size: clamp(28px, 2.4vw, 38px); }
.work-copy p { margin: 0; color: #aeb9c3; font-size: 15px; line-height: 1.7; }

.network-section { position: relative; min-height: 700px; display: flex; align-items: center; overflow: hidden; }
.network-section::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, var(--ink) 0, rgba(3,8,13,.94) 30%, rgba(3,8,13,.25) 70%, var(--ink) 100%); }
.network-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .73; }
.network-copy { position: relative; z-index: 2; width: min(650px, 52%); }
.network-copy p { max-width: 560px; color: #c2ccd4; font-size: 19px; }

.constellation { position: relative; padding-block: 20px 60px; }
.constellation::before { position: absolute; left: 7%; right: 7%; top: 112px; height: 1px; content: ""; background: linear-gradient(90deg, transparent, var(--line-strong) 8%, var(--ice-bright) 50%, var(--line-strong) 92%, transparent); }
.constellation-grid { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.constellation-item { position: relative; z-index: 2; text-align: center; }
.orbit-icon { display: grid; place-items: center; width: 126px; aspect-ratio: 1; margin: 28px auto 22px; border: 1px solid rgba(174, 218, 250, .72); border-radius: 50%; background: radial-gradient(circle, rgba(81, 164, 226, .12), transparent 62%), var(--ink); box-shadow: 0 0 30px rgba(79, 169, 238, .18), inset 0 0 22px rgba(105, 185, 244, .1); }
.orbit-icon::before, .orbit-icon::after { position: absolute; width: 5px; height: 5px; content: ""; border-radius: 50%; background: #d8eeff; box-shadow: 0 0 11px #7bc4ff; }
.orbit-icon::before { top: 27px; }
.orbit-icon::after { top: 151px; }
.orbit-icon svg { width: 52px; height: 52px; fill: none; stroke: #cae6fc; stroke-width: 1.25; }
.constellation-item b { display: block; color: var(--ice-bright); font-family: var(--font-body); font-size: 11px; letter-spacing: .18em; }
.constellation-item strong { display: block; min-height: 48px; margin: 8px 0; font-size: 13px; line-height: 1.45; letter-spacing: .14em; text-transform: uppercase; }
.constellation-item p { color: var(--muted); font-size: 14px; line-height: 1.5; }

.quote { max-width: 1050px; font-size: clamp(32px, 4vw, 62px); line-height: 1.2; letter-spacing: -.035em; }
.quote-attribution { margin-top: 38px; color: var(--muted); font-family: var(--font-body); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; }

.cta-band { padding-block: clamp(70px, 8vw, 120px); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-inner h2 { max-width: 840px; margin-bottom: 0; }

.site-footer { padding-block: 72px 36px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; padding-bottom: 68px; border-bottom: 1px solid var(--line); }
.footer-brand p { max-width: 460px; margin-top: 28px; color: var(--muted); }
.footer-title { margin-bottom: 20px; color: #8499ab; font-family: var(--font-body); font-size: 10px; letter-spacing: .24em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #d3dbe2; }
.footer-links a:hover { color: var(--ice-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 26px; color: #82909c; font-size: 12px; }

.conversation-layout { display: grid; grid-template-columns: minmax(300px, .65fr) minmax(0, 1.15fr); gap: clamp(50px, 9vw, 150px); align-items: start; }
.conversation-intro { position: sticky; top: 35px; }
.conversation-intro p { color: var(--muted); font-size: 18px; }
.prompt-list { display: grid; gap: 10px; margin-top: 38px; }
.prompt-chip { padding: 15px 17px; border: 1px solid var(--line); background: rgba(9,23,34,.55); color: #c8d4de; text-align: left; cursor: pointer; }
.prompt-chip:hover { border-color: var(--ice); color: var(--white); }

.form-panel { padding: clamp(28px, 4vw, 60px); border: 1px solid var(--line-strong); background: rgba(8, 22, 33, .78); }
fieldset { margin: 0 0 42px; padding: 0; border: 0; }
legend { width: 100%; margin-bottom: 28px; padding-bottom: 15px; border-bottom: 1px solid var(--line); color: var(--ice-bright); font-family: var(--font-body); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 23px; }
.field { display: grid; gap: 9px; }
.field.full { grid-column: 1 / -1; }
label { color: #d5dde3; font-size: 13px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: #06101a;
  color: var(--white);
  padding: 15px 16px;
}
input, select { min-height: 54px; }
textarea { min-height: 180px; resize: vertical; line-height: 1.55; }
input:hover, select:hover, textarea:hover { border-color: rgba(181,216,243,.7); }
input:focus, select:focus, textarea:focus { border-color: var(--ice); outline: none; box-shadow: 0 0 0 2px rgba(140,189,242,.18); }
.field-note { color: #7f909f; font-size: 12px; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.consent-row { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; margin-bottom: 25px; }
.consent-row input { width: 18px; min-height: 18px; margin-top: 3px; accent-color: var(--ice); }
.consent-row label { color: var(--muted); line-height: 1.55; }
.form-footer { display: flex; gap: 24px; align-items: center; }
.form-status { margin: 0; color: #aebdca; font-size: 13px; }
.form-status.is-error { color: var(--danger); }
.success-panel { padding: 54px; border: 1px solid rgba(150, 229, 193, .45); background: rgba(20, 73, 54, .16); }
.success-panel .capability-icon { color: var(--success); }
.success-reference { display: inline-block; margin: 16px 0 24px; color: var(--success); font-family: var(--font-body); font-size: 14px; letter-spacing: .15em; }

.legal { max-width: 920px; }
.legal h2 { margin-top: 70px; font-size: 30px; }
.legal p, .legal li { color: #bbc5cd; }
.legal li + li { margin-top: 8px; }
.legal-wide { max-width: 1080px; }
.legal-status { margin: 48px 0 16px; padding: 28px 30px; border-left: 2px solid var(--ice-bright); background: rgba(11, 31, 46, .68); }
.legal-status span { color: var(--ice-bright); font-size: 9px; font-weight: 600; letter-spacing: .18em; }
.legal-status p { margin: 13px 0 0; color: #aebdca; }
.legal-route-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 52px 0 20px; }
.legal-route-grid article { min-height: 240px; padding: 34px; border-radius: 22px; background: radial-gradient(circle at 90% 6%, rgba(76, 151, 207, .13), transparent 15rem), #07131d; }
.legal-route-grid span { color: var(--ice-bright); font-size: 9px; font-weight: 600; letter-spacing: .18em; }
.legal-route-grid h2 { margin: 48px 0 13px; font-size: 32px; }
.legal-route-grid p { margin: 0; }
.legal-paths { display: grid; gap: 1px; margin-top: 28px; background: var(--line); }
.legal-paths article { display: grid; grid-template-columns: 70px 1fr; gap: 24px; padding: 30px 34px; background: #07111a; }
.legal-paths b { color: var(--ice-bright); font-family: var(--font-editorial); font-size: 25px; font-weight: 400; }
.legal-paths h3 { margin: 0 0 10px; font-family: var(--font-editorial); font-size: 28px; font-weight: 400; }
.legal-paths p { margin: 0; }

.not-found { display: grid; min-height: 70vh; place-items: center; text-align: center; }
.not-found strong { display: block; color: var(--ice); font-family: var(--font-body); font-size: 12px; letter-spacing: .3em; }

.compact-heading { margin-bottom: clamp(42px, 5vw, 72px); }
.compact-heading h2 { font-size: clamp(38px, 3.7vw, 58px); }

.capability-introduction { padding-bottom: clamp(70px, 8vw, 110px); }
.capability-story-section { padding-top: clamp(64px, 7vw, 110px); }
.capability-stories { display: grid; gap: clamp(36px, 5vw, 72px); }
.capability-feature {
  display: grid;
  min-height: 440px;
  grid-template-columns: minmax(0, 1.16fr) minmax(350px, .84fr);
  overflow: hidden;
  border-radius: 28px;
  background: radial-gradient(circle at 82% 18%, rgba(61, 126, 176, .14), transparent 22rem), #07111a;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .18);
}
.capability-feature:nth-child(even) { grid-template-columns: minmax(350px, .84fr) minmax(0, 1.16fr); }
.capability-feature:nth-child(even) figure { order: 2; }
.capability-feature figure { position: relative; min-height: 440px; margin: 0; overflow: hidden; }
.capability-feature figure::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, transparent 58%, rgba(7, 17, 26, .42)); pointer-events: none; }
.capability-feature:nth-child(even) figure::after { background: linear-gradient(270deg, transparent 58%, rgba(7, 17, 26, .42)); }
.capability-feature figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.74) contrast(1.06); transition: filter 180ms ease; }
.capability-feature:hover figure img { filter: saturate(.9) contrast(1.08); }
.capability-feature > div { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(36px, 4.5vw, 74px); }
.capability-feature .micro { color: var(--ice-bright); }
.capability-label { display: flex; align-items: center; gap: 13px; color: #d8eaff; font-family: var(--font-editorial); font-size: clamp(22px, 1.8vw, 28px); line-height: 1.1; }
.capability-label svg { width: 36px; height: 36px; padding: 7px; border-radius: 50%; background: rgba(95, 166, 219, .1); fill: none; stroke: var(--ice-bright); stroke-width: 1.35; }
.capability-label span { color: #7394ad; font-family: var(--font-body); font-size: 9px; font-weight: 600; letter-spacing: .16em; }
.capability-feature h2 { margin: 28px 0 24px; font-family: var(--font-editorial); font-size: clamp(38px, 3.4vw, 56px); font-weight: 400; }
.capability-feature p { max-width: 600px; margin-bottom: 34px; color: var(--muted); font-size: 17px; }
.capability-feature .text-link { margin-top: auto; }

.intermediary-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(34px, 5vw, 80px); }
.intermediary-flow article { position: relative; padding-top: 42px; }
.intermediary-flow article::before { position: absolute; top: 0; left: 0; width: 48px; height: 5px; border-radius: 999px; content: ""; background: var(--ice); box-shadow: 0 0 24px rgba(112, 181, 235, .35); }
.intermediary-flow span { color: var(--ice-bright); font-family: var(--font-body); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.intermediary-flow h3 { margin: 24px 0 17px; font-size: clamp(25px, 2.3vw, 35px); }
.intermediary-flow p { color: var(--muted); }
.about-hero-art { right: -2%; bottom: -5%; width: min(72vw, 1160px); opacity: .82; filter: saturate(.78) contrast(1.06); }
.about-inline-image { border-radius: 26px; border: 0; }
.home-tailored-image { border: 0; border-radius: 26px; }

.founder-section { overflow: hidden; background: radial-gradient(circle at 80% 30%, rgba(67, 151, 137, .13), transparent 28rem), #040b11; }
.founder-profile {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, .9fr);
  overflow: hidden;
  border-radius: 54px 8px 54px 8px;
  background: #07111a;
  box-shadow: 0 34px 100px rgba(0, 0, 0, .3), inset 0 1px rgba(199, 235, 231, .1);
}
.founder-network-image { position: relative; min-height: 650px; margin: 0; overflow: hidden; }
.founder-network-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, transparent 50%, rgba(7, 17, 26, .88) 100%), linear-gradient(0deg, rgba(3, 8, 13, .34), transparent 42%); pointer-events: none; }
.founder-network-image img { width: 100%; height: 100%; object-fit: cover; object-position: 51% center; filter: saturate(.73) contrast(1.07); }
.founder-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: clamp(46px, 5.5vw, 86px); }
.founder-copy::before { position: absolute; top: 40px; right: 9%; width: 56%; height: 72px; border-top: 1px solid var(--pactum-line); border-radius: 50% 50% 0 0; content: ""; opacity: .62; }
.founder-statement { max-width: 570px; margin: 0 0 30px; font-size: clamp(44px, 4.1vw, 64px); line-height: 1; }
.founder-copy > p { max-width: 590px; color: #b7c4cc; font-size: 17px; }
.founder-signature { position: relative; display: grid; gap: 6px; width: min(100%, 390px); margin-top: 22px; padding-top: 20px; }
.founder-signature::before { position: absolute; top: 0; left: 0; width: 150px; height: 12px; border-top: 1px solid rgba(118, 216, 189, .46); border-radius: 50%; content: ""; }
.founder-signature strong { color: #e7efed; font-family: var(--font-editorial); font-size: clamp(22px, 1.8vw, 28px); font-weight: 400; letter-spacing: .015em; }
.founder-signature span { color: #8ea19d; font-size: 9px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
.implementation-note { position: relative; margin-top: 28px; padding: 25px 26px 22px; background: rgba(118, 216, 189, .055); }
.implementation-note::before { position: absolute; inset: 0; border-top: 1px solid rgba(118, 216, 189, .46); border-radius: 50% 50% 0 0; content: ""; pointer-events: none; }
.implementation-note span { color: #bdf3e4; font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.implementation-note p { margin: 11px 0 0; color: #91a49f; font-size: 13px; line-height: 1.7; }

.assurance-section { overflow: hidden; }
.assurance-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: clamp(54px, 8vw, 120px); }
.assurance-panel { position: relative; padding-top: 56px; }
.assurance-panel::before { position: absolute; top: 0; left: 0; width: min(330px, 80%); height: 55px; border-top: 1px solid var(--pactum-line); border-radius: 50% 50% 0 0; content: ""; }
.assurance-kicker { color: #bdf3e4; font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.assurance-panel h3 { max-width: 590px; margin: 24px 0 22px; font-size: clamp(32px, 3vw, 48px); line-height: 1.02; }
.assurance-panel > p { color: #9dafb7; font-size: 16px; }
.coverage-line { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; margin-top: 46px; color: #93aaa5; font-size: 9px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
.coverage-line i { height: 1px; background: linear-gradient(90deg, #91c9f0, var(--pactum)); box-shadow: 0 0 12px rgba(118, 216, 189, .36); }
.verification-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 28px; margin: 32px 0 0; }
.verification-list div { padding: 19px 0; border-top: 1px solid rgba(150, 193, 189, .14); }
.verification-list dt { color: #dff9f2; font-family: var(--font-editorial); font-size: 23px; }
.verification-list dd { margin: 8px 0 0; color: #829690; font-size: 13px; line-height: 1.6; }
.verification-note { margin-top: 22px; color: #70847f !important; font-size: 12px !important; }

.situations-section { overflow: hidden; }
.situation-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(34px, 5vw, 74px); }
.situation-grid article { position: relative; min-height: 190px; padding: 48px 0 20px; }
.situation-grid article::before { position: absolute; top: 0; left: 0; width: min(260px, 72%); height: 45px; border-top: 1px solid rgba(43, 131, 115, .42); border-radius: 50% 50% 0 0; content: ""; }
.situation-grid span { color: #347c70; font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.situation-grid h3 { max-width: 560px; margin: 20px 0 0; color: #14221f; font-family: var(--font-editorial); font-size: clamp(27px, 2.4vw, 38px); font-weight: 400; line-height: 1.12; }

.service-detail-hero { min-height: 690px; }
.service-detail-art { right: -3%; bottom: -4%; width: min(72vw, 1180px); opacity: .83; filter: saturate(.8) contrast(1.07); }
.editorial-list { display: grid; max-width: 1250px; margin-left: auto; }
.editorial-list article { display: grid; grid-template-columns: minmax(150px, .35fr) minmax(0, 1fr); gap: 42px; align-items: baseline; padding: 29px 0; border-bottom: 1px solid var(--line); }
.editorial-list article:first-child { border-top: 1px solid var(--line); }
.editorial-list span { color: var(--ice-bright); font-family: var(--font-body); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.editorial-list h3 { max-width: 880px; margin: 0; font-size: clamp(24px, 2.4vw, 36px); font-weight: 420; }
.service-evidence-section { background: radial-gradient(circle at 22% 52%, rgba(48, 118, 171, .13), transparent 30rem); }
.question-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.question-list a { display: flex; min-height: 96px; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 30px; border-radius: 18px; background: rgba(27, 61, 87, .07); color: #172532; font-size: 17px; }
.question-list a::after { content: "→"; color: #5785aa; font-size: 24px; }
.question-list a:hover { background: rgba(76, 134, 177, .13); }

.partner-entry { overflow: hidden; }
.partner-entry-intro {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(520px, 1.22fr);
  gap: clamp(46px, 7vw, 112px);
  align-items: center;
  margin-bottom: clamp(58px, 7vw, 100px);
}
.partner-entry-copy h2 { margin-bottom: 28px; }
.partner-entry-copy .lead { max-width: 620px; font-size: 18px; }
.partner-network-visual {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(77, 117, 148, .24);
  background: #02080e;
  box-shadow: 0 32px 80px rgba(19, 55, 82, .16);
}
.partner-network-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(2, 8, 13, .46);
}
.partner-network-visual img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }

.role-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.role-card {
  display: grid;
  min-height: 250px;
  padding: clamp(26px, 3vw, 44px);
  border: 1px solid rgba(19, 46, 67, .08);
  border-radius: 24px;
  background: #e9eef3;
  color: #24313b;
  text-align: left;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease;
}
.role-card:hover, .role-card.is-selected { border-color: rgba(75, 134, 180, .34); background: #fff; box-shadow: 0 20px 45px rgba(38, 83, 117, .1); }
.role-card svg { width: 46px; height: 46px; margin-bottom: 42px; fill: none; stroke: #5588b7; stroke-width: 1.3; }
.role-card span { margin-bottom: 10px; color: #101922; font-size: 24px; font-weight: 500; }
.role-card small { color: #52606b; font-size: 14px; line-height: 1.55; }
.role-response {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 18px;
  padding: 24px clamp(26px, 3vw, 44px);
  border: 1px solid rgba(19, 46, 67, .12);
  border-radius: 20px;
  background: #fff;
}
.role-response .micro { color: #618bad; }
.role-response p { max-width: 720px; margin: 7px 0 0; }

.compact-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.compact-card { min-height: 270px; padding: clamp(30px, 3vw, 46px); border-radius: 24px; background: radial-gradient(circle at 88% 8%, rgba(58, 132, 188, .13), transparent 15rem), var(--ink-soft); }
.compact-card .capability-icon { margin-bottom: 44px; }
.compact-card h3 { font-size: 25px; }
.compact-card p { margin: 0; color: var(--muted); }

.domain-section { padding-block: clamp(74px, 8vw, 116px); }
.domain-list { display: flex; flex-wrap: wrap; gap: 12px; }
.domain-list span {
  padding: 15px 19px;
  border: 1px solid var(--line-strong);
  background: rgba(9, 23, 34, .62);
  color: #d7e1e9;
  font-size: 13px;
}
.access-panel {
  padding: clamp(34px, 4vw, 56px);
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(12, 37, 55, .84), rgba(5, 14, 22, .9));
}
.access-panel .micro { color: var(--ice-bright); }
.access-panel h3 { margin: 36px 0 16px; }
.access-panel p { margin-bottom: 32px; color: var(--muted); }

.venture-hero-art { right: -5%; bottom: -10%; width: min(73vw, 1160px); opacity: .82; filter: saturate(.82) contrast(1.06); }
.venture-detail-hero { min-height: 660px; }
.venture-detail-art { right: -5%; bottom: -7%; width: min(68vw, 1100px); opacity: .76; filter: saturate(.78) contrast(1.08); }

.venture-nav { position: sticky; z-index: 20; top: 0; background: rgba(3, 8, 13, .94); backdrop-filter: blur(18px); }
.venture-tabs { display: flex; min-height: 90px; align-items: center; justify-content: center; gap: clamp(10px, 1.4vw, 24px); overflow-x: auto; scrollbar-width: none; }
.venture-tabs::-webkit-scrollbar { display: none; }
.venture-tab {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 16px 18px 23px;
  border: 0;
  background: transparent;
  color: #95a6b5;
  font-family: var(--font-editorial);
  font-size: 18px;
  cursor: pointer;
}
.venture-tab::after { position: absolute; left: 50%; bottom: 15px; width: 5px; height: 5px; content: ""; transform: translateX(-50%) scale(0); border-radius: 50%; background: var(--ice-bright); box-shadow: 0 0 12px var(--ice); transition: transform 160ms ease; }
.venture-tab svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.35; }
.venture-tab span { white-space: nowrap; }
.venture-tab:hover, .venture-tab.is-active { color: var(--white); }
.venture-tab.is-active::after { transform: translateX(-50%) scale(1); }

.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.editorial-project-grid { grid-template-columns: 1fr; }
.project-empty { grid-column: 1 / -1; min-height: 320px; padding: clamp(40px, 6vw, 84px); background: var(--ink-soft); }
.project-empty .micro { color: var(--ice-bright); }
.project-empty h3 { margin: 38px 0 16px; }
.project-empty p { max-width: 620px; margin-bottom: 32px; color: var(--muted); }
.venture-editorial-state { display: grid; grid-column: 1 / -1; grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr); min-height: 470px; overflow: hidden; border-radius: 26px; background: var(--ink-soft); }
.venture-editorial-state > img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; filter: saturate(.76) contrast(1.07); }
.venture-editorial-state > div { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(36px, 5vw, 76px); border-left: 1px solid var(--line); }
.venture-editorial-state .micro { color: var(--ice-bright); }
.venture-editorial-state h3 { margin: 28px 0 18px; font-size: clamp(30px, 3vw, 48px); }
.venture-editorial-state p { max-width: 570px; margin-bottom: 32px; color: var(--muted); font-size: 16px; }
.public-project-card { min-height: 430px; padding: clamp(30px, 3vw, 48px); border-radius: 24px; background: radial-gradient(circle at 88% 8%, rgba(58, 132, 188, .13), transparent 18rem), var(--ink-soft); }
.public-project-meta { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 64px; color: var(--ice-bright); font-family: var(--font-body); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.public-project-card h3 { font-size: 28px; }
.public-project-card > p { min-height: 100px; color: var(--muted); }
.public-project-card dl { display: grid; gap: 10px; margin: 30px 0; padding-top: 22px; border-top: 1px solid var(--line); }
.public-project-card dl div { display: flex; justify-content: space-between; gap: 20px; }
.public-project-card dt { color: #7f919f; font-size: 12px; }
.public-project-card dd { margin: 0; color: #d1dbe3; font-size: 12px; text-align: right; }
.project-progress { margin: 30px 0 24px; }
.project-progress > div { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 10px; color: #91a2af; font-size: 11px; }
.project-progress strong { color: var(--ice-bright); font-weight: 500; }
.project-progress-track { display: block; height: 4px; overflow: hidden; border-radius: 999px; background: rgba(154, 194, 224, .14); }
.project-progress-track i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #5c9bd0, #c3e5ff); box-shadow: 0 0 14px rgba(117, 190, 243, .45); }
.project-card-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.project-action { display: inline-flex; min-height: 39px; align-items: center; padding: 0 15px; border: 1px solid var(--line-strong); border-radius: 999px; color: #d8e6f0; font-size: 11px; }
.project-action:hover { border-color: var(--ice); color: #fff; }
.project-action-primary { border-color: var(--ice-bright); background: var(--ice-bright); color: #07111a; }

.venture-models { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid rgba(10, 30, 44, .16); background: rgba(10, 30, 44, .16); }
.venture-models article { min-height: 340px; padding: clamp(30px, 3vw, 48px); background: #fff; }
.venture-models .capability-icon { margin-bottom: 56px; stroke: #5b8ebd; }
.venture-models .micro { color: #6689aa; }
.venture-models h3 { margin-top: 16px; color: #111b23; font-size: 26px; }
.venture-models p { color: #4a5863; }
.venture-model-card { display: grid; grid-template-rows: 235px 1fr; min-width: 0; background: #fff; color: #111b23; }
.venture-model-card figure { position: relative; min-height: 235px; margin: 0; overflow: hidden; background: #07111a; }
.venture-model-card figure::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 58%, rgba(3, 8, 13, .48)); }
.venture-model-card figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.04); transition: filter 180ms ease; }
.venture-model-card:hover figure img { filter: saturate(.9) contrast(1.08); }
.venture-model-copy { display: flex; min-height: 450px; flex-direction: column; align-items: flex-start; padding: clamp(30px, 3vw, 46px); }
.venture-model-copy .capability-icon { width: 40px; height: 40px; margin-bottom: 38px; }
.venture-model-copy h3 { margin: 15px 0 20px; font-size: clamp(25px, 2vw, 31px); }
.venture-model-copy p { margin-bottom: 12px; font-size: 14px; line-height: 1.7; }
.model-link { display: inline-flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 28px; color: #27577d; font-size: 13px; font-weight: 600; }
.model-link svg { width: 17px; height: 17px; fill: none; stroke: currentColor; }

.venture-reading > .eyebrow { margin-bottom: 48px; }
.venture-reading-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr); gap: clamp(48px, 9vw, 150px); align-items: start; }
.venture-reading-grid h2 { margin: 0; font-size: clamp(42px, 4.2vw, 68px); }
.venture-reading-copy { padding-top: 8px; }
.venture-reading-copy p { margin-bottom: 22px; color: #34404a; font-size: 18px; line-height: 1.7; }
.venture-reading-copy p:first-child { color: #101820; font-size: 23px; line-height: 1.5; }

.venture-detail-list { border-top: 1px solid var(--line); }
.venture-detail-list article { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 28px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.venture-detail-list article > span { padding-top: 6px; color: var(--ice-bright); font-family: var(--font-body); font-size: 10px; letter-spacing: .2em; }
.venture-detail-list h3 { margin-bottom: 8px; font-size: clamp(23px, 2vw, 30px); }
.venture-detail-list p { max-width: 840px; margin: 0; color: var(--muted); }
.paper-detail-list { border-color: rgba(19, 46, 67, .2); }
.paper-detail-list article { border-color: rgba(19, 46, 67, .2); }
.paper-detail-list article > span { color: #5684aa; }
.paper-detail-list h3 { color: #101820; }
.paper-detail-list p { color: #46535d; }

.venture-outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.venture-outcome-grid article { min-height: 330px; padding: clamp(30px, 3vw, 46px); background: var(--ink-soft); }
.venture-outcome-grid article > svg { width: 45px; height: 45px; margin-bottom: 54px; fill: none; stroke: #cce4f9; stroke-width: 1.35; }
.venture-outcome-grid .micro { display: block; margin-bottom: 15px; color: var(--ice-bright); }
.venture-outcome-grid h3 { font-size: 25px; }
.venture-outcome-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.public-support-grid { grid-template-columns: repeat(4, 1fr); }

.venture-inline-image { min-height: 430px; margin: 0; overflow: hidden; border: 1px solid var(--line-strong); background: #06101a; }
.venture-inline-image img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; filter: saturate(.76) contrast(1.05); }
.paper-section .venture-inline-image { border-color: rgba(25, 53, 74, .24); }
.detail-chip-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 34px; }
.detail-chip-list span { padding: 10px 13px; border: 1px solid var(--line-strong); color: #c9d7e2; font-size: 11px; }
.venture-fact-band { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(19, 46, 67, .2); }
.venture-fact-band > div { min-height: 150px; padding: 30px; border-right: 1px solid rgba(19, 46, 67, .2); }
.venture-fact-band > div:last-child { border-right: 0; }
.venture-fact-band span { display: block; margin-bottom: 40px; color: #5684aa; font-family: var(--font-body); font-size: 10px; letter-spacing: .2em; }
.venture-fact-band strong { color: #111b23; font-size: 17px; font-weight: 500; }
.funding-notice { padding-block: clamp(54px, 6vw, 84px); }
.funding-notice-inner { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 30px; max-width: 1040px; padding: clamp(30px, 4vw, 52px); border: 1px solid var(--line-strong); background: linear-gradient(135deg, rgba(19, 55, 81, .38), rgba(5, 15, 24, .7)); }
.funding-notice-inner > svg { width: 48px; height: 48px; fill: none; stroke: var(--ice-bright); stroke-width: 1.25; }
.funding-notice-inner .micro { color: var(--ice-bright); }
.funding-notice-inner h3 { margin: 13px 0 10px; }
.funding-notice-inner p { max-width: 790px; margin: 0; color: var(--muted); }

.dashboard-preview { background: radial-gradient(circle at 78% 40%, rgba(47, 113, 162, .15), transparent 30rem); }
.dashboard-mini { padding: 30px; border: 1px solid var(--line-strong); background: rgba(6, 17, 26, .92); box-shadow: 0 34px 80px rgba(0,0,0,.28); }
.dashboard-mini-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; color: #9fc9ed; font-family: var(--font-body); font-size: 10px; letter-spacing: .22em; }
.dashboard-mini-top i { width: 8px; height: 8px; border-radius: 50%; background: #a7d7ff; box-shadow: 0 0 14px #6ab7f4; }
.dashboard-mini-stat { display: inline-flex; width: calc(50% - 4px); flex-direction: column; padding: 22px; border: 1px solid var(--line); }
.dashboard-mini-stat span { color: #8494a2; font-size: 12px; }
.dashboard-mini-stat strong { font-size: 34px; font-weight: 400; }
.dashboard-mini-row { display: grid; grid-template-columns: 1.5fr 1fr .7fr; gap: 18px; margin-top: 18px; padding: 16px 10px; border-bottom: 1px solid var(--line); color: #b6c4ce; font-size: 12px; }
.dashboard-mini-row b { color: var(--white); font-weight: 500; }
.dashboard-mini-row.muted-row { color: #758592; }

.dashboard-body { min-height: 100vh; background: #03080d; }
.dashboard-header {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(22px, 3.4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 8, 13, .96);
}
.dashboard-back { display: inline-flex; align-items: center; gap: 12px; color: #b7c5d0; font-size: 13px; }
.dashboard-back svg { width: 18px; height: 18px; fill: none; stroke: currentColor; }
.dashboard-auth-state { display: grid; width: min(700px, calc(100% - 44px)); min-height: calc(100vh - 92px); margin: auto; place-content: center; justify-items: start; }
.dashboard-auth-state[hidden] { display: none; }
.dashboard-auth-state img { margin-bottom: 34px; }
.dashboard-auth-state h1, .dashboard-auth-state h2 { margin: 22px 0; font-size: clamp(43px, 5vw, 70px); }
.dashboard-auth-state p { max-width: 560px; margin-bottom: 32px; color: var(--muted); font-size: 18px; }
.dashboard-auth-state .text-link { margin-top: 24px; }
.dashboard-shell { display: grid; grid-template-columns: 280px minmax(0, 1fr); min-height: calc(100vh - 92px); }
.dashboard-shell[hidden] { display: none; }
.dashboard-sidebar {
  display: flex;
  min-height: calc(100vh - 92px);
  flex-direction: column;
  justify-content: space-between;
  padding: 46px 26px 28px;
  border-right: 1px solid var(--line);
  background: #050d14;
}
.dashboard-sidebar > div > .micro { display: block; margin: 0 16px 24px; color: #718797; }
.dashboard-nav { display: grid; gap: 5px; }
.dashboard-nav button, .dashboard-nav a {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 15px;
  padding: 0 16px;
  border: 1px solid transparent;
  background: transparent;
  color: #94a4b1;
  text-align: left;
  cursor: pointer;
}
.dashboard-nav button:hover, .dashboard-nav button.is-active, .dashboard-nav a:hover { border-color: var(--line); background: rgba(29, 69, 98, .18); color: var(--white); }
.dashboard-nav svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.45; }
.notification-count { display: grid; min-width: 22px; height: 22px; margin-left: auto; place-items: center; border-radius: 999px; background: var(--ice-bright); color: #06111a; font-size: 10px; font-weight: 600; }
.dashboard-user-card { display: grid; gap: 5px; padding: 20px 16px 0; border-top: 1px solid var(--line); }
.dashboard-user-card .micro { color: var(--ice-bright); }
.dashboard-user-card strong { margin-top: 8px; font-weight: 500; }
.dashboard-user-card span:not(.micro) { overflow: hidden; color: #8495a2; font-size: 11px; text-overflow: ellipsis; }
.dashboard-user-card a { margin-top: 10px; color: #a7c9e4; font-size: 12px; }
.dashboard-content { width: 100%; min-width: 0; padding: clamp(30px, 4vw, 68px); }
.dashboard-content-header { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 58px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.dashboard-content-header .micro { margin-bottom: 10px; color: #81a8c7; }
.dashboard-content-header h1 { margin: 0; font-size: clamp(38px, 4vw, 60px); }
.dashboard-status-dot { display: flex; align-items: center; gap: 9px; color: #8797a4; font-size: 11px; }
.dashboard-status-dot i { width: 7px; height: 7px; border-radius: 50%; background: #8ed9bc; box-shadow: 0 0 12px rgba(142, 217, 188, .7); }
.dashboard-panel[hidden] { display: none; }
.dashboard-welcome { display: flex; align-items: center; justify-content: space-between; gap: 44px; padding: clamp(32px, 4vw, 54px); border: 1px solid var(--line-strong); background: radial-gradient(circle at 90% 10%, rgba(66, 144, 202, .14), transparent 24rem), #07131d; }
.dashboard-welcome .micro { color: var(--ice-bright); }
.dashboard-welcome h2 { margin: 18px 0 12px; font-size: clamp(34px, 3.5vw, 52px); }
.dashboard-welcome p { max-width: 650px; margin: 0; color: var(--muted); }
.dashboard-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 28px; border: 1px solid var(--line); background: var(--line); }
.dashboard-stats article { min-height: 136px; padding: 26px; background: #07111a; }
.dashboard-stats span { display: block; margin-bottom: 30px; color: #80919f; font-size: 12px; }
.dashboard-stats strong { font-size: 22px; font-weight: 450; }
.dashboard-next { margin-top: 28px; padding: 34px; border-left: 2px solid var(--ice); background: rgba(8, 22, 33, .62); }
.dashboard-next .micro { color: #81a8c7; }
.dashboard-next h3 { margin: 20px 0 12px; font-size: 28px; }
.dashboard-next p { color: var(--muted); }
.dashboard-text-button { padding: 0; border: 0; background: transparent; cursor: pointer; }
.panel-intro { display: flex; align-items: start; justify-content: space-between; gap: 40px; margin-bottom: 42px; }
.panel-intro h2 { margin-bottom: 14px; font-size: clamp(34px, 3.3vw, 52px); }
.panel-intro p { max-width: 660px; color: var(--muted); }
.privacy-chip { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 9px; padding: 10px 13px; border: 1px solid var(--line); color: #9fb4c4; font-size: 11px; }
.privacy-chip svg { width: 17px; height: 17px; fill: none; stroke: currentColor; }
.dashboard-form { padding: clamp(28px, 4vw, 54px); border: 1px solid var(--line-strong); background: rgba(7, 18, 28, .78); }
.dashboard-form textarea { min-height: 130px; }
.dashboard-domain-fieldset, .dashboard-publish-controls { margin-top: 40px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.checkbox-grid label { display: flex; align-items: center; gap: 11px; min-height: 50px; padding: 10px 14px; border: 1px solid var(--line); color: #bcc8d1; }
.checkbox-grid input { width: 17px; min-height: 17px; margin: 0; accent-color: var(--ice); }
.amount-field { display: grid; grid-template-columns: 1fr 92px; }
.amount-field select { border-left: 0; }
.progress-input { display: grid; grid-template-columns: 1fr 52px; }
.progress-input span { display: grid; place-items: center; border: 1px solid var(--line-strong); border-left: 0; background: #07131d; color: var(--ice-bright); }
.dashboard-legal-note { margin: 6px 0 30px; color: #778995; font-size: 12px; }
.terms-acceptance { display: flex; align-items: flex-start; gap: 12px; margin: 24px 0 30px; color: #9aabb7; font-size: 12px; line-height: 1.55; }
.terms-acceptance input { width: 17px; min-height: 17px; margin: 2px 0 0; flex: 0 0 auto; accent-color: var(--ice); }
.terms-acceptance a { color: var(--ice-bright); text-decoration: underline; text-underline-offset: 3px; }
.form-status.is-success { color: var(--success); }
.dashboard-list { display: grid; gap: 14px; }
.dashboard-list-empty { padding: 52px; border: 1px solid var(--line); background: #07111a; color: var(--muted); text-align: center; }
.notification-list { display: grid; gap: 10px; }
.notification-item { position: relative; display: grid; grid-template-columns: 8px minmax(0, 1fr) auto; gap: 22px; align-items: start; padding: 26px 28px; border: 1px solid var(--line); border-radius: 18px; background: rgba(7, 17, 26, .78); }
.notification-item.is-unread { border-color: rgba(137, 202, 250, .3); background: radial-gradient(circle at 4% 20%, rgba(76, 151, 207, .12), transparent 18rem), #07131d; }
.notification-signal { width: 7px; height: 7px; margin-top: 7px; border: 1px solid #60717d; border-radius: 50%; }
.notification-item.is-unread .notification-signal { border: 0; background: var(--ice-bright); box-shadow: 0 0 15px rgba(137, 202, 250, .65); }
.notification-item .micro { color: #7da6c5; text-transform: uppercase; }
.notification-item h3 { margin: 9px 0 7px; font-family: var(--font-editorial); font-size: 27px; font-weight: 400; }
.notification-item p { margin: 0; color: #91a2ae; }
.notification-item time { color: #708592; font-size: 10px; white-space: nowrap; }
.notification-actions { display: flex; gap: 15px; margin-top: 17px; }
.notification-actions a, .notification-actions button { padding: 0; border: 0; background: transparent; color: var(--ice-bright); font-size: 11px; cursor: pointer; }
.notification-actions button { color: #8498a7; }
.notification-actions a:hover, .notification-actions button:hover { color: #fff; }
.dashboard-project-row { display: grid; grid-template-columns: minmax(240px, 1fr) minmax(300px, .8fr) auto; gap: 34px; align-items: center; padding: 30px; border: 1px solid var(--line); background: #07111a; }
.dashboard-project-row h3 { margin: 13px 0 8px; font-size: 25px; }
.dashboard-project-row p { margin: 0; color: var(--muted); font-size: 14px; }
.dashboard-project-row dl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin: 0; }
.dashboard-project-row dt { color: #758794; font-size: 10px; text-transform: uppercase; }
.dashboard-project-row dd { margin: 2px 0 0; color: #c9d4dd; font-size: 12px; }
.status-pill { display: inline-flex; width: fit-content; padding: 5px 9px; border: 1px solid var(--line-strong); color: #9fc9ed; font-family: var(--font-body); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.status-published { border-color: rgba(133, 214, 181, .42); color: #aee1ca; }
.project-status-action { padding: 10px 13px; border: 1px solid var(--line-strong); background: transparent; color: #c1d4e3; font-size: 11px; cursor: pointer; }
.project-status-action:hover { border-color: var(--ice); color: var(--white); }
.dashboard-project-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.dashboard-cancel-edit { min-height: 44px; padding: 0 18px; border: 0; background: transparent; color: #9fb2c1; cursor: pointer; }
.dashboard-cancel-edit:hover { color: #fff; }
.directory-filters { display: grid; grid-template-columns: minmax(160px, .7fr) minmax(180px, .9fr) minmax(240px, 1.4fr); gap: 12px; margin-bottom: 26px; }
.directory-filter { display: grid; min-width: 0; gap: 8px; color: #8799a7; font-size: 11px; }
.directory-filter select, .directory-filter input { min-height: 46px; }
.member-directory { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.member-directory > .dashboard-list-empty { grid-column: 1 / -1; }
.member-card { min-height: 390px; padding: 28px; border: 1px solid var(--line); background: #07111a; }
.member-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.member-initial { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--ice-bright); font-size: 20px; }
.member-card h3 { margin-bottom: 6px; font-size: 25px; }
.member-card > b { display: block; color: #cad5dd; font-size: 12px; font-weight: 500; }
.member-card > small { display: block; color: #7f909d; }
.member-card p { color: #91a1ae; font-size: 13px; }
.member-card .member-headline { min-height: 46px; margin-top: 24px; color: #d3dce3; font-size: 14px; }
.member-availability { margin-top: 18px; color: #8fcfbe; font-size: 10px; text-transform: capitalize; }
.member-availability span::before { display: inline-block; width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; background: var(--pactum); content: ""; box-shadow: 0 0 10px rgba(118, 216, 189, .42); }
.member-introduction { color: #cafff0 !important; }
.member-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 22px 0; }
.member-tags span { padding: 5px 7px; background: rgba(61, 112, 150, .16); color: #9ec5e2; font-size: 9px; }
.member-links { display: flex; gap: 16px; padding-top: 18px; border-top: 1px solid var(--line); }
.member-links a { color: var(--ice-bright); font-size: 12px; }

[hidden] { display: none !important; }
.has-dialog { overflow: hidden; }

.membership-levels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.membership-levels article { display: flex; min-height: 390px; flex-direction: column; align-items: flex-start; padding: clamp(30px, 3vw, 48px); border-radius: 24px; background: #fff; box-shadow: 0 22px 60px rgba(35, 56, 73, .08); }
.membership-levels svg { width: 44px; height: 44px; margin-bottom: 54px; fill: none; stroke: #3e78a6; stroke-width: 1.35; }
.membership-levels span { color: #6b91b1; font-size: 9px; font-weight: 600; letter-spacing: .17em; }
.membership-levels h3 { margin: 16px 0; color: #101820; font-family: var(--font-editorial); font-size: 34px; font-weight: 400; }
.membership-levels p { margin: 0 0 28px; color: #4d5b66; }
.membership-levels b { margin-top: auto; color: #2f638d; font-size: 11px; font-weight: 600; }

.context-forum-link { position: fixed; z-index: 48; right: 22px; bottom: 22px; display: grid; grid-template-columns: 27px auto; min-width: 126px; align-items: center; column-gap: 10px; padding: 12px 17px; border: 1px solid rgba(185, 220, 255, .5); border-radius: 999px; background: rgba(5, 15, 24, .9); box-shadow: 0 14px 44px rgba(0, 0, 0, .32), 0 0 28px rgba(82, 158, 217, .1); backdrop-filter: blur(14px); }
.context-forum-link svg { grid-row: 1 / 3; width: 27px; height: 27px; fill: none; stroke: var(--ice-bright); stroke-width: 1.3; }
.context-forum-link span { color: #f0f7fc; font-family: var(--font-editorial); font-size: 17px; line-height: 1; }
.context-forum-link small { overflow: hidden; max-width: 140px; color: #7f9bb1; font-size: 8px; font-weight: 600; letter-spacing: .1em; line-height: 1.2; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.context-forum-link:hover { border-color: var(--ice-bright); background: rgba(11, 29, 43, .96); }

.forum-hero { min-height: 690px; }
.forum-hero-art { right: -1%; bottom: -14%; width: min(69vw, 1110px); opacity: .76; filter: saturate(.66) contrast(1.08); mask-image: linear-gradient(to right, transparent 0, rgba(0,0,0,.66) 18%, black 56%, rgba(0,0,0,.84) 86%, transparent 100%); }
.forum-bar { position: sticky; z-index: 18; top: 0; background: rgba(3, 8, 13, .95); backdrop-filter: blur(18px); }
.forum-public-boundary { position: relative; display: grid; grid-template-columns: 170px minmax(0, 760px); gap: clamp(24px, 5vw, 80px); align-items: start; padding-block: 30px; border-bottom: 1px solid var(--line); }
.forum-public-boundary::before { position: absolute; top: -1px; left: 0; width: min(260px, 30%); height: 18px; content: ""; border-top: 1px solid var(--pactum); border-radius: 50%; }
.forum-public-boundary span { color: #c7f7ea; font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.forum-public-boundary p { margin: 0; color: #9aada7; font-size: 13px; }
.forum-public-boundary a { color: #d8f9f0; text-decoration: underline; text-decoration-color: rgba(118, 216, 189, .42); text-underline-offset: 3px; }
.forum-tags { display: flex; min-height: 82px; align-items: center; gap: 6px; overflow-x: auto; scrollbar-width: none; }
.forum-tags::-webkit-scrollbar { display: none; }
.forum-tags button { position: relative; flex: 0 0 auto; padding: 19px 15px 24px; border: 0; background: transparent; color: #899ba9; font-family: var(--font-editorial); font-size: 17px; cursor: pointer; white-space: nowrap; }
.forum-tags button::after { position: absolute; left: 50%; bottom: 15px; width: 5px; height: 5px; content: ""; transform: translateX(-50%) scale(0); border-radius: 50%; background: var(--ice-bright); box-shadow: 0 0 12px var(--ice); }
.forum-tags button:hover, .forum-tags button.is-active { color: #fff; }
.forum-tags button.is-active::after { transform: translateX(-50%) scale(1); }
.forum-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: clamp(40px, 6vw, 90px); align-items: start; }
.forum-list-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 40px; }
.forum-list-heading .eyebrow { margin-bottom: 12px; }
.forum-list-heading h2 { margin: 0; font-family: var(--font-editorial); font-weight: 400; }
.forum-aside { position: sticky; top: 116px; padding: 32px; border-radius: 22px; background: radial-gradient(circle at 85% 8%, rgba(93, 166, 221, .13), transparent 15rem), #07131d; }
.forum-aside .micro { color: var(--ice-bright); }
.forum-aside h3 { margin: 28px 0 16px; font-family: var(--font-editorial); font-size: 31px; font-weight: 400; }
.forum-aside p { color: var(--muted); }
.forum-thread-list { display: grid; gap: 10px; }
.forum-thread { display: grid; width: 100%; grid-template-columns: 190px minmax(0, 1fr) 150px; gap: 26px; align-items: center; padding: 27px 28px; border: 0; border-radius: 18px; background: #07111a; color: inherit; text-align: left; cursor: pointer; transition: background-color 160ms ease, transform 160ms ease; }
.forum-thread:hover { transform: translateY(-2px); background: #0a1823; }
.forum-thread-tag { display: flex; align-items: center; gap: 10px; color: #9ecbef; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.forum-thread-tag svg { width: 26px; height: 26px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.35; }
.forum-thread-copy { display: grid; gap: 8px; min-width: 0; }
.forum-thread-copy strong { font-family: var(--font-editorial); font-size: 25px; font-weight: 400; line-height: 1.1; }
.forum-thread-copy > span { overflow: hidden; color: #8fa0ad; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.forum-thread-meta { display: grid; justify-items: end; gap: 3px; color: #718591; font-size: 10px; }
.forum-thread-meta b { color: #c7d4dd; font-weight: 500; }
.forum-empty { min-height: 340px; padding: clamp(36px, 5vw, 65px); border-radius: 22px; background: radial-gradient(circle at 85% 10%, rgba(66, 144, 202, .14), transparent 22rem), #07111a; }
.forum-empty .micro { color: var(--ice-bright); }
.forum-empty h3 { margin: 38px 0 14px; font-family: var(--font-editorial); font-size: 38px; font-weight: 400; }
.forum-empty p { max-width: 560px; margin-bottom: 30px; color: var(--muted); }

.forum-compose-layer, .forum-detail-layer { position: fixed; z-index: 90; inset: 0; overflow-y: auto; padding: 30px; background: rgba(1, 5, 8, .82); backdrop-filter: blur(16px); }
.forum-compose-panel, .forum-detail-panel { position: relative; width: min(720px, 100%); margin: 5vh auto; padding: clamp(32px, 5vw, 64px); border: 1px solid var(--line-strong); border-radius: 26px; background: radial-gradient(circle at 90% 0, rgba(70, 145, 200, .17), transparent 22rem), #07111a; box-shadow: 0 34px 110px rgba(0, 0, 0, .62); }
.forum-detail-panel { width: min(940px, 100%); }
.forum-compose-panel > .micro { color: var(--ice-bright); }
.forum-compose-panel > h2 { margin: 22px 0 34px; font-family: var(--font-editorial); font-weight: 400; }
.forum-close { position: absolute; top: 22px; right: 24px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(139, 186, 222, .1); color: #d7e9f7; font-size: 26px; line-height: 1; cursor: pointer; }
.forum-compose-panel form { display: grid; gap: 18px; }
.forum-compose-panel textarea, .forum-reply-form textarea { min-height: 160px; }
.forum-thread-detail { padding-right: 38px; }
.forum-thread-detail h2 { margin: 28px 0 18px; font-family: var(--font-editorial); font-size: clamp(40px, 5vw, 68px); font-weight: 400; }
.forum-thread-detail > p { margin-top: 38px; color: #c2ced7; font-size: 18px; white-space: pre-wrap; }
.forum-author { display: flex; gap: 12px; color: #7c909e; font-size: 11px; }
.forum-author b { color: #d1dce4; font-weight: 500; }
.forum-replies { display: grid; gap: 12px; margin-top: 50px; padding-top: 34px; border-top: 1px solid var(--line); }
.forum-replies > .micro { margin-bottom: 10px; color: var(--ice-bright); }
.forum-reply { display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: 26px; padding: 24px; border-radius: 16px; background: rgba(11, 30, 44, .74); }
.forum-reply > div { display: grid; align-content: start; gap: 2px; color: #718795; font-size: 10px; }
.forum-reply > div b { color: #d4e0e8; font-weight: 500; }
.forum-reply p { margin: 0; color: #afbdc7; white-space: pre-wrap; }
.forum-reply-form, .forum-reply-gate { margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--line); }
.forum-no-replies, .forum-reply-gate p { color: var(--muted); }

.member-stats { grid-template-columns: repeat(4, 1fr); }
.member-card-badges { display: flex; align-items: center; justify-content: flex-end; gap: 7px; flex-wrap: wrap; }
.member-reviewed, .member-review-summary { display: inline-flex; align-items: center; width: fit-content; padding: 6px 9px; border: 1px solid rgba(102, 220, 185, .28); border-radius: 999px; background: rgba(72, 194, 158, .08); color: #8ee5c7; font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }
.member-review-summary { margin-top: 14px; }
.member-review-summary.review-needs-information { border-color: rgba(239, 178, 99, .3); background: rgba(239, 178, 99, .08); color: #efc58d; }
.member-review-summary.review-pending { border-color: rgba(119, 170, 209, .26); background: rgba(119, 170, 209, .08); color: #9cc7e6; }
.admin-tier-key { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.admin-tier-key span { padding: 10px 13px; border-radius: 999px; background: rgba(71, 135, 184, .12); color: #8fa5b4; font-size: 10px; }
.admin-tier-key b { color: #d3e8f8; font-weight: 500; }
.admin-record { padding: 28px; border-radius: 18px; background: #07111a; }
.admin-record-heading { display: flex; justify-content: space-between; gap: 28px; }
.admin-record-heading time { color: #708592; font-size: 10px; }
.admin-record h3 { margin: 14px 0 6px; font-family: var(--font-editorial); font-size: 30px; font-weight: 400; }
.admin-record p { color: #8fa0ac; }
.admin-record-body { color: #bac7d0 !important; white-space: pre-wrap; }
.admin-record dl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px; margin: 24px 0 0; padding-top: 22px; border-top: 1px solid var(--line); }
.admin-record dt { color: #718592; font-size: 9px; text-transform: uppercase; }
.admin-record dd { margin: 2px 0 0; color: #c5d2dc; font-size: 12px; }
.admin-member-row, .admin-forum-row { display: grid; grid-template-columns: minmax(220px, 1fr) minmax(340px, .75fr); gap: 28px; align-items: end; }
.admin-member-row > .form-status, .admin-forum-row > .form-status { grid-column: 1 / -1; margin: 0; }
.admin-member-controls { display: flex; align-items: end; justify-content: flex-end; gap: 10px; }
.admin-member-controls label { display: grid; gap: 6px; color: #7f929f; font-size: 9px; text-transform: uppercase; }
.admin-member-controls select { min-width: 120px; min-height: 40px; }
.admin-verification-controls { display: grid; grid-template-columns: repeat(2, minmax(145px, 1fr)); gap: 10px; margin-top: 12px; }
.admin-verification-controls label { display: grid; gap: 6px; color: #7f929f; font-size: 9px; text-transform: uppercase; }
.admin-verification-controls select { min-height: 40px; }
.admin-verification-controls .project-status-action { grid-column: 1 / -1; justify-self: end; }

.readiness-summary { display: grid; grid-template-columns: minmax(220px, .55fr) minmax(280px, 1fr); gap: 34px; align-items: end; margin-bottom: 28px; padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: radial-gradient(circle at 90% 0, rgba(70, 145, 200, .13), transparent 24rem), #07111a; }
.readiness-summary strong { display: block; margin: 12px 0 4px; font-family: var(--font-editorial); font-size: clamp(48px, 6vw, 76px); font-weight: 400; color: #e8f5fa; }
.readiness-summary p { color: #8297a4; font-size: 12px; }
.readiness-meter { height: 7px; overflow: hidden; border-radius: 999px; background: rgba(123, 168, 196, .12); }
.readiness-meter i { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #78b8ea, #62d3ae); transition: width .2s ease; }
.readiness-list { display: grid; gap: 8px; }
.readiness-row { display: grid; grid-template-columns: 112px 1fr; gap: 20px; align-items: center; padding: 20px 22px; border-radius: 14px; background: rgba(7, 17, 26, .82); }
.readiness-row h3 { margin: 0 0 4px; font-family: var(--font-editorial); font-size: 22px; font-weight: 400; }
.readiness-row p { margin: 0; color: #7f929f; font-size: 12px; }
.readiness-state { width: fit-content; padding: 6px 9px; border-radius: 999px; font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }
.readiness-state.is-ready { background: rgba(72, 194, 158, .1); color: #8ee5c7; }
.readiness-state.needs-action { background: rgba(239, 178, 99, .09); color: #efc58d; }
.readiness-external { margin-top: 34px; padding: 30px; border: 1px solid rgba(150, 193, 189, .13); border-radius: 18px; background: rgba(5, 14, 21, .75); }
.readiness-external h3 { margin: 18px 0 16px; font-family: var(--font-editorial); font-size: 30px; font-weight: 400; }
.readiness-external ul { display: grid; gap: 10px; margin: 0; padding-left: 18px; color: #8ea1ad; font-size: 13px; }

.field input, .field select, .field textarea, .directory-filter select, .progress-input span, .checkbox-grid label, .project-status-action { border-radius: 10px; }
.dashboard-form, .dashboard-welcome, .dashboard-next, .dashboard-stats, .dashboard-list-empty, .dashboard-project-row, .member-card { border-radius: 18px; }

@media (max-width: 1180px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .header-cta { display: none; }
  .mobile-menu { display: block; }
  .capability-grid { grid-template-columns: repeat(3, 1fr); }
  .capability-tile:nth-child(3) { border-right: 0; }
  .capability-tile:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .constellation-grid { grid-template-columns: repeat(3, 1fr); row-gap: 44px; }
  .constellation::before { display: none; }
  .orbit-icon::after { display: none; }
  .process { grid-template-columns: repeat(4, 1fr); }
  .process-title { grid-column: 1 / -1; min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .work-step { grid-template-columns: 1fr; }
  .work-visual { min-height: 310px; }
  .work-copy { min-height: 300px; }
  .partner-entry-intro { grid-template-columns: 1fr; }
  .partner-network-visual { min-height: 520px; }
  .intermediary-flow { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-project-grid { grid-template-columns: 1fr; }
  .public-support-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard-shell { grid-template-columns: 220px minmax(0, 1fr); }
  .dashboard-stats { grid-template-columns: repeat(2, 1fr); }
  .member-directory { grid-template-columns: repeat(2, 1fr); }
  .dashboard-project-row { grid-template-columns: 1fr; }
  .membership-levels { grid-template-columns: repeat(2, 1fr); }
  .membership-levels article:last-child { grid-column: 1 / -1; min-height: 320px; }
  .forum-layout { grid-template-columns: 1fr; }
  .forum-aside { position: static; }
  .forum-thread { grid-template-columns: 160px minmax(0, 1fr); }
  .forum-thread-meta { grid-column: 2; grid-row: 2; grid-auto-flow: column; justify-content: start; justify-items: start; }
}

@media (max-width: 820px) {
  :root { --section: 82px; }
  .brand-name { font-size: 17px; }
  .brand-tag { font-size: 7px; }
  .header-inner { min-height: 86px; }
  .hero { min-height: 710px; }
  .hero-inner { align-items: flex-start; padding-block: 80px 280px; }
  .hero-copy, .page-hero .hero-copy { width: 100%; }
  .home-line { white-space: normal; }
  .hero-art, .page-hero .hero-art { right: -36%; bottom: -2%; width: 148vw; opacity: .7; }
  .hero:not(.page-hero) { min-height: 790px; }
  .hero:not(.page-hero) .hero-inner { padding-block: 58px 350px; }
  .hero:not(.page-hero) .hero-copy { width: 100%; max-width: 660px; }
  .hero:not(.page-hero) h1 { max-width: 100%; font-size: clamp(44px, 8.6vw, 58px); }
  .hero:not(.page-hero) .hero-art { right: 0; bottom: 0; width: 100%; height: 46%; object-fit: cover; object-position: 68% 43%; opacity: .84; mask-image: linear-gradient(to bottom, transparent 0, rgba(0,0,0,.84) 24%, black 60%, rgba(0,0,0,.92) 100%); }
  .hero:not(.page-hero)::after { background: linear-gradient(180deg, var(--ink) 0, rgba(3,8,13,.96) 53%, rgba(3,8,13,.12) 79%, var(--ink) 100%); }
  .venture-hero .hero-art, .venture-detail-hero .hero-art { right: -38%; bottom: -1%; width: 152vw; opacity: .62; }
  .hero::after { background: linear-gradient(180deg, var(--ink) 2%, rgba(3,8,13,.92) 38%, rgba(3,8,13,.18) 74%, var(--ink) 100%); }
  .hero-side-note, .hero-index { display: none; }
  .brand-motto { top: auto; right: var(--pad); bottom: 26px; width: 240px; }
  .page-hero { min-height: 660px; }
  .page-hero .hero-inner { padding-bottom: 260px; }
  .section-heading, .split, .conversation-layout { grid-template-columns: 1fr; }
  .section-heading { gap: 24px; }
  .statement-meta { margin-left: 0; }
  .metrics, .card-grid, .card-grid.four { grid-template-columns: 1fr; }
  .metric { border-right: 0; border-bottom: 1px solid rgba(11,26,38,.18); }
  .metric:last-child { border-bottom: 0; }
  .service-row { grid-template-columns: 50px 64px 1fr; }
  .service-row p { grid-column: 3; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(3) { border-right: 0; }
  .process-step:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .network-copy { width: 86%; }
  .work-grid { grid-template-columns: 1fr; }
  .work-step { grid-template-columns: minmax(0, 1.1fr) minmax(240px, .9fr); }
  .work-visual { min-height: 340px; }
  .work-copy { min-height: auto; }
  .network-section::after { background: linear-gradient(90deg, rgba(3,8,13,.97), rgba(3,8,13,.45) 90%); }
  .constellation-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { display: grid; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .conversation-intro { position: static; }
  .role-selector, .compact-card-grid, .venture-models, .project-grid { grid-template-columns: 1fr; }
  .capability-feature, .capability-feature:nth-child(even) { grid-template-columns: 1fr; }
  .capability-feature:nth-child(even) figure { order: 0; }
  .capability-feature figure { min-height: 330px; }
  .capability-feature figure::after, .capability-feature:nth-child(even) figure::after { background: linear-gradient(180deg, transparent 65%, rgba(7, 17, 26, .45)); }
  .capability-feature > div { min-height: 350px; }
  .intermediary-flow { grid-template-columns: 1fr; }
  .question-list { grid-template-columns: 1fr; }
  .service-detail-hero .hero-art, .about-hero .hero-art { right: -42%; width: 154vw; }
  .founder-profile { grid-template-columns: 1fr; }
  .founder-network-image { min-height: 420px; }
  .founder-network-image::after { background: linear-gradient(180deg, transparent 55%, rgba(7, 17, 26, .72)); }
  .assurance-grid { grid-template-columns: 1fr; }
  .venture-editorial-state { grid-template-columns: 1fr; }
  .venture-editorial-state > img { min-height: 0; aspect-ratio: 16 / 9; }
  .venture-editorial-state > div { min-height: 330px; border-top: 1px solid var(--line); border-left: 0; }
  .venture-model-card { grid-template-rows: minmax(220px, 34vw) auto; }
  .venture-model-copy { min-height: 0; }
  .venture-reading-grid { grid-template-columns: 1fr; gap: 34px; }
  .venture-outcome-grid, .public-support-grid { grid-template-columns: 1fr; }
  .venture-fact-band { grid-template-columns: repeat(2, 1fr); }
  .venture-fact-band > div:nth-child(2) { border-right: 0; }
  .venture-fact-band > div:nth-child(-n+2) { border-bottom: 1px solid rgba(19, 46, 67, .2); }
  .role-response { align-items: stretch; flex-direction: column; }
  .role-response .button { width: 100%; }
  .dashboard-shell { display: block; }
  .dashboard-sidebar { min-height: auto; padding: 22px; border-right: 0; border-bottom: 1px solid var(--line); }
  .dashboard-sidebar > div > .micro { display: none; }
  .dashboard-nav { display: flex; overflow-x: auto; }
  .dashboard-nav button, .dashboard-nav a { flex: 0 0 auto; }
  .dashboard-user-card { display: none; }
  .dashboard-content { padding: 34px 22px 70px; }
  .dashboard-content-header { margin-bottom: 38px; }
  .dashboard-status-dot { display: none; }
  .dashboard-welcome, .panel-intro { align-items: stretch; flex-direction: column; }
  .dashboard-welcome .button { width: 100%; }
  .member-directory { grid-template-columns: 1fr; }
  .membership-levels { grid-template-columns: 1fr; }
  .membership-levels article:last-child { grid-column: auto; }
  .forum-hero .hero-art { right: -54%; width: 166vw; }
  .forum-list-heading { align-items: stretch; flex-direction: column; }
  .forum-list-heading .button { align-self: flex-start; }
  .forum-thread { grid-template-columns: 1fr; gap: 14px; }
  .forum-thread-meta { grid-column: auto; grid-row: auto; grid-auto-flow: column; justify-content: start; justify-items: start; gap: 14px; }
  .forum-reply { grid-template-columns: 1fr; }
  .admin-member-row, .admin-forum-row { grid-template-columns: 1fr; }
  .admin-member-controls { justify-content: flex-start; flex-wrap: wrap; }
  .readiness-summary { grid-template-columns: 1fr; }
  .notification-item { grid-template-columns: 8px 1fr; }
  .notification-item time { grid-column: 2; }
  .legal-route-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .member-stats, .admin-verification-controls { grid-template-columns: 1fr; }
  .readiness-row { grid-template-columns: 1fr; gap: 10px; }
  .brand img { width: 42px; height: 36px; }
  .brand-copy { gap: 6px; }
  .brand-name { font-size: 14px; letter-spacing: .2em; }
  .brand-tag { font-size: 6px; letter-spacing: .3em; }
  h1 { font-size: clamp(43px, 11.5vw, 56px); }
  h2 { font-size: 40px; }
  .lead { font-size: 17px; }
  .hero-actions { display: grid; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-tile { min-height: 165px; }
  .capability-tile:nth-child(2n) { border-right: 0; }
  .capability-tile:nth-child(3) { border-right: 1px solid var(--line); }
  .capability-tile:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
  .statement h2 { font-size: 41px; }
  .service-row { grid-template-columns: 42px 1fr; gap: 20px; }
  .service-row .number { grid-column: 1; grid-row: 1; }
  .service-row .capability-icon { grid-column: 1; grid-row: 2; width: 38px; }
  .service-row h3 { grid-column: 2; grid-row: 1 / 3; }
  .service-row p { grid-column: 2; }
  .editorial-list article { grid-template-columns: 1fr; gap: 12px; padding-block: 24px; }
  .capability-feature { border-radius: 20px; }
  .capability-feature figure { min-height: 245px; }
  .capability-feature > div { min-height: 0; }
  .brand-motto { width: 210px; }
  .hero:not(.page-hero) { min-height: 820px; }
  .hero:not(.page-hero) .hero-inner { padding-top: 42px; padding-bottom: 350px; }
  .hero:not(.page-hero) .brand-motto { display: none; }
  .process { grid-template-columns: 1fr; }
  .process-step { border-right: 0; border-bottom: 1px solid var(--line); }
  .constellation-grid { grid-template-columns: 1fr; }
  .orbit-icon::before { display: none; }
  .work-step { grid-template-columns: 1fr; }
  .work-visual { min-height: 270px; }
  .work-copy { min-height: 270px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: grid; }
  .legal-paths article { grid-template-columns: 1fr; }
  .founder-profile { border-radius: 34px 7px 34px 7px; }
  .founder-network-image { min-height: 300px; }
  .founder-copy { padding: 38px 26px 34px; }
  .verification-list, .situation-grid { grid-template-columns: 1fr; }
  .situation-grid article { min-height: 0; }
  .partner-network-visual, .partner-network-visual img { min-height: 320px; }
  .role-card { min-height: 220px; }
  .venture-tabs { margin-inline: calc(var(--pad) * -1); padding-inline: var(--pad); }
  .venture-tab { min-width: 158px; padding-inline: 18px; }
  .venture-detail-list article { grid-template-columns: 44px minmax(0, 1fr); gap: 18px; }
  .venture-fact-band { grid-template-columns: 1fr; }
  .venture-fact-band > div { min-height: 122px; border-right: 0; border-bottom: 1px solid rgba(19, 46, 67, .2); }
  .venture-fact-band > div:last-child { border-bottom: 0; }
  .funding-notice-inner { grid-template-columns: 1fr; }
  .dashboard-header { min-height: 78px; }
  .dashboard-header .brand-tag { display: none; }
  .dashboard-back { font-size: 0; }
  .dashboard-back svg { width: 23px; height: 23px; }
  .dashboard-stats, .checkbox-grid { grid-template-columns: 1fr; }
  .dashboard-form { padding: 22px; }
  .amount-field { grid-template-columns: 1fr 78px; }
  .dashboard-project-row dl { grid-template-columns: 1fr; }
  .context-forum-link { right: 14px; bottom: 14px; min-width: 0; padding: 11px 14px; }
  .context-forum-link small { display: none; }
  .forum-compose-layer, .forum-detail-layer { padding: 12px; }
  .forum-compose-panel, .forum-detail-panel { margin: 12px auto; padding: 30px 22px; border-radius: 20px; }
  .forum-thread-detail { padding-right: 18px; }
  .forum-thread-meta { grid-auto-flow: row; gap: 3px; }
  .admin-record dl { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; }
}

/* PACTUM identity — the supplied crossed arcs become the recurring visual rule. */
:root {
  --pactum: #76d8bd;
  --pactum-soft: rgba(118, 216, 189, .18);
  --pactum-line: rgba(118, 216, 189, .48);
  --pactum-accent: linear-gradient(96deg, #b8ddff 0%, #8bc7ef 27%, #73d5bd 45%, #55dda8 100%);
}

body {
  background:
    radial-gradient(circle at 79% 0, rgba(43, 138, 126, .14), transparent 33rem),
    radial-gradient(circle at 58% 12%, rgba(92, 160, 211, .08), transparent 28rem),
    var(--ink);
}

.brand { gap: 12px; }
.brand .brand-lockup {
  width: 174px;
  height: auto;
  aspect-ratio: 30 / 13;
  object-fit: cover;
  object-position: center;
}
.brand-context {
  padding-left: 14px;
  border-left: 1px solid var(--pactum-line);
  color: #a7bbb7;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .22em;
  line-height: 1.4;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-auth-lockup { width: min(330px, 82vw); height: auto; margin-inline: auto; }

.header-inner { grid-template-columns: minmax(188px, .9fr) auto minmax(190px, .9fr); gap: 24px; }
.desktop-nav { gap: clamp(17px, 1.9vw, 34px); }
.desktop-nav a { font-size: 12px; }
.desktop-nav a::after { background: var(--pactum); box-shadow: 0 0 13px var(--pactum); }
.button:hover { border-color: var(--pactum); box-shadow: 0 0 24px rgba(118, 216, 189, .15); }
.button-primary:hover { border-color: #c7fff0; background: #d8fff5; box-shadow: 0 0 32px rgba(118, 216, 189, .24); }
.accent,
.paper-section .accent {
  background: var(--pactum-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.section, .hero, .capability-rail { border-bottom-color: rgba(129, 190, 182, .17); }
.section { position: relative; }
.section::before {
  position: absolute;
  top: 0;
  right: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  width: min(220px, 20vw);
  height: 44px;
  content: "";
  pointer-events: none;
  opacity: .6;
  border-top: 1px solid var(--pactum-line);
  border-radius: 50% 50% 0 0;
  transform: translateY(-1px);
}
.section.paper-section::before { border-top-color: rgba(45, 131, 115, .32); }

.eyebrow::before {
  width: 34px;
  height: 12px;
  border-top: 1px solid var(--pactum);
  border-radius: 50% 50% 0 0;
  background: none;
}

.chapter-mark,
.card .number,
.service-row .number,
.work-number small,
.constellation-item b,
.capability-label > span,
.venture-detail-list article > span,
.venture-fact-band span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  border-top: 1px solid var(--pactum);
  border-bottom: 1px solid rgba(154, 205, 238, .55);
  border-radius: 50%;
  color: #bceee1;
  font-family: var(--font-editorial);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}
.capability-label > span { flex: 0 0 34px; }
.venture-detail-list article > span { padding-top: 0; }
.venture-fact-band span { margin-bottom: 28px; border-color: rgba(43, 121, 106, .45); color: #2c7164; }

.card-grid,
.work-grid { gap: clamp(12px, 1.5vw, 22px); border: 0; background: transparent; }
.card,
.work-step,
.dashboard-project-row,
.member-card,
.admin-record {
  border: 0;
  background:
    radial-gradient(circle at 88% 4%, rgba(118, 216, 189, .08), transparent 14rem),
    #07111a;
  box-shadow: inset 0 1px rgba(196, 229, 226, .12);
}
.work-step { overflow: hidden; border-radius: 44px 12px 44px 12px; }
.capability-tile { border-right: 0; }
.capability-tile::before {
  left: 18%;
  width: 64%;
  height: 32px;
  border-top: 1px solid rgba(118, 216, 189, .22);
  border-radius: 50% 50% 0 0;
  background: none;
}
.capability-tile:hover::before { left: 8%; width: 84%; border-top-color: var(--pactum); }

.bridge-hero { min-height: 720px; }
.bridge-hero .hero-copy { width: min(61%, 910px); }
.bridge-hero::after { background: linear-gradient(90deg, var(--ink) 5%, rgba(3,8,13,.96) 43%, rgba(3,8,13,.08) 78%); }
.pactum-crossing { position: absolute; z-index: 1; inset: 2% -8% 0 42%; overflow: hidden; opacity: .86; }
.pactum-crossing i { position: absolute; display: block; pointer-events: none; }
.pactum-crossing i:nth-child(1), .pactum-crossing i:nth-child(2) {
  bottom: 18%;
  width: 74%;
  height: 66%;
  border-top: 1px solid rgba(190, 226, 255, .78);
  border-radius: 50% 50% 0 0;
  filter: drop-shadow(0 0 8px rgba(125, 199, 255, .3));
}
.pactum-crossing i:nth-child(1) { left: -9%; transform: rotate(4deg); }
.pactum-crossing i:nth-child(2) { right: -8%; border-top-color: rgba(118, 216, 189, .9); transform: rotate(-4deg); filter: drop-shadow(0 0 8px rgba(118, 216, 189, .34)); }
.pactum-crossing i:nth-child(3) {
  left: 2%;
  right: 2%;
  bottom: 21%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 219, 245, .82) 38%, #c8fff1 51%, rgba(118, 216, 189, .68) 68%, transparent);
  box-shadow: 0 0 14px rgba(130, 225, 201, .35);
}

.bridge-paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 70px); }
.bridge-paths article { position: relative; min-height: 410px; padding: 34px 6px; }
.bridge-paths article::before { position: absolute; inset: 0; content: ""; border-top: 1px solid rgba(57, 132, 118, .28); border-radius: 50% 50% 0 0; pointer-events: none; }
.bridge-paths .capability-icon { margin: 70px 0 32px; stroke: #3b756d; }
.bridge-paths h3 { color: #13221f; font-family: var(--font-editorial); font-size: 34px; font-weight: 400; }
.bridge-paths p { color: #4a5d59; }
.bridge-paths .chapter-mark { position: absolute; top: 8px; right: 16%; border-color: rgba(51, 139, 122, .45); color: #286d60; }

.bridge-terms { overflow: hidden; }
.terms-ledger { position: relative; display: grid; gap: 1px; padding: 36px 0; }
.terms-ledger::before, .terms-ledger::after { position: absolute; inset: 0; content: ""; pointer-events: none; border-top: 1px solid var(--pactum-line); border-radius: 50% 50% 0 0; }
.terms-ledger::after { inset: 12% -8% auto 8%; height: 70%; border-top-color: rgba(164, 207, 240, .3); transform: rotate(-5deg); }
.terms-ledger > div { position: relative; z-index: 1; display: grid; grid-template-columns: 150px 1fr; gap: 28px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.terms-ledger span { color: #cafff0; font-family: var(--font-editorial); font-size: 23px; }
.terms-ledger p { margin: 0; color: #9fb0ac; }

.bridge-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 44px); margin: 0; padding: 0; list-style: none; }
.bridge-flow li { position: relative; min-height: 230px; padding-top: 14px; }
.bridge-flow li::before { position: absolute; top: 31px; left: 42px; right: -28px; height: 1px; content: ""; background: linear-gradient(90deg, rgba(48, 124, 112, .48), transparent); }
.bridge-flow li:last-child::before { display: none; }
.bridge-flow li > span { position: relative; z-index: 1; display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; background: var(--paper); color: #307d6f; font-family: var(--font-editorial); border: 1px solid rgba(48, 125, 111, .4); }
.bridge-flow b { display: block; margin: 44px 0 12px; color: #12211e; font-family: var(--font-editorial); font-size: 27px; font-weight: 400; }
.bridge-flow p { color: #54635f; font-size: 14px; }

.bridge-admin-key { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.bridge-admin-key span { padding: 10px 14px; border-radius: 999px; background: rgba(65, 133, 121, .13); color: #93aaa5; font-size: 10px; }
.bridge-admin-key b { color: #c9eee4; font-weight: 500; }
.bridge-review-controls { display: grid; grid-template-columns: 1fr 1fr 130px; gap: 14px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.bridge-review-controls label { display: grid; gap: 7px; color: #7f9690; font-size: 10px; text-transform: uppercase; }
.bridge-review-controls label.full { grid-column: 1 / -1; }
.bridge-review-controls textarea { min-height: 100px; }
.bridge-review-actions { display: flex; grid-column: 1 / -1; gap: 10px; }
.bridge-convert { border-color: var(--pactum-line); color: #c9fff1; }
.bridge-full-description { white-space: pre-wrap; }
.bridge-history-heading { margin-top: 64px; }
.bridge-admin-note { display: grid; gap: 8px; padding: 18px; border-left: 2px solid var(--pactum); background: rgba(118, 216, 189, .07); }
.bridge-admin-note b { color: #cafff0; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.conversation-review-controls { display: grid; grid-template-columns: minmax(180px, .4fr) 1fr; gap: 14px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.conversation-review-controls label, .candidate-add label, .candidate-row label { display: grid; gap: 7px; color: #7f9690; font-size: 10px; text-transform: uppercase; }
.conversation-review-controls .full { grid-column: 2; grid-row: 1 / span 2; }
.conversation-review-controls textarea { min-height: 100px; }
.conversation-review-controls .form-status { align-self: center; }
.candidate-section { margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.candidate-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.candidate-heading h4 { margin: 8px 0 0; font-family: var(--font-editorial); font-size: 28px; font-weight: 400; }
.candidate-heading > span { color: #78908b; font-size: 11px; }
.candidate-list { display: grid; gap: 8px; }
.candidate-empty { margin: 0; padding: 16px 0; color: #71838e !important; }
.candidate-row { display: grid; grid-template-columns: minmax(150px, 1.15fr) minmax(120px, .8fr) 80px minmax(170px, 1fr) auto auto; gap: 10px; align-items: end; padding: 16px; border-radius: 20px 6px 20px 6px; background: rgba(118, 216, 189, .045); }
.candidate-row > div { display: grid; gap: 4px; align-self: center; }
.candidate-row > div strong { color: #d7e6e1; font-weight: 500; }
.candidate-row > div small { color: #71838e; }
.candidate-remove { min-height: 42px; border: 0; background: transparent; color: #b88989; cursor: pointer; }
.candidate-add { display: grid; grid-template-columns: 1fr 120px; gap: 12px; margin-top: 18px; padding: 18px; border-radius: 24px 7px 24px 7px; background: rgba(8, 22, 31, .72); }
.candidate-add .full { grid-column: 1 / -1; }
.candidate-add .form-status { align-self: center; }
.status-under-review { color: #f0d6a6; }
.status-accepted, .status-converted { color: #aee7ce; }
.status-declined { color: #efb0b0; }
.dashboard-stats-five { grid-template-columns: repeat(5, 1fr); }
.pactum-route-diagram { position: relative; display: grid; gap: 0; padding: 38px; overflow: hidden; border-radius: 50px 12px 50px 12px; background: radial-gradient(circle at 52% 42%, rgba(118,216,189,.13), transparent 14rem), #07131c; }
.pactum-route-diagram::before, .pactum-route-diagram::after { position: absolute; top: 16%; left: -12%; width: 78%; height: 54%; content: ""; border-top: 1px solid rgba(170, 214, 245, .46); border-radius: 50% 50% 0 0; transform: rotate(8deg); }
.pactum-route-diagram::after { left: 39%; border-top-color: var(--pactum-line); transform: rotate(-8deg); }
.pactum-route-diagram span, .pactum-route-diagram strong { position: relative; z-index: 1; width: fit-content; padding: 13px 18px; border-radius: 999px; background: rgba(5,15,23,.86); color: #a9b9c2; font-size: 11px; font-weight: 500; letter-spacing: .08em; }
.pactum-route-diagram strong { justify-self: center; color: #d8fff4; font-family: var(--font-editorial); font-size: 26px; letter-spacing: 0; }
.pactum-route-diagram span:nth-of-type(2) { justify-self: end; }
.pactum-route-diagram span:nth-of-type(3) { justify-self: center; }
.pactum-route-diagram i { position: relative; z-index: 1; width: 1px; height: 34px; margin: 4px auto; background: linear-gradient(var(--pactum), rgba(140,189,242,.18)); }
.project-detail-shell { min-height: 72vh; }
.project-detail-loading, .project-detail-error { min-height: 66vh; display: grid; align-content: center; justify-items: start; }
.project-detail-loading h1, .project-detail-error h1 { margin: 26px 0; }
.project-file-hero { min-height: 670px; }
.project-file-grid { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr); gap: clamp(50px, 9vw, 150px); }
.project-file-description { max-width: 780px; color: #344b46; font-size: 19px; line-height: 1.75; }
.project-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.project-facts > div { min-height: 170px; padding: 28px; border-radius: 34px 8px 34px 8px; background: radial-gradient(circle at 90% 0, rgba(118,216,189,.1), transparent 10rem), #07111a; }
.project-facts span { display: block; margin-bottom: 52px; color: #78908b; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.project-facts strong { color: #d8e6e2; font-family: var(--font-editorial); font-size: 25px; font-weight: 400; }
.project-detail-progress { margin-top: 54px; }
.project-detail-progress > div { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 12px; color: #9baca8; }
.project-detail-progress > div strong { color: #d4fff3; }
.project-detail-progress > span { display: block; height: 2px; background: rgba(150,192,184,.14); }
.project-detail-progress i { display: block; height: 100%; background: linear-gradient(90deg, #8ec5ef, var(--pactum)); box-shadow: 0 0 12px rgba(118,216,189,.38); }

/* Introductions & Fees — the commercial route follows PACTUM's crossing arcs. */
.fees-hero { min-height: 720px; }
.fees-hero .hero-copy { width: min(58%, 860px); }
.fees-hero .hero-art { inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .88; mask-image: none; filter: saturate(.8) contrast(1.08); }
.fees-hero::after { background: linear-gradient(90deg, var(--ink) 0%, rgba(3,8,13,.97) 27%, rgba(3,8,13,.7) 48%, rgba(3,8,13,.1) 78%, rgba(3,8,13,.38) 100%); }

.fee-principles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(26px, 5vw, 80px); }
.fee-principle { position: relative; min-height: 300px; padding: clamp(34px, 4vw, 58px) 0; }
.fee-principle::before { position: absolute; top: 0; right: 5%; left: 0; height: 44%; content: ""; border-top: 1px solid rgba(52, 132, 117, .32); border-radius: 50% 50% 0 0; }
.fee-principle .chapter-mark { position: relative; z-index: 1; margin-bottom: 54px; border-color: rgba(47, 126, 111, .44); color: #286d60; }
.fee-principle h3 { color: #11201d; font-family: var(--font-editorial); font-size: clamp(31px, 3vw, 44px); font-weight: 400; }
.fee-principle p { max-width: 600px; color: #4c5c58; font-size: 16px; }
.fee-principles-section { position: relative; overflow: hidden; background: #02070b; }
.fee-principles-section::before { position: absolute; inset: 0; content: ""; background: url('/assets/fees-two-sides-v2-optimized.jpg') center / cover no-repeat; opacity: .64; }
.fee-principles-section::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(2,7,11,.2), rgba(2,7,11,.82)), linear-gradient(90deg, rgba(2,7,11,.72), transparent 44%, rgba(2,7,11,.72)); }
.fee-principles-section .shell { position: relative; z-index: 1; }
.fee-principles-section .section-heading h2, .fee-principles-section .fee-principle h3 { color: #effaf7; }
.fee-principles-section .section-heading > p, .fee-principles-section .fee-principle p { color: #a7b8b3; }
.fee-principles-section .fee-principle { padding-inline: clamp(22px, 3vw, 44px); border-radius: 46px 12px 46px 12px; background: rgba(3, 11, 16, .62); backdrop-filter: blur(10px); }
.fee-principles-section .fee-principle::before { right: 10%; left: 10%; border-top-color: rgba(153, 221, 202, .4); }
.fee-principles-section .fee-principle .chapter-mark { border-color: rgba(148, 211, 197, .55); color: #bceee1; }

.fee-framework-intro { max-width: 780px; margin-bottom: clamp(48px, 6vw, 80px); }
.fee-framework-intro p:last-child { max-width: 660px; color: var(--muted); font-size: 18px; }
.fee-table-wrap { overflow-x: auto; border-block: 1px solid var(--line); }
.fee-table { width: 100%; min-width: 700px; border-collapse: collapse; }
.fee-table th,
.fee-table td { padding: 25px clamp(18px, 3vw, 42px); border-bottom: 1px solid var(--line); text-align: left; }
.fee-table tr:last-child td { border-bottom: 0; }
.fee-table th { color: #82968f; font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.fee-table th:first-child,
.fee-table td:first-child { padding-left: 0; }
.fee-table th:last-child,
.fee-table td:last-child { padding-right: 0; }
.fee-table td { color: #d7e1de; }
.fee-table td:first-child { color: #f1f7f5; font-family: var(--font-editorial); font-size: 23px; }
.fee-table strong { color: #cafff0; font-weight: 500; }
.fee-table small { display: block; margin-top: 4px; color: #778a85; }
.fee-table-note { max-width: 820px; margin: 30px 0 0 auto; color: #8fa09b; font-size: 13px; }

.fee-calculator-layout { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(420px, 1.28fr); gap: clamp(46px, 8vw, 130px); align-items: start; }
.fee-calculator-copy { position: sticky; top: 148px; }
.fee-calculator-copy > p:last-child { color: #465651; font-size: 17px; }
.fee-calculator { padding: clamp(30px, 4vw, 54px); border-radius: 46px 12px 46px 12px; background: radial-gradient(circle at 96% 0, rgba(118,216,189,.12), transparent 18rem), #07131c; box-shadow: 0 28px 80px rgba(21, 54, 47, .14); }
.fee-calculator .form-grid { gap: 18px; }
.fee-calculator label { color: #a9bab5; }
.fee-calculator input,
.fee-calculator select { border-color: rgba(151, 202, 191, .3); background: #061019; }
.fee-calculator input:focus,
.fee-calculator select:focus { border-color: var(--pactum); box-shadow: 0 0 0 2px rgba(118,216,189,.14); }
.fee-calculator .button { margin-top: 26px; }
.fee-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 34px; padding-top: 34px; border-top: 1px solid var(--line); }
.fee-result { min-height: 128px; padding: 20px; border-radius: 24px 7px 24px 7px; background: rgba(118,216,189,.055); }
.fee-result span { display: block; min-height: 36px; color: #7f928d; font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.fee-result strong { display: block; margin-top: 15px; color: #e7fff8; font-family: var(--font-editorial); font-size: clamp(24px, 2.5vw, 34px); font-weight: 400; }
.fee-result-total { background: linear-gradient(135deg, rgba(102,173,220,.1), rgba(118,216,189,.12)); }
.fee-result-note { grid-column: 1 / -1; margin: 12px 0 0; color: #91a49e; font-size: 12px; }
.fee-term-field[hidden] { display: none; }

.fee-retainer-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid rgba(17, 48, 40, .14); background: rgba(17, 48, 40, .14); }
.fee-retainer-strip article { min-height: 220px; padding: clamp(28px, 3vw, 44px); background: #fff; }
.fee-retainer-strip span { color: #2e7769; font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.fee-retainer-strip h3 { margin: 34px 0 15px; color: #13201d; font-family: var(--font-editorial); font-size: 29px; font-weight: 400; }
.fee-retainer-strip p { margin: 0; color: #53615d; font-size: 14px; }

.fee-boundaries { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 3vw, 34px); }
.fee-boundary { min-height: 340px; padding: clamp(34px, 4vw, 58px); border-radius: 44px 10px 44px 10px; background: radial-gradient(circle at 90% 4%, rgba(118,216,189,.08), transparent 16rem), #07111a; }
.fee-boundary .micro { color: #99e0ce; }
.fee-boundary h3 { margin: 48px 0 20px; font-family: var(--font-editorial); font-size: 35px; font-weight: 400; }
.fee-boundary p { color: var(--muted); }
.fee-boundary ul { margin: 24px 0 0; padding: 0; list-style: none; }
.fee-boundary li { position: relative; padding: 10px 0 10px 25px; border-bottom: 1px solid var(--line); color: #c0ccc8; font-size: 13px; }
.fee-boundary li::before { position: absolute; top: 19px; left: 0; width: 9px; height: 1px; content: ""; background: linear-gradient(90deg, #9bcdf3, var(--pactum)); }
.section-follow-link { display: flex; justify-content: flex-end; margin-top: 34px; }

@media (max-width: 1280px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu { display: block; }
  .dashboard-stats-five { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .brand .brand-lockup { width: 152px; }
  .brand-context { display: none; }
  .bridge-hero .hero-copy { width: 100%; }
  .pactum-crossing { inset: 38% -28% 0 0; opacity: .55; }
  .bridge-paths, .bridge-flow { grid-template-columns: 1fr; }
  .bridge-paths article { min-height: 330px; }
  .bridge-flow li { min-height: 0; padding-left: 56px; }
  .bridge-flow li::before { top: 48px; bottom: -20px; left: 17px; right: auto; width: 1px; height: auto; background: linear-gradient(rgba(48, 124, 112, .48), transparent); }
  .bridge-flow li > span { position: absolute; left: 0; }
  .bridge-flow b { margin-top: 0; }
  .terms-ledger > div { grid-template-columns: 1fr; gap: 8px; }
  .bridge-review-controls { grid-template-columns: 1fr; }
  .bridge-review-controls label.full, .bridge-review-actions { grid-column: auto; }
  .directory-filters, .conversation-review-controls, .candidate-add, .candidate-row { grid-template-columns: 1fr; }
  .conversation-review-controls .full, .candidate-add .full { grid-column: auto; grid-row: auto; }
  .dashboard-stats-five { grid-template-columns: repeat(2, 1fr); }
  .project-file-grid, .project-facts { grid-template-columns: 1fr; }
  .fees-hero .hero-copy { width: 100%; }
  .fees-hero .hero-art { object-position: 58% center; opacity: .68; }
  .fee-principles,
  .fee-calculator-layout,
  .fee-retainer-strip,
  .fee-boundaries { grid-template-columns: 1fr; }
  .fee-calculator-copy { position: static; }
  .fee-results { grid-template-columns: 1fr; }
  .entry-layout { grid-template-columns: 1fr; }
  .entry-routes { margin-top: 8px; }
  .entry-route { grid-template-columns: minmax(180px, .7fr) minmax(0, 1fr) 24px; }
  .forum-public-boundary { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 560px) {
  .brand .brand-lockup { width: 132px; height: auto; }
  .dashboard-stats-five { grid-template-columns: 1fr; }
  .fee-calculator { padding: 24px; border-radius: 34px 10px 34px 10px; }
  .entry-route { grid-template-columns: minmax(0, 1fr) 24px; gap: 12px; padding-block: 26px; }
  .entry-route p { grid-column: 1 / -1; grid-row: 2; }
  .entry-route svg { grid-column: 2; grid-row: 1; }
}

/* Persistent navigation: PACTUM stays visible while the page moves. */
html { scroll-padding-top: 126px; }

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom-color: rgba(118, 216, 189, .17);
  background: #000;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .16);
}

.site-header + main { padding-top: 104px; }
.site-header .header-inner { position: relative; z-index: 1; }

.site-header .brand-lockup { opacity: 1; filter: brightness(1.08) contrast(1.45); mix-blend-mode: normal; }
.site-footer .brand-lockup { opacity: 1; filter: brightness(1.08) contrast(1.45); mix-blend-mode: screen; }

.site-header::after {
  position: absolute;
  right: 6%;
  bottom: -1px;
  width: min(260px, 22vw);
  height: 20px;
  content: "";
  pointer-events: none;
  border-top: 1px solid rgba(118, 216, 189, .28);
  border-radius: 50% 50% 0 0;
}

@media (max-width: 1280px) {
  html { scroll-padding-top: 116px; }
  .site-header + main { padding-top: 113px; }

  .site-header .header-inner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    min-height: 0;
    gap: 0;
    padding-top: 10px;
  }

  .site-header .brand { grid-row: 1; }
  .site-header .brand .brand-lockup { width: 142px; }
  .site-header .header-cta,
  .site-header .mobile-menu { display: none; }

  .site-header .desktop-nav {
    display: flex;
    grid-row: 2;
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
    gap: 24px;
    padding: 8px 1px 13px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .site-header .desktop-nav::-webkit-scrollbar { display: none; }
  .site-header .desktop-nav a { flex: 0 0 auto; scroll-snap-align: start; }
  .site-header .desktop-nav a::after { bottom: -8px; }
}

@media (max-width: 560px) {
  html { scroll-padding-top: 108px; }
  .site-header + main { padding-top: 108px; }
  .site-header .header-inner { padding-top: 7px; }
  .site-header .brand .brand-lockup { width: 124px; }
  .site-header .desktop-nav { gap: 20px; padding-bottom: 11px; }
  .site-header .desktop-nav a { font-size: 10px; letter-spacing: .01em; }
  .site-header::after { width: 120px; opacity: .7; }
}

/* A small decision layer for visitors. It reuses the three existing public routes. */
.intent-rail {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(159, 198, 210, .09);
  border-bottom: 1px solid rgba(118, 216, 189, .19);
  background: linear-gradient(90deg, rgba(4, 11, 18, .98), rgba(4, 15, 18, .98));
}

.intent-rail-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 54px;
  gap: clamp(28px, 5vw, 78px);
}

.intent-rail-label {
  color: #8fa3ae;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  white-space: nowrap;
}

.intent-route-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-width: 0;
}

.intent-route-link {
  position: relative;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 15px;
  align-items: center;
  min-height: 53px;
  gap: 11px;
  padding: 0 clamp(16px, 2.5vw, 38px);
  color: #dce5e8;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.intent-route-link + .intent-route-link::before {
  position: absolute;
  top: 17px;
  bottom: 17px;
  left: 0;
  width: 12px;
  content: "";
  border-left: 1px solid rgba(145, 187, 193, .22);
  border-radius: 50% 0 0 50%;
}

.intent-route-link::after {
  position: absolute;
  right: clamp(16px, 2.5vw, 38px);
  bottom: -1px;
  left: clamp(16px, 2.5vw, 38px);
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #84c5f3, #76d8bd);
  transform: scaleX(0);
  transform-origin: left;
}

.intent-route-link:hover,
.intent-route-link:focus-visible,
.intent-route-link[aria-current="page"] { color: #fff; }

.intent-route-link:hover::after,
.intent-route-link:focus-visible::after,
.intent-route-link[aria-current="page"]::after { transform: scaleX(1); }

.intent-route-icon,
.intent-route-arrow {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
}

.intent-route-icon { color: #9fd5df; }
.intent-route-arrow { width: 14px; height: 14px; color: #73d5bb; }
.intent-route-menu { display: none; }

body.has-intent-rail .site-header + main { padding-top: 158px; }
html:has(body.has-intent-rail) { scroll-padding-top: 174px; }

@media (max-width: 1280px) {
  body.has-intent-rail .site-header + main { padding-top: 167px; }
  .intent-rail-inner { min-height: 54px; }
  .intent-route-link { padding-inline: clamp(12px, 2vw, 26px); font-size: 12px; }
  .intent-route-link::after { right: clamp(12px, 2vw, 26px); left: clamp(12px, 2vw, 26px); }
}

@media (max-width: 760px) {
  html:has(body.has-intent-rail) { scroll-padding-top: 179px; }
  body.has-intent-rail .site-header + main { padding-top: 167px; }
  .intent-rail-inner { display: block; min-height: 54px; }
  .intent-rail-label,
  .intent-route-links { display: none; }
  .intent-route-menu { position: relative; display: block; }
  .intent-route-menu summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 53px;
    color: #dce5e8;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .18em;
    list-style: none;
    text-transform: uppercase;
  }
  .intent-route-menu summary::-webkit-details-marker { display: none; }
  .intent-route-menu summary svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #76d8bd;
    transform: rotate(90deg);
  }
  .intent-route-menu[open] summary svg { transform: rotate(-90deg); }
  .intent-route-menu nav {
    position: absolute;
    top: 53px;
    right: calc(var(--pad) * -1);
    left: calc(var(--pad) * -1);
    display: grid;
    padding: 7px var(--pad) 12px;
    border-bottom: 1px solid rgba(118, 216, 189, .24);
    background: rgba(2, 9, 13, .99);
    box-shadow: 0 24px 46px rgba(0, 0, 0, .42);
  }
  .intent-route-menu .intent-route-link {
    min-height: 50px;
    padding: 0;
    font-size: 14px;
  }
  .intent-route-menu .intent-route-link + .intent-route-link::before {
    top: 0;
    right: 0;
    bottom: auto;
    width: auto;
    border-top: 1px solid rgba(145, 187, 193, .15);
    border-left: 0;
    border-radius: 0;
  }
  .intent-route-menu .intent-route-link::after { right: 0; left: 0; }
}

@media (max-width: 560px) {
  body.has-intent-rail .site-header + main { padding-top: 162px; }
}
