/* ==========================================================================
   W-Sponsorship — "Two dots, one arc"
   ========================================================================== */

@property --accent { syntax: '<color>'; inherits: true; initial-value: #0A79B8; }
@property --accent-ink { syntax: '<color>'; inherits: true; initial-value: #07629A; }

:root {
  --paper: #FBF2F3;
  --paper-2: #F5E7E9;
  --paper-3: #EEDADD;
  --ink: #0B2540;
  --ink-2: #2C4360;
  --ink-3: #55677C;
  --ink-deep: #071B2F;
  --blue: #0A79B8;
  --blue-ink: #07629A;
  --blue-lt: #6BC0F0;
  --green: #12AB89;
  --green-ink: #0A7560;
  --green-lg: #0C9072;
  --green-lt: #4AD6B2;
  --warm: #EF9A57;
  --line: rgba(11, 37, 64, .13);
  --line-2: rgba(11, 37, 64, .26);
  --line-light: rgba(251, 242, 243, .16);
  --accent: var(--blue);
  --accent-ink: var(--blue-ink);

  --f-display: "Bricolage Grotesque", "Figtree", system-ui, sans-serif;
  --f-text: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-accent: "Instrument Serif", Georgia, "Times New Roman", serif;

  --gutter: clamp(20px, 4.5vw, 64px);
  --maxw: 1320px;
  --header-h: 76px;
  --sec: clamp(88px, 11vw, 168px);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-io: cubic-bezier(.65, 0, .35, 1);
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .04 0 0 0 0 .14 0 0 0 0 .25 0 0 0 .06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  background: var(--paper) var(--grain);
  color: var(--ink);
  font-family: var(--f-text);
  font-size: clamp(1rem, .95rem + .22vw, 1.125rem);
  line-height: 1.62;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
p, h1, h2, h3, h4, ul, ol, dl, dd, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
em { font-style: normal; }
::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }
.band--ink :focus-visible, .menu :focus-visible, .site-footer :focus-visible { outline-color: var(--green-lt); }

.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 200; background: var(--ink); color: var(--paper); padding: 12px 18px; border-radius: 999px; font-weight: 600; text-decoration: none; transition: top .2s; }
.skip-link:focus { top: 12px; }

.wrap { width: 100%; max-width: calc(var(--maxw) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--sec); }
.section--tight-top { padding-top: calc(var(--sec) * .45); }
.section--paper2 { background: var(--paper-2) var(--grain); }
.band { position: relative; padding-block: var(--sec); overflow: hidden; isolation: isolate; }
.band--ink { background: var(--ink); color: var(--paper); }
.band--green { background: var(--green); color: var(--ink); }

/* ---------- type ---------- */
.h1, .h2, .h3 { font-family: var(--f-display); font-weight: 650; color: inherit; }
.h1 { font-size: clamp(2.7rem, 1.4rem + 5.6vw, 6.6rem); line-height: .95; letter-spacing: -.045em; }
.h2 { font-size: clamp(2.1rem, 1.3rem + 3.3vw, 4.25rem); line-height: 1; letter-spacing: -.04em; }
.h3 { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.9rem); line-height: 1.15; letter-spacing: -.025em; }
.h1 em, .h2 em, .h3 em, .hero__sub em, .belief__big em, .model__coda em, .side-panel__q em, .bridge__big em,
.svc__pull em, .closer__title em, .form-done__title em, .footer__tag em, .menu__tag em, .contact-card__tag em, .vm__label, .opps__objective em {
  font-family: var(--f-accent); font-style: italic; font-weight: 400; letter-spacing: -.01em;
}
.h1 em, .h2 em { color: var(--green-lg); font-size: 1.07em; line-height: .8; padding-right: .04em; }
.band--ink .h2 em, .band--ink .h1 em { color: var(--green-lt); }
.lead { font-size: clamp(1.15rem, 1rem + .6vw, 1.5rem); line-height: 1.45; color: var(--ink-2); }
.band--ink .lead { color: rgba(251, 242, 243, .8); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .7em;
  font-family: var(--f-text); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-ink); margin-bottom: clamp(18px, 2.2vw, 28px);
}
.eb-glyph { width: 30px; height: 14px; flex: none; overflow: visible; }
.eb-glyph path { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.eb-glyph circle { fill: currentColor; }
.eb-glyph circle:last-of-type { fill: var(--green); }
.eyebrow--light { color: var(--blue-lt); }
.eyebrow--light .eb-glyph circle:last-of-type { fill: var(--green-lt); }
.eyebrow--ink { color: var(--ink); }
.eyebrow--ink .eb-glyph circle:last-of-type { fill: var(--paper); }

.sec-head { margin-bottom: clamp(40px, 6vw, 88px); max-width: 60rem; }
.sec-head--split { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: clamp(20px, 5vw, 80px); align-items: end; max-width: none; }
.sec-head__aside { color: var(--ink-3); max-width: 26rem; justify-self: end; padding-bottom: .5em; border-left: 2px solid var(--line); padding-left: 1.2em; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .7em; min-height: 44px;
  font-weight: 650; color: var(--blue-ink); text-decoration: none;
  background: linear-gradient(currentColor, currentColor) 0 calc(100% - 8px) / 0 1.5px no-repeat;
  transition: background-size .5s var(--ease);
}
.link-arrow:hover { background-size: calc(100% - 38px) 1.5px; }
.i-arrow { width: 28px; height: 14px; flex: none; overflow: visible; transition: transform .45s var(--ease); }
.i-arrow circle { fill: currentColor; }
.i-arrow path { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
a:hover > .i-arrow, a:hover .i-arrow { transform: translateX(5px); }

/* ---------- buttons: a dot that becomes the fill ---------- */
.btn {
  --bg: transparent; --fg: var(--ink); --dot: var(--ink); --fg-hover: var(--paper); --bd: var(--ink);
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: .8em 1.55em .8em 2.55em;
  border-radius: 999px; border: 1.5px solid var(--bd);
  background: var(--bg); color: var(--fg);
  font-weight: 650; font-size: 1rem; line-height: 1.2; letter-spacing: -.005em; text-decoration: none; text-align: left;
  transition: color .45s var(--ease), border-color .45s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn::before {
  content: ""; position: absolute; left: 1.2em; top: 50%; z-index: -1;
  width: 9px; height: 9px; margin-top: -4.5px; border-radius: 50%;
  background: var(--dot); transform: scale(1);
  transition: transform .7s var(--ease);
}
.btn:hover::before, .btn:focus-visible::before { transform: scale(64); }
.btn:hover, .btn:focus-visible { color: var(--fg-hover); }
.btn:active { transform: translateY(1px); }
.btn--sm { min-height: 44px; font-size: .92rem; padding: .55em 1.2em .55em 2.2em; }
.btn--sm::before { left: 1em; width: 7px; height: 7px; margin-top: -3.5px; }
.btn--lg { min-height: 60px; font-size: 1.08rem; padding-inline: 2.8em 1.8em; }
.btn--blue { --bg: var(--blue); --fg: #fff; --bd: var(--blue); --dot: var(--ink); --fg-hover: #fff; }
.btn--blue:hover { --bd: var(--ink); }
.btn--green { --bg: var(--green); --fg: var(--ink); --bd: var(--green); --dot: var(--paper); --fg-hover: var(--ink); }
.btn--ink { --bg: var(--ink); --fg: var(--paper); --bd: var(--ink); --dot: var(--blue); --fg-hover: #fff; }
.btn--line { --dot: var(--ink); }
.btn--accent { --bg: var(--accent); --bd: var(--accent); --fg: #fff; --dot: var(--ink); --fg-hover: #fff; transition: color .45s var(--ease), border-color .45s var(--ease), background-color .5s var(--ease); }
.band--ink .btn--line { --fg: var(--paper); --bd: rgba(251,242,243,.5); --dot: var(--paper); --fg-hover: var(--ink); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60; height: var(--header-h);
  background: rgba(251, 242, 243, 0); border-bottom: 1px solid transparent;
  transition: transform .5s var(--ease), background-color .35s, border-color .35s;
}
.site-header.is-scrolled { background: var(--paper); border-bottom-color: var(--line); }
.site-header.is-hidden { transform: translateY(-100%); }
.header__inner { height: 100%; display: flex; align-items: center; gap: clamp(16px, 2.5vw, 40px); }
.brand { display: flex; align-items: center; min-height: 44px; margin-right: auto; flex: none; }
.brand__logo { height: 30px; width: auto; }
.brand__logo--light { display: none; }
.nav { position: relative; }
.nav__list { display: flex; gap: clamp(4px, 1vw, 14px); }
.nav__list a {
  display: flex; align-items: center; min-height: 44px; padding: 0 .7em;
  font-size: .95rem; font-weight: 600; text-decoration: none; color: var(--ink-2); transition: color .25s;
}
.nav__list a:hover, .nav__list a[aria-current="page"] { color: var(--ink); }
.nav__dot {
  position: absolute; left: 0; bottom: 2px; width: 6px; height: 6px; margin-left: -3px; border-radius: 50%;
  background: var(--blue); opacity: 0; transition: transform .55s var(--ease), opacity .3s;
}
.nav__dot.no-trans { transition: none; }
html:not(.js) .nav__list a[aria-current="page"] { text-decoration: underline; text-underline-offset: 8px; }

.menu-toggle {
  display: none; align-items: center; gap: 10px; min-height: 44px; min-width: 44px; padding: 0 16px 0 12px;
  border: 1.5px solid var(--ink); border-radius: 999px; background: transparent; font-weight: 650; font-size: .92rem;
}
.menu-toggle__icon { position: relative; width: 22px; height: 12px; }
.menu-toggle__icon i { position: absolute; top: 3px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); transition: transform .5s var(--ease); }
.menu-toggle__icon i:first-child { left: 0; }
.menu-toggle__icon i:last-child { right: 0; background: var(--green); }
.menu-toggle__icon b { position: absolute; left: 3px; right: 3px; top: 6px; height: 1.5px; background: currentColor; transform: scaleX(.2); opacity: 0; transition: transform .5s var(--ease), opacity .3s; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child { transform: translateX(7px); }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child { transform: translateX(-8px); }

/* mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 55; background: var(--ink); color: var(--paper);
  padding-top: calc(var(--header-h) + 16px); overflow-y: auto; overscroll-behavior: contain;
  clip-path: circle(0% at calc(100% - 60px) 38px); transition: clip-path .7s var(--ease-io);
}
.menu.is-open { clip-path: circle(150% at calc(100% - 60px) 38px); }
.menu__inner { position: relative; z-index: 1; min-height: calc(100% - 16px); display: flex; flex-direction: column; justify-content: space-between; gap: 40px; padding-bottom: 32px; }
.menu__list li { opacity: 0; transform: translateY(24px); transition: opacity .5s, transform .7s var(--ease); transition-delay: calc(.12s + var(--i) * .05s); }
.menu.is-open .menu__list li { opacity: 1; transform: none; }
.menu__list a {
  display: flex; align-items: baseline; gap: 16px; padding: 10px 0; min-height: 44px;
  font-family: var(--f-display); font-weight: 600; font-size: clamp(2rem, 9vw, 3.4rem); letter-spacing: -.04em; line-height: 1.05;
  text-decoration: none; border-bottom: 1px solid var(--line-light);
}
.menu__list a[aria-current="page"] { color: var(--green-lt); }
.menu__n { font-family: var(--f-text); font-size: .8rem; font-weight: 600; letter-spacing: .1em; color: var(--blue-lt); transform: translateY(-.9em); }
.menu__tag { font-family: var(--f-display); font-size: 1.5rem; letter-spacing: -.02em; margin-bottom: 12px; }
.menu__tag em { color: var(--green-lt); font-size: 1.1em; }
.menu__contact a { display: inline-flex; min-height: 44px; align-items: center; color: rgba(251,242,243,.8); text-decoration: none; }
.menu__arc { position: absolute; right: -160px; bottom: -120px; width: 520px; opacity: .14; }
.menu__arc path { fill: none; stroke: var(--blue-lt); stroke-width: 3; }
.menu__arc circle { fill: var(--green-lt); }
html.menu-open { overflow: hidden; }
html.menu-open .site-header { background: transparent; border-color: transparent; transform: none; }
html.menu-open .brand__logo--dark { display: none; }
html.menu-open .brand__logo--light { display: block; }
html.menu-open .menu-toggle { color: var(--paper); border-color: rgba(251,242,243,.6); }

/* ==========================================================================
   HOME
   ========================================================================== */

/* ---------- hero ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; display: flex; flex-direction: column;
  min-height: clamp(640px, calc(100svh - var(--header-h)), 940px); }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; }
.hero__grid { flex: 1; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); grid-template-rows: auto 1fr auto;
  column-gap: clamp(24px, 4vw, 64px); padding-block: clamp(24px, 5vh, 60px) clamp(28px, 5vh, 56px); }
.hero__eyebrow { grid-column: 1; grid-row: 1; align-self: start; }
.hero__title { grid-column: 1; grid-row: 2; align-self: center; margin-block: 24px;
  font-family: var(--f-display); font-weight: 700; font-size: clamp(3.3rem, 8.1vw, 9.4rem); line-height: .9; letter-spacing: -.05em; }
.hl { display: block; overflow: hidden; padding: 0 .1em .13em 0; margin-bottom: -.13em; }
.hl__w { display: inline-block; }
.hl__w--impact { font-family: var(--f-accent); font-style: italic; font-weight: 400; color: var(--green-lg); font-size: 1.12em; letter-spacing: -.02em; line-height: .8; }
.js .hl__w { transform: translateY(108%); animation: land 1.15s var(--ease) forwards; animation-delay: calc(.2s + var(--d) * .17s); }
@keyframes land { to { transform: none; } }
.hero__stage { grid-column: 2; grid-row: 1 / span 3; position: relative; min-height: 420px; }
.node { position: absolute; width: 0; height: 0; }
.node--a { left: 80%; top: 16%; }
.node--b { left: 14%; top: 80%; }
.node__dot { position: absolute; left: -12px; top: -12px; width: 24px; height: 24px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 7px rgba(10,121,184,.13); }
.node--b .node__dot { background: var(--green); box-shadow: 0 0 0 7px rgba(18,171,137,.15); }
.node__label { position: absolute; display: grid; gap: 2px; white-space: nowrap; }
.node--a .node__label { right: 26px; bottom: 16px; text-align: right; }
.node--b .node__label { left: 26px; top: 16px; }
.node__label b { font-family: var(--f-display); font-weight: 650; font-size: 1.25rem; letter-spacing: -.02em; }
.node__label small { font-size: .78rem; color: var(--ink-3); letter-spacing: .01em; }
.js .node__label { opacity: 0; animation: fade .9s var(--ease) forwards; animation-delay: .9s; }
.js .node--b .node__label { animation-delay: 1.1s; }
@keyframes fade { to { opacity: 1; } }
.hero__foot { grid-column: 1; grid-row: 3; display: flex; flex-wrap: wrap; align-items: center; gap: 20px 36px; }
.hero__sub { font-family: var(--f-display); font-size: clamp(1.1rem, 1rem + .5vw, 1.4rem); line-height: 1.25; letter-spacing: -.015em; max-width: 22ch; color: var(--ink-2); }
.hero__sub em { color: var(--green-ink); font-size: 1.12em; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.js .hero__foot, .js .hero__eyebrow { opacity: 0; animation: rise 1s var(--ease) forwards; animation-delay: .95s; }
.js .hero__eyebrow { animation-delay: .05s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero__strip { border-top: 1px solid var(--line); background: rgba(251,242,243,.72); }
.strip { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 22px; padding-block: 16px; font-size: .8rem; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); }
.strip li { display: flex; align-items: center; gap: 22px; }
.strip li + li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.strip li:nth-child(odd) + li::before { background: var(--blue); }

/* ---------- intro ---------- */
.intro__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(16px, 2vw, 32px); }
.intro__eyebrow { grid-column: 1 / -1; justify-self: start; }
.intro__lead { grid-column: 1 / span 11; font-family: var(--f-display); font-weight: 500; font-size: clamp(1.6rem, 1rem + 2.6vw, 3.35rem); line-height: 1.1; letter-spacing: -.03em; }
.side-a, .side-b { background-repeat: no-repeat; background-size: 100% 3px; background-position: 0 92%; }
.side-a { color: var(--blue-ink); background-image: linear-gradient(rgba(10,121,184,.35), rgba(10,121,184,.35)); }
.side-b { color: var(--green-ink); background-image: linear-gradient(rgba(18,171,137,.4), rgba(18,171,137,.4)); }
.intro__side { grid-column: 6 / span 6; margin-top: clamp(40px, 5vw, 72px); display: grid; gap: 1.1em; color: var(--ink-2); }
.intro__side .link-arrow { justify-self: start; }

/* ---------- service rows ---------- */
.svc-rows { border-top: 1px solid var(--line-2); }
.svc-row { border-bottom: 1px solid var(--line-2); }
.svc-row__link {
  position: relative; display: grid; grid-template-columns: 4.5rem minmax(0, 1.15fr) minmax(0, 1fr) 3rem; align-items: center; gap: 12px clamp(16px, 3vw, 48px);
  padding: clamp(24px, 3vw, 40px) 0; text-decoration: none; overflow: hidden;
}
.svc-row__link::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0); transform-origin: 0 50%; transition: transform .9s var(--ease); }
.svc-row__link:hover::after, .svc-row__link:focus-visible::after { transform: scaleX(1); }
.svc-row__num { font-size: .85rem; font-weight: 700; letter-spacing: .1em; color: var(--blue-ink); }
.svc-row__title { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.5rem, 1rem + 1.9vw, 2.6rem); line-height: 1.02; letter-spacing: -.035em; transition: transform .6s var(--ease); }
.svc-row__text { color: var(--ink-3); max-width: 34rem; }
.svc-row__go { justify-self: end; width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; color: var(--ink);
  transition: background-color .4s, border-color .4s, color .4s; }
.svc-row__go .i-arrow { width: 22px; }
.svc-row__link:hover .svc-row__title { transform: translateX(10px); }
.svc-row__link:hover .svc-row__go { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ---------- belief ---------- */
.belief { padding-block: clamp(110px, 14vw, 210px); }
.belief__arc { position: absolute; left: 50%; bottom: 0; width: min(1000px, 130vw); transform: translateX(-50%); z-index: -1; overflow: visible; }
.belief__arc path { fill: none; stroke: rgba(107,192,240,.25); stroke-width: 2; stroke-dasharray: 1; stroke-dashoffset: 0; }
.belief__arc circle:first-of-type { fill: var(--blue); }
.belief__arc circle:last-of-type { fill: var(--green); }
.js .belief__arc path { stroke-dashoffset: 1; transition: stroke-dashoffset 2.4s var(--ease-io) .2s; }
.js .belief__arc.is-in path { stroke-dashoffset: 0; }
.belief__inner > * { max-width: 1120px; }
.belief__lead { font-size: clamp(1.1rem, 1rem + .6vw, 1.45rem); color: rgba(251,242,243,.72); margin-bottom: 1.1em; }
.belief__big { font-family: var(--f-display); font-weight: 500; font-size: clamp(2rem, 1.1rem + 3.6vw, 4.6rem); line-height: 1.04; letter-spacing: -.04em; }
.k { position: relative; font-family: var(--f-accent); font-style: italic; font-weight: 400; letter-spacing: -.01em; font-size: 1.08em; }
.k--a { color: var(--blue-lt); }
.k--b { color: var(--green-lt); }
.belief--compact .belief__big { font-size: clamp(1.8rem, 1rem + 2.8vw, 3.6rem); }

/* ---------- model ---------- */
.model__viz { position: relative; }
.model__svg { width: 100%; height: auto; overflow: visible; }
.model__lead { fill: none; stroke: var(--line-2); stroke-width: 2; stroke-dasharray: 2 8; stroke-linecap: round; }
.model__drops path { fill: none; stroke: var(--line-2); stroke-width: 1.5; stroke-dasharray: 2 6; stroke-linecap: round; }
.model__base { fill: none; stroke: var(--line-2); stroke-width: 2.5; }
.model__trail { fill: none; stroke: var(--blue); stroke-width: 4; stroke-linecap: round; }
.model__stop { fill: var(--paper); stroke: var(--line-2); stroke-width: 2.5; transition: fill .5s, stroke .5s; }
html:not(.js) .model__stop, .model__stop.is-lit { fill: var(--blue); stroke: var(--blue); }
html:not(.js) .model__stop:last-child, .model__stop:last-child.is-lit { fill: var(--green); stroke: var(--green); }
.model__runner { display: none; }
.model__runner circle:last-child { fill: var(--ink); }
.model__halo { fill: rgba(10,121,184,.16); }
.model.is-ready .model__runner { display: inline; }
.model__stages { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0 clamp(16px, 2vw, 32px); margin-top: 18px; }
.stage { text-align: center; padding-inline: clamp(0px, 1vw, 16px); transition: opacity .6s; }
.stage__num { display: block; font-size: .8rem; font-weight: 700; letter-spacing: .12em; color: var(--blue-ink); }
.stage__title { font-family: var(--f-display); font-weight: 650; font-size: clamp(1.7rem, 1rem + 2vw, 2.8rem); letter-spacing: -.04em; line-height: 1.1; margin: 4px 0 8px; }
.stage p { color: var(--ink-3); font-size: .98rem; max-width: 18rem; margin-inline: auto; }
.stage--impact .stage__title { font-family: var(--f-accent); font-style: italic; font-weight: 400; color: var(--green-lg); font-size: clamp(2rem, 1.1rem + 2.4vw, 3.3rem); letter-spacing: -.01em; line-height: .95; }
.model.is-ready .stage { opacity: .4; }
.model.is-ready .stage.is-lit { opacity: 1; }
.model__vline { display: none; }
.model__coda { margin-top: clamp(56px, 7vw, 100px); text-align: right; font-family: var(--f-display); font-weight: 650; font-size: clamp(1.8rem, 1rem + 3vw, 4rem); letter-spacing: -.045em; line-height: 1; }
.model__coda em { color: var(--green-lg); font-size: 1.08em; }

/* ---------- sides switch ---------- */
.sides { background: var(--paper-2) var(--grain); transition: --accent .6s var(--ease); }
.sides[data-side="1"] { --accent: var(--green-ink); }
.sides__top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px 40px; margin-bottom: clamp(48px, 6vw, 96px); }
.sides__top .eyebrow { margin: 0; }
.seg { position: relative; display: grid; grid-template-columns: 1fr 1fr; padding: 6px; border-radius: 999px; background: var(--paper); border: 1.5px solid var(--line-2); width: min(100%, 640px); margin: 0; }
.seg__btn { position: relative; z-index: 1; min-height: 64px; padding: 8px 18px 8px 34px; border: 0; background: none; border-radius: 999px;
  font-family: var(--f-display); font-weight: 600; font-size: clamp(1rem, .9rem + .6vw, 1.35rem); letter-spacing: -.02em; color: var(--ink-2); transition: color .45s var(--ease); }
.seg__btn[aria-selected="true"] { color: #fff; }
.seg__btn:focus-visible { outline-offset: -4px; }
.seg__thumb { position: absolute; top: 6px; bottom: 6px; left: 6px; width: calc(50% - 6px); border-radius: 999px; background: var(--accent); transition: transform .65s var(--ease); }
.sides[data-side="1"] .seg__thumb { transform: translateX(100%); }
.seg__thumb::before { content: ""; position: absolute; top: 50%; left: 20px; width: 8px; height: 8px; margin-top: -4px; border-radius: 50%; background: rgba(255,255,255,.9); }
html:not(.js) .sides .seg { display: none; }
.sides__panels { display: grid; gap: 64px; }
.js .sides__panels { gap: 0; }
.js .side-panel { grid-area: 1 / 1; }
.side-panel { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 96px); align-items: start; }
.js .side-panel { transition: opacity .55s var(--ease), transform .8s var(--ease), visibility 0s; }
.js .side-panel:not(.is-active) { opacity: 0; transform: translateY(18px); visibility: hidden; transition: opacity .35s, transform .5s, visibility 0s .5s; }
.side-panel__q { font-family: var(--f-display); font-weight: 650; font-size: clamp(2.1rem, 1.1rem + 3.9vw, 5rem); line-height: .98; letter-spacing: -.045em; }
.side-panel__q em { color: var(--accent); font-size: 1.07em; }
.side-panel__body { display: grid; gap: 24px; justify-items: start; padding-top: .6em; }
.side-panel__body p { color: var(--ink-2); font-size: 1.1rem; }
.mini-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.mini-chips li { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 10px; border-radius: 999px; border: 1px solid var(--line-2); font-size: .9rem; font-weight: 600; background: var(--paper); }
.mini-chips li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.mini-chips--blue li::before { background: var(--blue); }

/* ---------- global outlook ---------- */
.globe__title { max-width: 14ch; font-size: clamp(2.3rem, 1.2rem + 4.4vw, 5.6rem); }
.globe__body { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px clamp(24px, 4vw, 64px); max-width: 860px; margin: clamp(28px, 3vw, 44px) 0 0 auto; color: rgba(251,242,243,.8); }
.globe__figure { margin-top: clamp(40px, 6vw, 90px); }
.map { position: relative; }
.map__svg { width: 100%; height: auto; overflow: visible; }
.map__land { fill: none; stroke: rgba(251,242,243,.3); stroke-width: .42; stroke-linecap: round; }
.map__arc { fill: none; stroke: var(--blue-lt); stroke-width: .22; stroke-linecap: round; opacity: .8; stroke-dasharray: 1; stroke-dashoffset: 0; }
.map__arc:nth-child(even) { stroke: var(--green-lt); }
.js .map__arc { stroke-dashoffset: 1; transition: stroke-dashoffset 2s var(--ease-io); transition-delay: calc(.3s + var(--i) * .18s); }
.js .is-in .map__arc { stroke-dashoffset: 0; }
.map__runner { fill: #fff; opacity: 0; }
.map__nodes { position: absolute; inset: 0; pointer-events: none; }
.map__node { position: absolute; width: 0; height: 0; }
.map__dot { position: absolute; left: -8px; top: -8px; width: 16px; height: 16px; border-radius: 50%; background: var(--green-lt); box-shadow: 0 0 0 5px rgba(74,214,178,.2); }
.map__dot::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 1.5px solid var(--green-lt); animation: ping 3s var(--ease) infinite; }
.map__node:nth-child(2) .map__dot::after { animation-delay: .6s; }
.map__node:nth-child(3) .map__dot::after { animation-delay: 1.2s; }
.map__node:nth-child(4) .map__dot::after { animation-delay: 1.8s; }
.map__node:nth-child(5) .map__dot::after { animation-delay: 2.4s; }
@keyframes ping { 0% { transform: scale(.6); opacity: .9; } 80%, 100% { transform: scale(2.6); opacity: 0; } }
.map__label { position: absolute; top: -.8em; white-space: nowrap; font-family: var(--f-display); font-weight: 600; font-size: clamp(.8rem, .6rem + .9vw, 1.35rem); letter-spacing: -.02em; line-height: 1.6;
  padding: 0 .55em; border-radius: 999px; background: var(--ink); }
.map__node--r .map__label { left: 14px; }
.map__node--l .map__label { right: 14px; }
.globe__caption { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line-light); font-size: .95rem; color: rgba(251,242,243,.75); }
.globe__caption span { display: inline-flex; align-items: center; gap: 8px; color: var(--paper); font-weight: 650; }
.globe__caption span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green-lt); }

/* ---------- CTA ---------- */
.cta__title { display: flex; flex-wrap: wrap; align-items: center; gap: 0 .12em; font-family: var(--f-display); font-weight: 700; font-size: clamp(3.6rem, 1rem + 11vw, 13rem); line-height: .9; letter-spacing: -.06em; }
.cta__w--b { color: var(--blue); }
.cta__arc { width: .95em; height: auto; overflow: visible; }
.cta__arc path { fill: none; stroke: var(--ink); stroke-width: 7; stroke-linecap: round; stroke-dasharray: 1; }
.cta__arc circle:first-of-type { fill: var(--ink); }
.cta__arc circle:last-of-type { fill: var(--green); }
.js .cta__arc path { stroke-dashoffset: 1; transition: stroke-dashoffset 1.4s var(--ease-io) .35s; }
.js .is-in .cta__arc path { stroke-dashoffset: 0; }
.cta__row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 32px 64px; align-items: end; margin-top: clamp(40px, 5vw, 72px); padding-top: clamp(28px, 3vw, 40px); border-top: 1px solid var(--line-2); }
.cta__text { font-size: clamp(1.15rem, 1rem + .6vw, 1.5rem); line-height: 1.4; max-width: 34rem; color: var(--ink-2); }
.cta__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; }
.cta__contact a { display: inline-flex; align-items: center; min-height: 44px; font-weight: 600; text-decoration: none; color: var(--ink-2); }
.cta__contact a:hover { color: var(--blue-ink); }
.cta--compact .cta__title { font-size: clamp(3.2rem, 1rem + 8vw, 9.5rem); }

/* ==========================================================================
   INNER PAGES
   ========================================================================== */

/* ---------- page hero ---------- */
.page-hero { position: relative; isolation: isolate; overflow: hidden; padding-block: clamp(56px, 9vw, 140px) clamp(64px, 9vw, 130px); }
.page-hero__inner { position: relative; }
.page-hero__title { max-width: 15ch; }
.page-hero__lead { max-width: 40rem; margin-top: clamp(24px, 3vw, 40px); }
.page-hero .btn { margin-top: clamp(28px, 3vw, 40px); }
.page-hero__arc { position: absolute; right: max(-160px, -12vw); top: 10%; width: min(640px, 62vw); z-index: -1; overflow: visible; }
.page-hero__arc path { fill: none; stroke: var(--blue); stroke-width: 3; opacity: .28; stroke-dasharray: 1; }
.page-hero__arc circle:first-of-type { fill: var(--blue); }
.page-hero__arc circle:last-of-type { fill: var(--green); }
.js .page-hero__arc path { stroke-dashoffset: 1; animation: draw 2.2s var(--ease-io) .3s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.page-hero__rings { position: absolute; right: max(-220px, -16vw); top: 50%; width: min(700px, 70vw); transform: translateY(-50%); z-index: -1; overflow: visible; }
.page-hero__rings circle { fill: none; stroke: var(--line-2); stroke-width: 1.5; stroke-dasharray: 2 7; stroke-linecap: round; }
.page-hero__rings .page-hero__core { fill: var(--green); stroke: none; }
.page-hero__rings .page-hero__orbiter { fill: var(--blue); stroke: none; transform-origin: 300px 300px; animation: orbit 14s linear infinite; }
@keyframes orbit { to { transform: rotate(360deg); } }
.js .page-hero .page-hero__inner > * { opacity: 0; animation: rise 1s var(--ease) forwards; }
.js .page-hero .page-hero__inner > *:nth-child(2) { animation-delay: .12s; }
.js .page-hero .page-hero__inner > *:nth-child(3) { animation-delay: .24s; }
.js .page-hero .page-hero__inner > *:nth-child(4) { animation-delay: .36s; }

/* ---------- lists ---------- */
.dot-list { display: grid; gap: 0 clamp(20px, 3vw, 48px); }
.dot-list--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dot-list li { position: relative; padding: 12px 0 12px 26px; border-top: 1px solid var(--line); line-height: 1.35; }
.dot-list li::before { content: ""; position: absolute; left: 2px; top: calc(12px + .675em - 4px); width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid var(--blue); }
.dot-list li:nth-child(3n+2)::before { border-color: var(--green); }
.dot-list li:hover::before { background: currentColor; }

/* ---------- chips ---------- */
.chips { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 10px; }
.chip {
  position: relative; display: inline-flex; align-items: center; gap: .55em; padding: .5em 1.05em .5em .8em;
  border: 1.5px solid var(--line-2); border-radius: 999px; background: var(--paper); line-height: 1.15;
  font-weight: 600; letter-spacing: -.01em; transition: border-color .35s, background-color .35s, color .35s, transform .5s var(--ease);
}
.chip::before { content: ""; flex: none; width: .42em; height: .42em; border-radius: 50%; background: var(--blue); transition: transform .5s var(--ease); }
.chip:nth-child(3n+1)::before { background: var(--green); }
.chip::after {
  content: ""; position: absolute; left: .95em; right: 1.1em; bottom: 100%; height: .8em; margin-bottom: -.2em;
  border: 1.5px solid currentColor; border-bottom: 0; border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  clip-path: inset(0 100% 0 0); transition: clip-path .55s var(--ease); pointer-events: none; opacity: .55;
}
.chip:hover { border-color: var(--ink); transform: translateY(-2px); }
.chip:hover::after { clip-path: inset(0 0 0 0); }
.chip:hover::before { transform: scale(1.5); }
.chip--s { font-size: .92rem; }
.chip--m { font-size: 1.05rem; }
.chip--l { font-size: clamp(1.15rem, 1rem + .5vw, 1.4rem); }
.chip--xl { font-size: clamp(1.3rem, 1rem + 1vw, 1.9rem); font-family: var(--f-display); font-weight: 600; letter-spacing: -.03em; }
.chips--compact .chip { font-size: 1rem; font-family: var(--f-text); font-weight: 600; letter-spacing: -.005em; }
.chips--dark .chip { background: transparent; border-color: rgba(251,242,243,.28); color: var(--paper); }
.chips--dark .chip:hover { border-color: var(--paper); background: rgba(251,242,243,.06); }
.chips--dark .chip::before { background: var(--blue-lt); }
.chips--dark .chip:nth-child(3n+1)::before { background: var(--green-lt); }
.chips--green .chip:nth-child(4n+2) { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chips--green .chip:nth-child(4n+2)::before { background: var(--green-lt); }
.js .chips[data-reveal] { opacity: 1; transform: none; }
.js .chips[data-reveal] .chip { opacity: 0; transform: translateY(14px) scale(.96); transition: opacity .5s, transform .7s var(--ease), border-color .35s, background-color .35s; transition-delay: calc(var(--i) * 40ms); }
.js .chips[data-reveal].is-in .chip { opacity: 1; transform: none; }
.js .chips[data-reveal].is-in .chip:hover { transform: translateY(-2px); transition-delay: 0s; }

/* ---------- about: bridge ---------- */
.bridge__grid { position: relative; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(16px, 2vw, 32px); padding-top: 70px; }
.bridge__arc { position: absolute; top: -24px; left: calc(100% * 5 / 24); right: calc(100% * 5 / 24); width: calc(100% * 14 / 24); height: 94px; overflow: visible; }
.bridge__arc path { fill: none; stroke: var(--line-2); stroke-width: 2; stroke-dasharray: 1; }
.js .bridge__arc path { stroke-dashoffset: 1; transition: stroke-dashoffset 1.8s var(--ease-io) .3s; }
.js .bridge__arc.is-in path { stroke-dashoffset: 0; }
.bridge__side { position: relative; padding: clamp(28px, 3vw, 44px); border-radius: 28px; background: var(--paper-2); }
.bridge__side--a { grid-column: 1 / span 5; align-self: start; }
.bridge__side--b { grid-column: 8 / span 5; background: var(--ink); color: var(--paper); }
.bridge__pin { position: absolute; top: -12px; left: calc(50% - 12px); width: 24px; height: 24px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 6px var(--paper); }
.bridge__side--b .bridge__pin { background: var(--green); }
.bridge__label { font-family: var(--f-display); font-weight: 650; font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.1rem); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 14px; }
.bridge__text { color: var(--ink-2); margin-bottom: 22px; }
.bridge__side--b .bridge__text { color: rgba(251,242,243,.8); }
.bridge__side--b .dot-list li { border-color: var(--line-light); }
.bridge__side--b .dot-list li::before { border-color: var(--blue-lt); }
.bridge__side--b .dot-list li:nth-child(3n+2)::before { border-color: var(--green-lt); }
.bridge__statement { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 20px clamp(24px, 5vw, 80px); align-items: end; margin-top: clamp(56px, 7vw, 110px); }
.bridge__big { font-family: var(--f-display); font-weight: 650; font-size: clamp(2.2rem, 1.2rem + 3.8vw, 4.9rem); line-height: .98; letter-spacing: -.045em; }
.bridge__big em { color: var(--green-lg); font-size: 1.07em; }
.bridge__small { color: var(--ink-2); font-size: 1.1rem; padding-bottom: .4em; }

/* ---------- vision / mission ---------- */
.vm__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(16px, 2vw, 32px); row-gap: clamp(48px, 6vw, 96px); }
.vm__item--vision { grid-column: 1 / span 8; }
.vm__item--mission { grid-column: 5 / span 8; }
.vm__label { display: flex; align-items: center; gap: 14px; font-size: clamp(1.8rem, 1.2rem + 2vw, 3rem); color: var(--blue-ink); margin-bottom: 16px; line-height: 1; }
.vm__item--mission .vm__label { color: var(--green-ink); }
.vm__dot { width: 14px; height: 14px; border-radius: 50%; background: currentColor; flex: none; }
.vm__text { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.45rem, 1rem + 1.7vw, 2.55rem); line-height: 1.15; letter-spacing: -.03em; padding-left: 28px; border-left: 2px solid var(--line); }

/* ---------- why ---------- */
.why__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); gap: clamp(40px, 6vw, 110px); align-items: start; }
.why__head { position: sticky; top: calc(var(--header-h) + 32px); }
.why__head .lead { margin-top: 22px; }
.why__sides { display: flex; align-items: center; gap: 10px; margin-top: 34px; }
.why__sides svg { width: 96px; overflow: visible; }
.why__sides path { fill: none; stroke: var(--ink); stroke-width: 2; }
.why__sides circle:first-of-type { fill: var(--blue); }
.why__sides circle:last-of-type { fill: var(--green); }
.why__pill { padding: 8px 16px; border-radius: 999px; font-weight: 650; font-size: .92rem; }
.why__pill--a { background: var(--blue); color: #fff; }
.why__pill--b { background: var(--green); color: var(--ink); }
.why__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(24px, 3vw, 48px); counter-reset: why; }
.why__list li { position: relative; padding: 26px 0 30px; border-top: 1.5px solid var(--line-2); counter-increment: why; }
.why__list li:nth-child(even) { transform: translateY(48px); }
.why__list h3 { display: flex; align-items: center; gap: 12px; font-family: var(--f-display); font-weight: 650; font-size: clamp(1.3rem, 1.05rem + .8vw, 1.7rem); letter-spacing: -.03em; margin-bottom: 8px; }
.why__list h3::before { content: "0" counter(why); font-family: var(--f-text); font-size: .75rem; font-weight: 700; letter-spacing: .1em; color: var(--blue-ink); }
.why__list p { color: var(--ink-3); }

/* ---------- relationship chain ---------- */
.srm__head { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 20px clamp(24px, 5vw, 80px); align-items: end; }
.srm__head .eyebrow { grid-column: 1 / -1; justify-self: start; margin-bottom: 0; }
.srm__title { max-width: 18ch; }
.srm__lead { padding-bottom: .3em; }
.chain { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin-top: clamp(56px, 7vw, 110px); }
.chain__item { position: relative; display: grid; gap: 6px; padding: 64px 12px 0 0; }
.chain__dot { position: absolute; top: 18px; left: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--paper); border: 2.5px solid var(--blue); z-index: 1; transition: background-color .5s; transition-delay: calc(.2s + var(--i) * .25s); }
.chain__item:last-child .chain__dot { border-color: var(--green); background: var(--green); }
.chain__item:not(:last-child)::after {
  content: ""; position: absolute; left: 11px; width: 100%; height: 34px; top: -5px;
  border: 2px solid var(--line-2); border-bottom: 0; border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.chain__item:nth-child(even):not(:last-child)::after { top: 29px; border-bottom: 2px solid var(--line-2); border-top: 0; border-radius: 0 0 50% 50% / 0 0 100% 100%; }
.chain__n { font-size: .78rem; font-weight: 700; letter-spacing: .1em; color: var(--blue-ink); }
.chain__t { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.2rem, .95rem + .9vw, 1.75rem); letter-spacing: -.03em; line-height: 1.08; }
.js .chain[data-reveal] { opacity: 1; transform: none; }
.js .chain .chain__item { opacity: 0; transform: translateY(16px); transition: opacity .6s, transform .8s var(--ease); transition-delay: calc(var(--i) * .15s); }
.js .chain.is-in .chain__item { opacity: 1; transform: none; }
.js .chain.is-in .chain__dot { background: var(--blue); }
.srm__foot { margin-top: clamp(48px, 6vw, 80px); max-width: 40rem; margin-left: auto; font-size: 1.15rem; color: var(--ink-2); padding-left: 24px; border-left: 3px solid var(--green); }

/* ---------- values ---------- */
.values__list { border-top: 1.5px solid var(--ink); }
.value { position: relative; display: grid; grid-template-columns: 4rem minmax(0, 1.1fr) minmax(0, 1fr); gap: 8px clamp(16px, 3vw, 48px); align-items: baseline; padding: clamp(20px, 2.4vw, 32px) 0; border-bottom: 1px solid var(--line-2); }
.value__n { font-size: .8rem; font-weight: 700; letter-spacing: .1em; color: var(--blue-ink); }
.value__word { font-family: var(--f-display); font-weight: 650; font-size: clamp(2.1rem, 1.2rem + 3.6vw, 5rem); line-height: 1; letter-spacing: -.05em; transition: transform .6s var(--ease), color .4s; }
.value__word::after { content: ""; display: inline-block; width: .16em; height: .16em; margin-left: .06em; border-radius: 50%; background: var(--blue); vertical-align: baseline; }
.value--impact .value__word { font-family: var(--f-accent); font-style: italic; font-weight: 400; color: var(--green-lg); letter-spacing: -.01em; font-size: clamp(2.3rem, 1.3rem + 4vw, 5.5rem); }
.value--impact .value__word::after { background: var(--green); }
.value__text { color: var(--ink-3); max-width: 28rem; font-size: 1.05rem; }
.value:hover .value__word { transform: translateX(12px); }

/* ---------- services ---------- */
.svc-hero { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 110px); align-items: end; }
.svc-index ol { border-top: 1.5px solid var(--ink); }
.svc-index a { display: flex; align-items: center; gap: 18px; min-height: 52px; padding: 8px 0; border-bottom: 1px solid var(--line-2); text-decoration: none; font-weight: 600; transition: padding-left .5s var(--ease), color .3s; }
.svc-index a span { width: 2.2em; font-size: .78rem; font-weight: 700; letter-spacing: .1em; color: var(--blue-ink); }
.svc-index a:hover { padding-left: 10px; color: var(--blue-ink); }
.svc { position: relative; padding-block: clamp(72px, 9vw, 140px); border-top: 1px solid var(--line-2); }
.svc--paper2 { background: var(--paper-2) var(--grain); }
.svc.band { border-top: 0; }
.svc__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr); gap: clamp(36px, 6vw, 110px); align-items: start; }
.svc__head { position: sticky; top: calc(var(--header-h) + 32px); }
.svc__num { display: flex; align-items: center; gap: .12em; font-family: var(--f-display); font-weight: 700; font-size: clamp(4.5rem, 2rem + 8vw, 10rem); line-height: .8; letter-spacing: -.07em; color: var(--blue); margin-bottom: 20px; }
.svc__num::after { content: ""; width: .12em; height: .12em; border-radius: 50%; background: var(--green); align-self: flex-end; margin-bottom: .04em; }
.svc__name { font-family: var(--f-display); font-weight: 650; font-size: clamp(2rem, 1.2rem + 2.6vw, 3.5rem); line-height: 1; letter-spacing: -.045em; }
.svc__kicker { margin-top: 14px; font-family: var(--f-accent); font-style: italic; font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem); color: var(--green-ink); line-height: 1.1; }
.svc__body { display: grid; gap: 18px; padding-top: clamp(8px, 2vw, 32px); }
.svc__body > p { color: var(--ink-2); max-width: 40rem; }
.svc__lead { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.45rem, 1.05rem + 1.4vw, 2.3rem) !important; line-height: 1.15; letter-spacing: -.03em; color: var(--ink) !important; }
.svc__listhead { margin-top: 18px; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-ink) !important; }
.svc__pull { margin-top: clamp(28px, 4vw, 56px); padding: clamp(24px, 3vw, 40px); border-radius: 28px; background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.svc__pull p { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.4rem, 1.05rem + 1.3vw, 2.2rem); line-height: 1.12; letter-spacing: -.03em; max-width: 26ch; }
.svc__pull em { color: var(--green-lt); font-size: 1.1em; }
.svc__pull::after { content: ""; position: absolute; right: -40px; bottom: -70px; width: 180px; height: 180px; border-radius: 50%; border: 2px solid rgba(107,192,240,.3); }
.svc--cycle .svc__num { color: var(--blue-lt); }
.svc--cycle .svc__kicker { color: var(--green-lt); }
.svc__lead--light { color: var(--paper) !important; margin-top: 28px; font-size: clamp(1.25rem, 1rem + .9vw, 1.7rem) !important; }
.svc__listhead--light { color: var(--blue-lt) !important; margin-top: 28px; }
.svc__flow { margin-top: 10px; font-weight: 600; color: rgba(251,242,243,.85); line-height: 1.8; }
.svc__flow span { color: var(--green-lt); padding-inline: .15em; }
.svc--cycle .svc__grid { align-items: center; }
.svc--cycle .svc__head { position: static; }

/* ---------- partnership cycle ---------- */
.cycle { width: 100%; max-width: 560px; margin-inline: auto; }
.cycle__ring { position: relative; aspect-ratio: 1; max-width: 100%; }
.cycle__svg, .cycle__orbit { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.cycle__track { fill: none; stroke: rgba(251,242,243,.2); stroke-width: 2; }
.cycle__inner { fill: rgba(251,242,243,.035); stroke: rgba(251,242,243,.1); stroke-width: 1; stroke-dasharray: 2 6; }
.cycle__ticks circle { fill: rgba(251,242,243,.4); }
.cycle__orbit { transition: transform 1s var(--ease); }
.cycle__orbit path { fill: none; stroke: var(--green-lt); stroke-width: 5; stroke-linecap: round; }
.cycle__halo { fill: var(--green-lt); }
.cycle__center { position: absolute; inset: 22%; display: grid; place-content: center; text-align: center; gap: 4px; }
.cycle__num { font-size: .8rem; font-weight: 700; letter-spacing: .14em; color: var(--blue-lt); }
.cycle__word { font-family: var(--f-display); font-weight: 650; font-size: clamp(2rem, 1.2rem + 2.6vw, 3.4rem); letter-spacing: -.045em; line-height: 1.05; }
.cycle__next { font-size: .9rem; color: rgba(251,242,243,.65); }
.cycle__center.is-swap > * { animation: swap .6s var(--ease); }
@keyframes swap { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.cycle__step { position: absolute; width: 0; height: 0; padding: 0; border: 0; background: none; color: var(--paper); }
.cycle__dot { position: absolute; left: -22px; top: -22px; width: 44px; height: 44px; border-radius: 50%; display: block; }
.cycle__dot::before { content: ""; position: absolute; inset: 13px; border-radius: 50%; background: var(--ink); border: 2.5px solid rgba(251,242,243,.55); transition: background-color .4s, border-color .4s, transform .5s var(--ease); }
.cycle__step:hover .cycle__dot::before { border-color: var(--paper); transform: scale(1.2); }
.cycle__step.is-active .cycle__dot::before { background: var(--green-lt); border-color: var(--green-lt); transform: scale(1.25); }
.cycle__label { position: absolute; top: -.8em; white-space: nowrap; font-weight: 650; font-size: .98rem; line-height: 1.6; padding: 0 .2em; transition: color .3s; color: rgba(251,242,243,.75); }
.cycle__step.is-active .cycle__label { color: var(--paper); }
.cycle__step--r .cycle__label { left: 28px; }
.cycle__step--l .cycle__label { right: 28px; }
.cycle__step--t .cycle__label { left: 50%; top: auto; bottom: 26px; transform: translateX(-50%); }
.cycle__step--b .cycle__label { left: 50%; top: 26px; transform: translateX(-50%); }
.cycle__n { font-size: .7rem; letter-spacing: .1em; color: var(--blue-lt); margin-right: 4px; }
.cycle__step:focus-visible { outline: none; }
.cycle__step:focus-visible .cycle__dot { outline: 3px solid var(--green-lt); outline-offset: 0; }
.cycle__linear { display: none; }

/* ---------- categories ---------- */
.cats__list { border-top: 1.5px solid var(--ink); counter-reset: cat; }
.cat { display: grid; grid-template-columns: 4rem minmax(0, 1fr) minmax(0, 1fr); gap: 8px clamp(16px, 3vw, 48px); align-items: baseline; padding: clamp(22px, 2.6vw, 34px) 0; border-bottom: 1px solid var(--line-2); transition: background-color .4s; }
.cat__n { font-size: .8rem; font-weight: 700; letter-spacing: .1em; color: var(--blue-ink); }
.cat__name { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.55rem, 1.05rem + 1.8vw, 2.7rem); letter-spacing: -.04em; line-height: 1.02; }
.cat__text { color: var(--ink-3); max-width: 32rem; }
.cat__name::before { content: ""; display: inline-block; width: 0; height: .22em; border-radius: 99px; background: var(--green); vertical-align: middle; margin-right: 0; transition: width .5s var(--ease), margin-right .5s var(--ease); }
.cat:hover .cat__name::before { width: .9em; margin-right: .25em; }

/* ---------- duo cards ---------- */
.duo { padding-block: clamp(64px, 8vw, 120px); }
.duo__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); }
.duo__card { position: relative; overflow: hidden; display: grid; gap: 18px; align-content: space-between; min-height: 300px; padding: clamp(28px, 3.5vw, 48px); border-radius: 30px; text-decoration: none; border: 1.5px solid var(--line-light); transition: border-color .4s, transform .6s var(--ease); isolation: isolate; }
.duo__card::before { content: ""; position: absolute; right: 36px; top: 40px; width: 12px; height: 12px; border-radius: 50%; background: var(--blue-lt); z-index: -1; transition: transform .9s var(--ease); }
.duo__card--b::before { background: var(--green-lt); }
.duo__card:hover::before { transform: scale(90); }
.duo__card--a:hover::before { background: var(--blue); }
.duo__card--b:hover::before { background: var(--green-ink); }
.duo__eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-lt); transition: color .4s; }
.duo__card--b .duo__eyebrow { color: var(--green-lt); }
.duo__card:hover .duo__eyebrow { color: var(--paper); }
.duo__q { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.6rem, 1.1rem + 1.8vw, 2.7rem); line-height: 1.05; letter-spacing: -.04em; max-width: 18ch; }
.duo__go { display: inline-flex; align-items: center; gap: 12px; font-weight: 650; }

/* ---------- get sponsored ---------- */
.seek-hero { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 32px clamp(32px, 6vw, 100px); align-items: end; }
.page-hero__title--xl { font-size: clamp(3.2rem, 1rem + 9vw, 10.5rem); line-height: .9; letter-spacing: -.055em; max-width: none; }
.seek-hero__side { display: grid; gap: 14px; justify-items: start; padding-bottom: .6em; }
.seek-hero__side p:not(.lead) { color: var(--ink-2); }
.seek-hero__side .btn { margin-top: 12px; }
.seek-hero__field { grid-column: 1 / -1; margin-top: clamp(24px, 4vw, 56px); }
.seek-hero__field svg { width: 100%; height: auto; overflow: visible; }
#dotgrid circle { fill: rgba(11,37,64,.18); }
.seek-hero__link { fill: none; stroke: var(--blue); stroke-width: 2.5; stroke-dasharray: 1; stroke-linecap: round; }
.js .seek-hero__link { stroke-dashoffset: 1; animation: draw 2s var(--ease-io) .6s forwards; }
.seek-hero__you { fill: var(--blue); }
.seek-hero__them { fill: var(--green); }
.js .seek-hero__them { opacity: 0; animation: fade .6s ease 2.3s forwards; }
.works__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr); gap: clamp(40px, 6vw, 110px); align-items: start; }
.works__head p:not(.eyebrow) { color: var(--ink-3); margin-top: 20px; max-width: 26rem; }
.chips--cloud { gap: 14px 10px; padding-top: 12px; }

.process { overflow: hidden; }
.process__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: clamp(36px, 5vw, 64px); }
.process__head .h2 { max-width: 16ch; }
.process__controls { display: flex; gap: 10px; }
.round-btn { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; border: 1.5px solid var(--ink); background: transparent; transition: background-color .3s, color .3s, opacity .3s; }
.round-btn svg { width: 22px; height: 22px; }
.round-btn path { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.round-btn:hover:not(:disabled) { background: var(--ink); color: var(--paper); }
.round-btn:disabled { opacity: .3; cursor: default; }
.process__track {
  --card: clamp(260px, 26vw, 340px); --gap: clamp(16px, 2vw, 28px);
  display: flex; gap: var(--gap); overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory;
  padding: 8px max(var(--gutter), calc((100vw - var(--maxw)) / 2)) 24px; scroll-padding-inline: max(var(--gutter), calc((100vw - var(--maxw)) / 2));
  scrollbar-width: none; cursor: grab;
}
.process__track::-webkit-scrollbar { display: none; }
.process__track.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.process__track:focus-visible { outline-offset: -3px; }
.pstep { position: relative; flex: 0 0 var(--card); scroll-snap-align: start; padding-top: 72px; }
.pstep__dot { position: absolute; left: 30px; top: 36px; width: 20px; height: 20px; margin: -10px 0 0 -10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 6px var(--paper-2); z-index: 1; }
.pstep:nth-child(even) .pstep__dot { background: var(--green); }
.pstep:not(.pstep--last)::before {
  content: ""; position: absolute; left: 30px; width: calc(100% + var(--gap)); top: 6px; height: 30px;
  border: 2px solid var(--line-2); border-bottom: 0; border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.pstep:nth-child(even):not(.pstep--last)::before { top: 36px; border: 2px solid var(--line-2); border-top: 0; border-radius: 0 0 50% 50% / 0 0 100% 100%; }
.pstep__card { height: 100%; padding: 28px 28px 32px; border-radius: 26px; background: var(--paper); border: 1px solid var(--line); transition: transform .6s var(--ease), box-shadow .6s var(--ease); }
.pstep:hover .pstep__card { transform: translateY(-6px); box-shadow: 0 24px 40px -28px rgba(11,37,64,.35); }
.pstep__num { display: block; font-family: var(--f-display); font-weight: 700; font-size: 3.6rem; line-height: 1; letter-spacing: -.06em; color: var(--blue); margin-bottom: 26px; }
.pstep:nth-child(even) .pstep__num { color: var(--green-lg); }
.pstep__title { font-family: var(--f-display); font-weight: 650; font-size: 1.7rem; letter-spacing: -.035em; line-height: 1.1; margin-bottom: 8px; }
.pstep__card p { color: var(--ink-3); }
.process__foot { display: flex; align-items: center; gap: 24px; margin-top: 12px; }
.process__bar { flex: 1; max-width: 320px; height: 2px; background: var(--line-2); border-radius: 2px; overflow: hidden; }
.process__bar i { display: block; height: 100%; background: var(--ink); transform-origin: 0 50%; transform: scaleX(.15); }
.process__hint { font-size: .85rem; color: var(--ink-3); }

.serve__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.8fr); gap: clamp(40px, 6vw, 110px); align-items: start; }
.serve__head p:not(.eyebrow) { color: var(--ink-3); margin-top: 20px; max-width: 24rem; }
.serve__list { columns: 2; column-gap: clamp(24px, 4vw, 64px); counter-reset: serve; }
.serve__list li { break-inside: avoid; counter-increment: serve; display: flex; align-items: baseline; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line-2);
  font-family: var(--f-display); font-weight: 550; font-size: clamp(1.2rem, 1rem + .7vw, 1.6rem); letter-spacing: -.025em; line-height: 1.2; }
.serve__list li::before { content: counter(serve, decimal-leading-zero); font-family: var(--f-text); font-size: .72rem; font-weight: 700; letter-spacing: .1em; color: var(--blue-ink); min-width: 1.8em; }

.closer { padding-block: clamp(90px, 11vw, 170px); }
.closer__grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 28px clamp(32px, 6vw, 100px); align-items: end; }
.closer__grid .eyebrow { grid-column: 1 / -1; justify-self: start; margin-bottom: 0; }
.closer__title { font-family: var(--f-display); font-weight: 700; font-size: clamp(2.8rem, 1.2rem + 6vw, 7.4rem); line-height: .92; letter-spacing: -.055em; }
.band--ink .closer__title em { color: var(--green-lt); }
.closer__side { display: grid; gap: 26px; justify-items: start; padding-bottom: .5em; }
.closer__side p { font-size: clamp(1.1rem, 1rem + .5vw, 1.4rem); line-height: 1.4; color: rgba(251,242,243,.82); }
.band--green .closer__side p { color: var(--ink); }
.band--green .closer__title em { color: var(--paper); }

/* ---------- for sponsors ---------- */
.fan { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 10vw, 180px); align-items: center; }
.fan__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.fan__svg path { fill: none; stroke: var(--line-2); stroke-width: 1.5; stroke-dasharray: 1; stroke-dashoffset: 0; transition: stroke .35s, stroke-width .35s; }
.js .fan__svg path { stroke-dashoffset: 1; transition: stroke-dashoffset 1.2s var(--ease-io), stroke .35s, stroke-width .35s; transition-delay: calc(var(--i) * 80ms), 0s, 0s; }
.js .fan.is-drawn .fan__svg path { stroke-dashoffset: 0; }
.fan__svg path.is-hot { stroke: var(--green); stroke-width: 2.5; }
.fan__source { position: relative; display: grid; gap: clamp(36px, 5vw, 64px); }
.fan__h { max-width: 20ch; }
.fan__node { display: flex; flex-direction: column-reverse; align-items: flex-start; gap: 16px; }
.fan__source-dot { margin-left: 4px; }
.fan__source-dot { position: relative; width: 34px; height: 34px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 10px rgba(10,121,184,.14); flex: none; }
.fan__node-label { font-weight: 650; }
.fan__list { position: relative; display: grid; gap: 6px; }
.fan__item { display: flex; align-items: center; gap: 16px; min-height: 48px; padding: 6px 18px 6px 0; font-family: var(--f-display); font-weight: 550; font-size: clamp(1.15rem, 1rem + .7vw, 1.6rem); letter-spacing: -.025em; line-height: 1.15; transition: transform .5s var(--ease); }
.fan__item-dot { width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--green-ink); background: var(--paper); flex: none; transition: background-color .3s; }
.fan__item:hover { transform: translateX(8px); }
.fan__item:hover .fan__item-dot { background: var(--green); border-color: var(--green); }

.opps__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); gap: clamp(40px, 6vw, 100px); align-items: start; }
.opps__objective { grid-column: 1 / -1; font-family: var(--f-display); font-weight: 500; font-size: clamp(1.5rem, 1rem + 1.8vw, 2.7rem); line-height: 1.15; letter-spacing: -.03em; max-width: 30ch; margin: clamp(16px, 3vw, 40px) 0 0 auto; }
.hl-green { color: var(--green-lt); }
.chips--dark .chip--xl { font-size: clamp(1.5rem, 1rem + 1.6vw, 2.4rem); }
.sponsors__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr); gap: clamp(40px, 6vw, 110px); align-items: start; }
.sponsors__head p:not(.eyebrow) { color: var(--ink-3); margin: 20px 0 12px; max-width: 24rem; }
.sponsors__head .h2 em { font-size: 1.25em; }

/* ---------- contact ---------- */
.contact-hero { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 40px clamp(32px, 6vw, 100px); align-items: end; }
.contact-card { position: relative; overflow: hidden; padding: clamp(28px, 3vw, 40px); border-radius: 30px; background: var(--ink); color: var(--paper); }
.contact-card__eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-lt); margin-bottom: 26px; }
.contact-card__name { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.8rem, 1.3rem + 1.4vw, 2.5rem); letter-spacing: -.045em; line-height: 1; }
.contact-card__org { margin-top: 8px; font-size: .85rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(251,242,243,.72); }
.contact-card__tag { margin-top: 28px; font-family: var(--f-display); font-size: 1.3rem; letter-spacing: -.02em; }
.contact-card__tag em { color: var(--green-lt); font-size: 1.12em; }
.contact-card__arc { position: absolute; right: -24px; top: 18px; width: 150px; opacity: .55; }
.contact-card__arc path { fill: none; stroke: var(--blue-lt); stroke-width: 2; }
.contact-card__arc circle:first-of-type { fill: var(--blue-lt); }
.contact-card__arc circle:last-of-type { fill: var(--green-lt); }
.partner__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); }
.partner__card { position: relative; overflow: hidden; isolation: isolate; display: flex; flex-direction: column; gap: 14px; padding: clamp(28px, 3.5vw, 48px); border-radius: 30px; text-decoration: none; background: var(--paper-2); border: 1.5px solid var(--line); transition: color .5s, border-color .4s; }
.partner__go::before { content: ""; position: absolute; left: 0; top: calc(50% + 9px); width: 10px; height: 10px; margin-top: -5px; border-radius: 50%; background: var(--blue); z-index: -1; transition: transform .9s var(--ease); }
.partner__card--b .partner__go::before { background: var(--green-ink); }
.partner__card:hover .partner__go::before, .partner__card:focus-visible .partner__go::before { transform: scale(140); }
.partner__card:hover { color: #fff; border-color: transparent; }
.partner__q { font-family: var(--f-display); font-weight: 650; font-size: clamp(1.6rem, 1.1rem + 1.7vw, 2.6rem); letter-spacing: -.04em; line-height: 1.02; }
.partner__a { color: inherit; opacity: .8; max-width: 30rem; }
.partner__go { position: static; display: inline-flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 18px; padding-left: 26px; font-weight: 650; min-height: 44px; }
.partner__go { position: relative; }
.enquiry__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr); gap: clamp(40px, 6vw, 110px); align-items: start; }
.enquiry__info { position: sticky; top: calc(var(--header-h) + 32px); display: grid; gap: 22px; }
.enquiry__info > p { color: var(--ink-2); }
.details { border-top: 1.5px solid var(--ink); }
.details__row { display: grid; grid-template-columns: 6rem minmax(0, 1fr); gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line-2); }
.details dt { font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.details a { display: inline-flex; align-items: center; min-height: 44px; font-family: var(--f-display); font-weight: 600; font-size: clamp(1.1rem, 1rem + .5vw, 1.35rem); letter-spacing: -.02em; text-decoration: none; overflow-wrap: anywhere; }
.details a:hover { color: var(--blue-ink); }
.enquiry__note { font-size: .9rem; color: var(--ink-3) !important; }

/* ---------- form ---------- */
.form-wrap { background: var(--paper); border-radius: 32px; padding: clamp(24px, 4vw, 52px); border: 1px solid var(--line); box-shadow: 0 40px 80px -60px rgba(11,37,64,.4); }
.form { display: grid; gap: 22px; }
.form__legend { position: absolute; left: 22px; top: -11px; padding: 0 8px; background: var(--paper); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.seg--form { width: 100%; margin-bottom: 8px; background: var(--paper-2); }
.seg__opt { position: relative; z-index: 1; display: block; cursor: pointer; }
.seg__opt input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.seg__opt span { display: flex; align-items: center; justify-content: center; min-height: 56px; padding: 6px 12px 6px 26px; border-radius: 999px; text-align: center; font-family: var(--f-display); font-weight: 600; font-size: clamp(.98rem, .9rem + .4vw, 1.15rem); letter-spacing: -.015em; color: var(--ink-2); transition: color .4s; line-height: 1.1; }
.seg__opt input:checked + span { color: #fff; }
.seg__opt input:focus-visible + span { outline: 3px solid var(--blue); outline-offset: 2px; }
.seg--form .seg__thumb { background: var(--blue); transition: transform .6s var(--ease), background-color .5s; }
.form[data-type="sponsor"] .seg--form .seg__thumb, .seg--form:has(input[value="sponsor"]:checked) .seg__thumb { transform: translateX(100%); background: var(--green-ink); }
html:not(.js) .seg--form .seg__thumb { display: none; }
html:not(.js) .seg__opt input:checked + span { color: var(--ink); text-decoration: underline; }
.form__row, .form__group { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 18px; }
.form__group[hidden] { display: none; }
.form__group .field--checks { grid-column: 1 / -1; }
.field { display: grid; gap: 7px; min-width: 0; border: 0; padding: 0; margin: 0; }
.field label, .field legend { font-size: .9rem; font-weight: 650; color: var(--ink); padding: 0; }
.field legend { margin-bottom: 10px; }
label[data-label-seeker]::after { content: " *"; color: var(--blue-ink); }
.req { color: var(--blue-ink); }
.opt { font-weight: 500; color: var(--ink-3); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 12px 16px; border-radius: 14px; border: 1.5px solid var(--line-2); background: #fff;
  font-size: 1rem; line-height: 1.4; transition: border-color .25s, box-shadow .25s; appearance: none; -webkit-appearance: none;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input::placeholder, .field textarea::placeholder { color: #7A8696; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(10,121,184,.16); }
.field [aria-invalid="true"] { border-color: #B4232C; box-shadow: 0 0 0 4px rgba(180,35,44,.1); }
.field__error { min-height: 0; font-size: .85rem; font-weight: 600; color: #A61F28; }
.field__error:empty { display: none; }
.field__error::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: currentColor; margin-right: 8px; vertical-align: middle; }
.select { position: relative; }
.select::after { content: ""; position: absolute; right: 18px; top: 50%; width: 8px; height: 8px; margin-top: -6px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: rotate(45deg); pointer-events: none; }
.select select { padding-right: 44px; cursor: pointer; }
.checks { display: flex; flex-wrap: wrap; gap: 8px; }
.check { position: relative; cursor: pointer; }
.check input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.check span { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 6px 14px 6px 12px; border-radius: 999px; border: 1.5px solid var(--line-2); font-size: .92rem; font-weight: 600; transition: background-color .3s, border-color .3s, color .3s; }
.check span::before { content: ""; width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid var(--green-ink); transition: background-color .3s; }
.check input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.check input:checked + span::before { background: var(--green-lt); border-color: var(--green-lt); }
.check input:focus-visible + span { outline: 3px solid var(--blue); outline-offset: 2px; }
.form__submit { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; margin-top: 6px; }
.form__status { font-size: .9rem; font-weight: 600; color: #A61F28; }
.form-done { display: grid; gap: 18px; justify-items: start; padding-block: clamp(12px, 3vw, 40px); }
.form-done[hidden] { display: none; }
.form-done:focus { outline: none; }
.form-done__arc { width: 170px; overflow: visible; }
.form-done__arc path { fill: none; stroke: var(--ink); stroke-width: 4; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 1.3s var(--ease-io) .15s forwards; }
.form-done__arc circle:first-of-type { fill: var(--blue); }
.form-done__arc circle:last-of-type { fill: var(--green); opacity: 0; animation: fade .4s ease 1.3s forwards; }
.form-done__title { font-family: var(--f-display); font-weight: 650; font-size: clamp(2rem, 1.3rem + 2.4vw, 3.3rem); letter-spacing: -.045em; line-height: 1; }
.form-done__title em { color: var(--green-lg); font-size: 1.08em; }
.form-done p { color: var(--ink-2); max-width: 34rem; }
.form-done a { color: var(--blue-ink); font-weight: 650; }
.form-done__small { font-size: .92rem; }

/* ---------- footer ---------- */
.site-footer { position: relative; overflow: hidden; background: var(--ink-deep); color: var(--paper); padding-top: clamp(72px, 9vw, 130px); }
.footer__top { display: grid; grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr)); gap: 40px clamp(24px, 3vw, 56px); }
.footer__logo { width: min(280px, 70%); height: auto; }
.footer__org { margin-top: 20px; font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: rgba(251,242,243,.66); }
.footer__tag { margin-top: 10px; font-family: var(--f-display); font-size: clamp(1.3rem, 1.1rem + .8vw, 1.8rem); letter-spacing: -.025em; }
.footer__tag em { color: var(--green-lt); font-size: 1.1em; }
.footer__h { font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-lt); margin-bottom: 14px; }
.footer__col a { display: inline-flex; align-items: center; min-height: 40px; color: rgba(251,242,243,.82); text-decoration: none; font-size: .98rem; transition: color .25s; overflow-wrap: anywhere; }
.footer__col a:hover { color: #fff; }
.footer__col li { position: relative; }
.footer__col a::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--green-lt); margin-right: -5px; transform: scale(0); transition: transform .35s var(--ease), margin-right .35s var(--ease); }
.footer__col a:hover::before { transform: scale(1); margin-right: 10px; }
.footer__mark { position: relative; margin-top: clamp(64px, 9vw, 130px); height: clamp(64px, 10.5vw, 150px); overflow: hidden; padding-inline: calc(var(--gutter) * .5); }
.footer__mark img { width: 100%; height: auto; opacity: .1; }
.footer__bottom { position: relative; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; padding-block: 22px 28px; border-top: 1px solid var(--line-light); font-size: .88rem; color: rgba(251,242,243,.7); }
.footer__local { font-family: var(--f-accent); font-style: italic; font-size: 1.1rem; color: rgba(251,242,243,.85); }

/* ---------- reveal ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform 1.1s var(--ease); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js svg[data-reveal] { transform: none; }
.js .belief__arc[data-reveal] { opacity: 1; transform: translateX(-50%); }
.js .bridge__arc[data-reveal] { opacity: 1; }
.js .svc-rows .svc-row:nth-child(2) { transition-delay: .06s; }
.js .svc-rows .svc-row:nth-child(3) { transition-delay: .12s; }
.js .svc-rows .svc-row:nth-child(4) { transition-delay: .18s; }
.js .svc-rows .svc-row:nth-child(5) { transition-delay: .24s; }
.js .why__list li[data-reveal]:nth-child(even).is-in { transform: translateY(48px); }
.js .why__list li[data-reveal]:nth-child(even) { transform: translateY(74px); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1180px) {
  .nav__list a { padding: 0 .5em; font-size: .9rem; }
  .footer__top { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 1023px) {
  :root { --header-h: 68px; }
  .nav, .header__cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero__grid { grid-template-columns: minmax(0, 1fr); grid-template-rows: auto; }
  .hero__eyebrow, .hero__title, .hero__foot { grid-column: 1; grid-row: auto; }
  .hero__title { font-size: clamp(3.3rem, 13.5vw, 7.5rem); margin-block: 8px 0; }
  .hero__stage { grid-column: 1; grid-row: auto; min-height: clamp(220px, 34vw, 320px); margin-block: 8px 20px; }
  .node--a { left: 84%; top: 22%; }
  .node--b { left: 12%; top: 76%; }
  .sec-head--split { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .sec-head__aside { justify-self: start; }
  .svc-row__link { grid-template-columns: 3.2rem minmax(0, 1fr) 3rem; }
  .svc-row__text { grid-column: 2; grid-row: 2; }
  .svc-row__go { grid-column: 3; grid-row: 1 / span 2; }
  .side-panel, .why__grid, .svc__grid, .works__grid, .serve__grid, .opps__grid, .sponsors__grid, .enquiry__grid, .svc-hero, .contact-hero, .seek-hero, .closer__grid, .bridge__statement, .srm__head { grid-template-columns: minmax(0, 1fr); }
  .why__head, .svc__head, .enquiry__info { position: static; }
  .why__list li:nth-child(even), .js .why__list li[data-reveal]:nth-child(even).is-in { transform: none; }
  .js .why__list li[data-reveal]:nth-child(even) { transform: translateY(26px); }
  .intro__lead { grid-column: 1 / -1; }
  .intro__side { grid-column: 3 / -1; }
  .vm__item--vision, .vm__item--mission { grid-column: 1 / -1; }
  .vm__item--mission { padding-left: clamp(0px, 8vw, 80px); }
  .chain { grid-template-columns: minmax(0, 1fr); gap: 0; margin-left: 4px; }
  .chain__item { grid-template-columns: 3rem minmax(0, 1fr); align-items: baseline; padding: 0 0 30px 40px; }
  .chain__item .chain__n { grid-column: 1; }
  .chain__dot { top: 2px; }
  .chain__item:not(:last-child)::after, .chain__item:nth-child(even):not(:last-child)::after { left: 10px; top: 24px; bottom: 0; width: 2px; height: auto; border: 0; border-radius: 0; background: var(--line-2); }
  .fan { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .fan__svg { display: none; }
  .fan__source { gap: 28px; }
  .fan__list { border-left: 2px solid var(--line-2); margin-left: 16px; padding-left: 0; }
  .fan__item { margin-left: -8px; }
  .cycle { max-width: 480px; }
  .globe__body { margin-left: 0; }
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 759px) {
  .model__svg { display: none; }
  .model__viz { padding-left: 40px; }
  .model__vline { display: block; position: absolute; left: 10px; top: 8px; bottom: 8px; width: 2px; background: var(--line-2); border-radius: 2px; }
  .model__vfill { display: block; width: 100%; height: 100%; background: linear-gradient(var(--blue), var(--green)); transform-origin: 50% 0; transform: scaleY(1); }
  .model.is-ready .model__vfill { transform: scaleY(0); }
  .model__stages { grid-template-columns: minmax(0, 1fr); gap: 36px; margin-top: 0; }
  .stage { position: relative; text-align: left; padding: 0; }
  .stage::before { content: ""; position: absolute; left: -40px; top: 2px; width: 22px; height: 22px; border-radius: 50%; background: var(--paper); border: 2.5px solid var(--blue); transition: background-color .4s; }
  .stage--impact::before { border-color: var(--green); }
  html:not(.js) .stage::before, .stage.is-lit::before { background: var(--blue); }
  html:not(.js) .stage--impact::before, .stage--impact.is-lit::before { background: var(--green); }
  .stage p { margin-inline: 0; }
  .model__coda { text-align: left; }
  .intro__side { grid-column: 1 / -1; }
  .svc-row__link { grid-template-columns: minmax(0, 1fr) 44px; gap: 10px 16px; }
  .svc-row__num { grid-column: 1; grid-row: 1; }
  .svc-row__title { grid-column: 1; grid-row: 2; }
  .svc-row__text { grid-column: 1; grid-row: 3; }
  .svc-row__go { grid-column: 2; grid-row: 1 / span 3; width: 44px; height: 44px; }
  .seg__btn { min-height: 56px; padding: 6px 10px 6px 26px; }
  .seg__thumb::before { left: 14px; }
  .globe__body { grid-template-columns: minmax(0, 1fr); }
  .map__label { font-size: .72rem; padding: 0 .4em; }
  .map__dot { left: -6px; top: -6px; width: 12px; height: 12px; }
  .map__node--r .map__label { left: 10px; }
  .map__node--l .map__label { right: 10px; }
  .map__node:nth-child(5) .map__label { left: 50%; top: auto; bottom: 9px; transform: translateX(-50%); }
  .cta__row { grid-template-columns: minmax(0, 1fr); }
  .bridge__grid { grid-template-columns: minmax(0, 1fr); row-gap: 48px; padding-top: 12px; }
  .bridge__side--a, .bridge__side--b { grid-column: 1; }
  .bridge__arc { display: none; }
  .bridge__side--a::after { content: ""; position: absolute; left: calc(50% - 1px); bottom: -48px; width: 2px; height: 48px; background: var(--line-2); }
  .dot-list--two { grid-template-columns: minmax(0, 1fr); }
  .why__list { grid-template-columns: minmax(0, 1fr); }
  .value { grid-template-columns: minmax(0, 1fr); gap: 6px; }
  .cat { grid-template-columns: minmax(0, 1fr); gap: 6px; }
  .cycle__ring { display: none; }
  .cycle__linear { display: grid; gap: 0; position: relative; padding-left: 36px; }
  .cycle__linear::before { content: ""; position: absolute; left: 9px; top: 18px; bottom: 18px; width: 2px; background: rgba(251,242,243,.2); }
  .cycle__linear li { position: relative; display: flex; align-items: baseline; gap: 12px; padding: 12px 0; font-family: var(--f-display); font-weight: 600; font-size: 1.6rem; letter-spacing: -.035em; border-bottom: 1px solid var(--line-light); }
  .cycle__linear li::before { content: ""; position: absolute; left: -33px; top: 22px; width: 16px; height: 16px; border-radius: 50%; background: var(--ink); border: 2.5px solid var(--green-lt); }
  .cycle__linear li:last-child::before { background: var(--green-lt); }
  .duo__grid, .partner__grid { grid-template-columns: minmax(0, 1fr); }
  .duo__card { min-height: 240px; }
  .serve__list { columns: 1; }
  .form__row, .form__group { grid-template-columns: minmax(0, 1fr); }
  .footer__top { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .footer__col:last-child { grid-column: 1 / -1; }
  .page-hero__arc { width: 80vw; right: -40vw; top: auto; bottom: -14%; opacity: .45; }
  .page-hero__rings { width: 110vw; right: -70vw; opacity: .45; }
  .process__controls { display: none; }
  .process__track { --card: min(80vw, 320px); }
  .sides__top { flex-direction: column; align-items: stretch; }
}

@media (max-width: 420px) {
  .hero__ctas .btn { flex: 1 1 100%; }
  .node__label small { display: none; }
  .node__label b { font-size: 1.05rem; }
  .strip { justify-content: flex-start; font-size: .72rem; gap: 6px 14px; }
  .strip li { gap: 14px; }
  .contact-card__arc { width: 110px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0s !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
  .js .hl__w, .js [data-reveal], .js .chips[data-reveal] .chip, .js .chain .chain__item { transform: none !important; opacity: 1 !important; }
  .map__dot::after { display: none; }
  .page-hero__rings .page-hero__orbiter { animation: none; }
}

/* Fabonic credit */
.footer__credit { margin: 0; }
.footer__credit a { color: var(--paper); font-weight: 650; text-decoration: none; border-bottom: 1px solid rgba(251,242,243,.35); transition: color .25s ease, border-color .25s ease; }
.footer__credit a:hover, .footer__credit a:focus-visible { color: var(--green-lt); border-bottom-color: var(--green-lt); }
