@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #10130f;
  --ink-2: #171b16;
  --forest: #2f432c;
  --green: #739166;
  --sage: #a9bca0;
  --mist: #e7ece3;
  --paper: #f4f2ec;
  --white: #ffffff;
  --line: rgba(16, 19, 15, 0.15);
  --shell: min(1280px, calc(100vw - 64px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute;
  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;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  height: 2px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.13);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled {
  background: rgba(16, 19, 15, .94);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 12px 38px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand {
  width: 154px;
  height: 62px;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-decoration: none;
}
.brand img { width: 100%; }
.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 35px);
}
.site-nav a,
.header-login {
  position: relative;
  color: rgba(255,255,255,.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: var(--sage);
  transition: right .3s var(--ease);
}
.site-nav a:hover,
.site-nav a:focus-visible,
.header-login:hover,
.header-login:focus-visible { color: var(--white); }
.site-nav a:hover::after,
.site-nav a:focus-visible::after { right: 0; }
.header-login {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0 12px 18px;
  border-left: 1px solid rgba(255,255,255,.2);
}
.header-login span { color: var(--sage); font-size: 16px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 860px;
  height: 100svh;
  max-height: 1100px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: #10150f;
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,14,10,.98) 0%, rgba(10,14,10,.88) 38%, rgba(10,14,10,.38) 72%, rgba(10,14,10,.65) 100%),
    linear-gradient(0deg, rgba(10,14,10,.9) 0%, transparent 36%);
}
.hero-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  background: url("assets/kula-city.webp") center / cover no-repeat;
  transform: scale(1.04);
  animation: hero-breathe 14s ease-in-out infinite alternate;
}
.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .11;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to right, black, transparent 70%);
}
.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .2;
}
.hero-orb-one { width: 420px; height: 420px; background: #7aa869; left: -190px; top: 24%; }
.hero-orb-two { width: 360px; height: 360px; background: #c9dbbe; right: 8%; bottom: -250px; opacity: .13; }
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  gap: clamp(70px, 8vw, 150px);
  align-items: end;
  padding-top: 115px;
}
.hero-copy { max-width: 830px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 25px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow span { width: 34px; height: 1px; background: currentColor; }
.eyebrow.light { color: var(--sage); }
.hero h1 {
  margin: 0;
  font-size: clamp(64px, 7.1vw, 118px);
  font-weight: 350;
  letter-spacing: -.065em;
  line-height: .91;
}
.hero h1 em,
.approach h2 em { color: var(--sage); font-style: normal; }
.hero-intro {
  max-width: 630px;
  margin: 38px 0 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: 33px; margin-top: 42px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .09em;
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s var(--ease);
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--ink); background: var(--sage); }
.button-primary:hover { background: var(--white); }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { background: var(--sage); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link.light { color: rgba(255,255,255,.76); }
.text-link span { font-size: 18px; transition: transform .25s var(--ease); }
.text-link:hover span { transform: translateX(6px); }
.hero-panel {
  margin-bottom: 38px;
  padding: 25px 27px 30px;
  background: rgba(16,19,15,.66);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(15px);
}
.hero-panel-top {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.live-dot { display: flex; align-items: center; gap: 8px; color: var(--sage); }
.live-dot::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 5px rgba(169,188,160,.13); }
.hero-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 25px;
  align-items: end;
  margin: 33px 0;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.hero-stat strong { font-size: 84px; font-weight: 300; letter-spacing: -.08em; line-height: .8; }
.hero-stat span { color: rgba(255,255,255,.64); font-size: 12px; line-height: 1.6; }
.hero-sectors { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-sectors span { position: relative; padding-left: 14px; color: rgba(255,255,255,.72); font-size: 10px; }
.hero-sectors span::before { content: ""; position: absolute; left: 0; top: .7em; width: 4px; height: 4px; background: var(--green); }
.hero-foot {
  position: absolute;
  bottom: 29px;
  left: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateX(-50%);
  color: rgba(255,255,255,.42);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-foot a { display: flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; }
.hero-foot i { position: relative; width: 18px; height: 28px; border: 1px solid rgba(255,255,255,.28); border-radius: 12px; }
.hero-foot i::after { content: ""; position: absolute; top: 5px; left: 50%; width: 2px; height: 5px; background: var(--sage); transform: translateX(-50%); animation: scroll-hint 1.8s ease infinite; }

.sector-ribbon { padding: 20px 0; background: var(--green); overflow: hidden; }
.ribbon-track { width: max-content; min-width: 100%; display: flex; justify-content: center; align-items: center; gap: 27px; padding-inline: 32px; }
.ribbon-track span { font-size: 10px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.ribbon-track i { width: 4px; height: 4px; border-radius: 50%; background: rgba(16,19,15,.55); }

.section { padding: 140px 0; }
.section-heading h2,
.approach h2,
.governance h2,
.opportunity h2,
.contact h2 {
  margin: 0;
  font-size: clamp(43px, 5.2vw, 79px);
  font-weight: 380;
  letter-spacing: -.055em;
  line-height: 1.02;
}
.split-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; }
.split-heading h2 { max-width: 790px; }
.heading-copy { padding-bottom: 4px; }
.heading-copy p,
.portfolio-heading > p,
.policy-heading > p { margin: 0 0 28px; color: #62665f; font-size: 16px; line-height: 1.85; }
.vision-card {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr 160px;
  gap: 48px;
  align-items: center;
  margin-top: 100px;
  padding: 52px 58px;
  color: var(--white);
  background: var(--forest);
  overflow: hidden;
}
.vision-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  background: url("assets/network-pattern.jpg") center / cover;
  mix-blend-mode: screen;
}
.vision-card > * { position: relative; z-index: 1; }
.vision-mark {
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
}
.card-label { margin: 0 0 15px; color: var(--green); font-size: 9px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.vision-card .card-label { color: var(--sage); }
.vision-card blockquote { margin: 0; font-size: clamp(22px, 2.2vw, 34px); font-weight: 350; letter-spacing: -.025em; line-height: 1.45; }
.vision-origin { display: flex; flex-direction: column; gap: 3px; color: rgba(255,255,255,.62); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-align: right; text-transform: uppercase; }

.approach { color: var(--white); background: var(--ink-2); }
.approach-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(80px, 10vw, 165px); align-items: start; }
.approach-sticky { position: sticky; top: 145px; }
.approach-sticky > p:last-child { max-width: 560px; margin: 34px 0 0; color: rgba(255,255,255,.59); font-size: 16px; }
.approach-steps { border-top: 1px solid rgba(255,255,255,.14); }
.approach-steps article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 38px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.approach-steps article > span { color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.approach-steps h3 { margin: 0 0 12px; font-size: 24px; font-weight: 520; letter-spacing: -.025em; }
.approach-steps p { margin: 0; color: rgba(255,255,255,.55); font-size: 14px; }

.companies { background: #ebe8df; }
.portfolio-heading { display: grid; grid-template-columns: 1fr 430px; gap: 80px; align-items: end; }
.portfolio-heading > p { margin: 0; }
.company-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 80px; background: rgba(16,19,15,.18); border: 1px solid rgba(16,19,15,.18); }
.company-card {
  position: relative;
  min-height: 575px;
  display: flex;
  flex-direction: column;
  padding: 45px;
  background: var(--paper);
  transition: background .35s ease, transform .35s var(--ease);
  overflow: hidden;
}
.company-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -85px;
  bottom: -85px;
  border-radius: 50%;
  background: var(--mist);
  transition: transform .5s var(--ease), background .35s ease;
}
.company-card:hover { z-index: 1; background: var(--white); }
.company-card:hover::before { transform: scale(2.7); background: rgba(115,145,102,.13); }
.company-featured { grid-column: 1 / -1; min-height: 480px; display: grid; grid-template-columns: 250px 1fr 260px; gap: 70px; align-items: center; background: var(--white); }
.company-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .32;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 60%, var(--mist));
}
.company-logo { position: relative; z-index: 1; width: 220px; min-height: 88px; display: flex; align-items: center; }
.company-featured .company-logo { width: 250px; }
.company-logo img { width: 100%; }
.company-number { position: absolute; top: 37px; right: 42px; color: rgba(16,19,15,.3); font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.company-copy { position: relative; z-index: 1; margin-top: auto; }
.company-featured .company-copy { margin: 0; }
.company-copy h3 { margin: 0 0 16px; font-size: clamp(27px, 2.8vw, 43px); font-weight: 450; letter-spacing: -.04em; line-height: 1.15; }
.company-copy > p:not(.card-label) { max-width: 600px; margin: 0; color: #5e635b; font-size: 14px; }
.company-copy ul { display: flex; flex-wrap: wrap; gap: 7px 18px; margin: 22px 0 0; padding: 0; list-style: none; }
.company-copy li { position: relative; padding-left: 13px; color: #444940; font-size: 11px; }
.company-copy li::before { content: ""; position: absolute; left: 0; top: .75em; width: 4px; height: 4px; background: var(--green); }
.company-actions { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.company-actions a:first-child,
.company-demo-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--forest);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.company-actions a:first-child:hover,
.company-demo-link:hover { color: var(--ink); background: var(--sage); border-color: var(--sage); }
.company-actions a:last-child,
.company-email { color: #585e55; font-size: 10px; text-decoration: none; }
.company-demo-link { position: relative; z-index: 1; width: auto; margin-top: 30px; }
.company-email { position: relative; z-index: 1; margin-top: 13px; }

.values { background: var(--paper); }
.values-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; }
.values-heading .eyebrow { grid-column: 1 / -1; }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 75px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.values-grid article { min-height: 285px; padding: 30px 27px; border-right: 1px solid var(--line); transition: color .3s ease, background .3s ease, transform .3s var(--ease); }
.values-grid article:first-child { border-left: 1px solid var(--line); }
.values-grid article:hover { color: var(--white); background: var(--forest); transform: translateY(-10px); }
.values-grid b { color: var(--green); font-size: 9px; letter-spacing: .12em; }
.values-grid h3 { margin: 74px 0 13px; font-size: 18px; font-weight: 550; letter-spacing: -.02em; }
.values-grid p { margin: 0; color: #666b63; font-size: 12px; }
.values-grid article:hover p { color: rgba(255,255,255,.6); }

.governance { color: var(--white); background: var(--forest); }
.governance-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 11vw; }
.governance-copy > p:not(.eyebrow) { max-width: 520px; margin: 30px 0 0; color: rgba(255,255,255,.62); }
.governance-quote { position: relative; margin-top: 65px; padding: 27px 0 0 64px; border-top: 1px solid rgba(255,255,255,.18); }
.governance-quote > span { position: absolute; left: 0; top: 34px; color: var(--sage); font-family: Georgia, serif; font-size: 75px; line-height: .8; }
.governance-quote p { max-width: 360px; margin: 0 0 12px; font-size: 17px; font-weight: 450; }
.governance-quote small { color: rgba(255,255,255,.42); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.governance-list { margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.2); list-style: none; }
.governance-list li { display: grid; grid-template-columns: 65px 1fr; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.2); font-size: clamp(14px, 1.4vw, 20px); font-weight: 460; }
.governance-list li span { color: var(--sage); font-size: 9px; font-weight: 700; letter-spacing: .12em; padding-top: 8px; }

.policies { background: #ebe8df; }
.policy-heading { display: grid; grid-template-columns: 1fr 440px; gap: 80px; align-items: end; }
.policy-heading > p { margin: 0; }
.policy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 70px; background: rgba(16,19,15,.15); border: 1px solid rgba(16,19,15,.15); }
.policy-grid button {
  min-height: 93px;
  display: grid;
  grid-template-columns: 55px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 27px;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  text-align: left;
  cursor: pointer;
  transition: color .25s ease, background .25s ease;
}
.policy-grid button:hover,
.policy-grid button:focus-visible { color: var(--white); background: var(--forest); outline: none; }
.policy-grid span { color: var(--green); font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.policy-grid b { font-size: 14px; font-weight: 560; }
.policy-grid i { color: #6b7068; font-size: 9px; font-style: normal; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.policy-grid button:hover i { color: var(--sage); }

.opportunity { position: relative; min-height: 800px; display: flex; align-items: center; background: var(--ink); overflow: hidden; }
.opportunity::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,19,15,.94), rgba(16,19,15,.46) 62%, rgba(16,19,15,.78)); }
.opportunity-image { position: absolute; inset: 0; opacity: .62; background: url("assets/kula-city.webp") center / cover; transform: scaleX(-1); }
.opportunity-grid { position: relative; display: grid; grid-template-columns: 1fr 430px; gap: 11vw; align-items: end; }
.opportunity-card { max-width: 720px; color: var(--white); }
.opportunity-card > p:not(.eyebrow) { max-width: 570px; margin: 30px 0 36px; color: rgba(255,255,255,.62); }
.news-card { padding: 40px; color: var(--ink); background: rgba(244,242,236,.94); backdrop-filter: blur(12px); }
.news-card h3 { margin: 0 0 18px; font-size: 28px; font-weight: 460; letter-spacing: -.04em; line-height: 1.2; }
.news-card > p:not(.eyebrow) { margin: 0; color: #62675f; font-size: 13px; }
.ready-label { display: flex; align-items: center; gap: 10px; margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--forest); font-size: 9px; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.ready-label i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(115,145,102,.14); }

.contact { padding: 130px 0 120px; color: var(--white); background: var(--ink); }
.contact-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 10vw; }
.contact-email { display: inline-flex; gap: 25px; align-items: center; margin-top: 44px; color: var(--sage); font-size: clamp(18px, 1.7vw, 26px); text-decoration: none; }
.contact-email span { transition: transform .25s var(--ease); }
.contact-email:hover span { transform: translate(5px,-5px); }
.contact-details { display: grid; gap: 32px; padding-top: 8px; }
.contact-details div { display: grid; grid-template-columns: 85px 1fr; gap: 20px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.14); }
.contact-details span { color: rgba(255,255,255,.38); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-details a { color: rgba(255,255,255,.76); font-size: 13px; line-height: 1.75; text-decoration: none; }
.contact-details a:hover { color: var(--sage); }

.site-footer { color: rgba(255,255,255,.56); background: #090b08; }
.footer-top { min-height: 190px; display: grid; grid-template-columns: 210px 1fr auto; gap: 55px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { width: 165px; height: 90px; display: flex; align-items: center; overflow: hidden; }
.footer-brand img { width: 100%; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 17px 30px; }
.footer-nav a,
.footer-login { font-size: 9px; font-weight: 700; letter-spacing: .09em; text-decoration: none; text-transform: uppercase; }
.footer-nav a:hover,
.footer-login:hover { color: var(--white); }
.footer-login { padding: 12px 17px; color: var(--sage); border: 1px solid rgba(169,188,160,.4); }
.footer-bottom { min-height: 73px; display: flex; justify-content: space-between; align-items: center; font-size: 8px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

.toast {
  position: fixed;
  z-index: 200;
  right: 25px;
  bottom: 25px;
  width: min(390px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 44px 1fr 25px;
  gap: 14px;
  align-items: center;
  padding: 18px;
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s var(--ease);
}
.toast.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.toast-icon { width: 44px; height: 44px; display: grid; place-items: center; color: var(--ink); background: var(--sage); font-size: 20px; font-weight: 550; }
.toast p { margin: 0; color: rgba(255,255,255,.65); font-size: 11px; line-height: 1.55; }
.toast p b { color: var(--white); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.toast button { color: rgba(255,255,255,.58); background: none; border: 0; font-size: 22px; cursor: pointer; }

[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal][data-delay="1"] { transition-delay: .14s; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@keyframes hero-breathe { from { transform: scale(1.04); } to { transform: scale(1.095); } }
@keyframes scroll-hint { 0% { transform: translate(-50%,0); opacity: 0; } 35% { opacity: 1; } 100% { transform: translate(-50%,10px); opacity: 0; } }

@media (max-width: 1080px) {
  :root { --shell: min(100% - 44px, 920px); }
  .header-inner { grid-template-columns: 170px 1fr auto; }
  .site-nav { gap: 17px; }
  .site-nav a { font-size: 9px; }
  .hero-layout { grid-template-columns: 1fr 340px; gap: 45px; }
  .hero h1 { font-size: clamp(60px, 8vw, 88px); }
  .hero-panel { margin-bottom: 10px; }
  .split-heading,
  .portfolio-heading,
  .policy-heading { grid-template-columns: 1fr .68fr; gap: 50px; }
  .vision-card { grid-template-columns: 130px 1fr; }
  .vision-mark { width: 120px; height: 120px; }
  .vision-origin { display: none; }
  .approach-layout { gap: 70px; }
  .company-featured { grid-template-columns: 190px 1fr; gap: 50px; }
  .company-featured .company-logo { width: 190px; }
  .company-featured .company-actions { grid-column: 2; flex-direction: row; align-items: center; }
  .company-featured .company-actions a:first-child { width: auto; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid article:nth-child(4) { border-left: 1px solid var(--line); }
  .governance-layout { gap: 70px; }
  .opportunity-grid { grid-template-columns: 1fr 370px; gap: 60px; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100vw - 36px); }
  .site-header { background: rgba(16,19,15,.94); }
  .header-inner { min-height: 74px; grid-template-columns: 150px 1fr auto; gap: 15px; }
  .brand { width: 135px; height: 54px; }
  .header-login { grid-column: 2; grid-row: 1; justify-self: end; padding: 8px 14px; border: 1px solid rgba(255,255,255,.2); }
  .menu-toggle { grid-column: 3; display: grid; width: 42px; height: 42px; place-content: center; gap: 7px; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.22); cursor: pointer; }
  .menu-toggle span:not(.sr-only) { width: 18px; height: 1px; background: currentColor; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 74px 0 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 0; padding: 35px; color: var(--white); background: var(--ink); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .3s ease, visibility .3s ease, transform .3s var(--ease); }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { width: 100%; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 23px; font-weight: 450; letter-spacing: -.02em; text-transform: none; }
  .site-nav a::after { display: none; }
  .hero { min-height: 820px; height: auto; padding: 150px 0 90px; }
  .hero-layout { grid-template-columns: 1fr; align-items: start; padding-top: 0; }
  .hero-copy { max-width: 680px; }
  .hero h1 { font-size: clamp(58px, 13.6vw, 94px); }
  .hero-intro { max-width: 580px; }
  .hero-panel { width: min(100%, 460px); margin: 10px 0 0 auto; }
  .hero-foot { display: none; }
  .ribbon-track { justify-content: flex-start; animation: ribbon-scroll 25s linear infinite; }
  .section { padding: 100px 0; }
  .split-heading,
  .portfolio-heading,
  .policy-heading { grid-template-columns: 1fr; gap: 35px; }
  .heading-copy,
  .portfolio-heading > p,
  .policy-heading > p { max-width: 640px; }
  .vision-card { grid-template-columns: 1fr; margin-top: 60px; padding: 40px; }
  .vision-mark { width: 85px; height: 85px; font-size: 48px; }
  .approach-layout { grid-template-columns: 1fr; }
  .approach-sticky { position: static; }
  .company-featured { display: flex; min-height: 610px; }
  .company-featured .company-logo { width: 220px; }
  .company-featured .company-actions { flex-direction: column; align-items: flex-start; }
  .company-grid { grid-template-columns: 1fr; }
  .company-featured { grid-column: auto; }
  .company-card { min-height: 560px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid article:nth-child(odd) { border-left: 1px solid var(--line); }
  .governance-layout { grid-template-columns: 1fr; }
  .governance-quote { max-width: 500px; }
  .policy-grid { grid-template-columns: 1fr; }
  .opportunity { min-height: 900px; }
  .opportunity-grid { grid-template-columns: 1fr; gap: 70px; }
  .news-card { width: min(100%, 480px); justify-self: end; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr auto; padding: 45px 0; }
  .footer-nav { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; }
  .footer-login { grid-column: 2; grid-row: 1; }
  @keyframes ribbon-scroll { to { transform: translateX(-45%); } }
}

@media (max-width: 560px) {
  :root { --shell: calc(100vw - 28px); }
  .header-inner { grid-template-columns: 125px 1fr 42px; }
  .brand { width: 118px; }
  .header-login { font-size: 8px; padding: 7px 9px; }
  .header-login span { display: none; }
  .hero { padding-top: 130px; }
  .hero h1 { font-size: clamp(51px, 15vw, 74px); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-panel { padding: 22px; }
  .hero-stat strong { font-size: 65px; }
  .hero-sectors { grid-template-columns: 1fr; }
  .section { padding: 78px 0; }
  .section-heading h2,
  .approach h2,
  .governance h2,
  .opportunity h2,
  .contact h2 { font-size: clamp(39px, 12vw, 56px); }
  .vision-card { padding: 30px 25px; }
  .vision-card blockquote { font-size: 20px; }
  .approach-steps article { grid-template-columns: 45px 1fr; }
  .company-card { min-height: 545px; padding: 33px 25px; }
  .company-featured { min-height: 650px; }
  .company-logo,
  .company-featured .company-logo { width: 205px; }
  .company-number { top: 28px; right: 26px; }
  .company-actions a:first-child { width: 100%; }
  .company-actions a:last-child,
  .company-email { font-size: 9px; overflow-wrap: anywhere; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid article,
  .values-grid article:nth-child(n) { min-height: 235px; border-left: 1px solid var(--line); }
  .values-grid h3 { margin-top: 50px; }
  .governance-list li { grid-template-columns: 45px 1fr; }
  .policy-grid button { grid-template-columns: 35px 1fr; }
  .policy-grid i { display: none; }
  .opportunity { min-height: 960px; }
  .news-card { padding: 30px 25px; }
  .contact { padding: 90px 0; }
  .contact-details div { grid-template-columns: 62px 1fr; }
  .contact-email { overflow-wrap: anywhere; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { width: 145px; }
  .footer-login { grid-column: 1; grid-row: 2; justify-self: start; }
  .footer-nav { grid-row: 3; display: grid; grid-template-columns: 1fr 1fr; }
  .footer-bottom { min-height: 95px; flex-direction: column; justify-content: center; align-items: flex-start; gap: 8px; }
  .toast { right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
