@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 400 700; font-display: swap; src: url('fonts/dm-sans-latin.woff2') format('woff2'); }
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 400 700; font-display: swap; src: url('fonts/space-grotesk-latin.woff2') format('woff2'); }

:root {
  --ink: #13221c;
  --ink-soft: #2f4038;
  --lime: #b9f35b;
  --lime-bright: #c7ff67;
  --solvo-blue: #9ec4ff;
  --paper: #f2f2ec;
  --white: #fbfaf6;
  --stone: #e7e7df;
  --sage: #dde3d8;
  --muted: #5f6d65;
  --line: rgba(19, 34, 28, .14);
  --dark-line: rgba(244, 246, 241, .2);
  --serif: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --sans: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --container: 1240px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
img { display: block; width: 100%; max-width: 100%; object-fit: cover; }
img.image-unavailable { opacity: 0; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { border: 0; cursor: pointer; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--solvo-blue); outline-offset: 3px; }
.container { width: min(calc(100% - 80px), var(--container)); margin-inline: auto; }
.section-dark { background: var(--ink); color: var(--paper); }
.section-light { background: var(--paper); }
.section-paper { background: #e8ebe4; }
.section-lime { background: var(--sage); }
.skip-link { position: fixed; z-index: 100; top: -60px; left: 20px; padding: 10px 16px; background: var(--lime); color: var(--ink); font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 20px; }

/* Type & shared controls */
.eyebrow { display: flex; align-items: center; gap: 14px; margin: 0 0 24px; color: var(--ink-soft); font-size: 11px; font-weight: 700; letter-spacing: .16em; line-height: 1.2; text-transform: uppercase; }
.eyebrow span { color: #526a59; font-size: 10px; letter-spacing: .08em; }
.eyebrow-lime { color: rgba(244, 246, 241, .72); }
.eyebrow-lime span { color: var(--lime); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; line-height: 1.02; }
h1 { margin-bottom: 30px; font-size: clamp(2.8rem, 4.6vw, 5.2rem); }
h2 { margin-bottom: 28px; font-size: clamp(2.3rem, 3.7vw, 4.1rem); }
h3 { font-size: clamp(1.5rem, 2vw, 2.1rem); }
em { color: var(--lime); font-style: normal; }
.section-light em, .section-paper em { color: #6d8b60; }
.large-copy { color: var(--ink); font-family: var(--serif); font-size: clamp(1.25rem, 1.7vw, 1.55rem); letter-spacing: -.03em; line-height: 1.24; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 34px; min-height: 52px; padding: 14px 19px 14px 22px; font-size: 13px; font-weight: 700; letter-spacing: .01em; transition: transform .25s var(--ease), background .25s, color .25s; }
.button span { font-size: 18px; font-weight: 400; line-height: 1; }
.button:hover { transform: translateY(-3px); }
.button-lime { background: var(--lime); color: var(--ink); }
.button-lime:hover { background: var(--lime-bright); }
.button-dark { background: var(--ink); color: var(--paper); }
.button-dark:hover { background: #263a30; }
.text-link { display: inline-flex; align-items: center; gap: 17px; padding-bottom: 6px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 700; }
.text-link span { font-size: 19px; font-weight: 400; line-height: .8; transition: transform .25s; }
.text-link:hover span { transform: translateX(5px); }
.light-link { color: var(--paper); }
.dark-link { color: var(--ink); }

/* Header */
.announcement { position: relative; z-index: 12; border-bottom: 1px solid rgba(19, 34, 28, .1); background: var(--sage); color: var(--ink); font-size: 11px; font-weight: 600; letter-spacing: .03em; }
.announcement-inner { display: flex; align-items: center; justify-content: flex-start; min-height: 34px; }
.announcement p { display: flex; align-items: center; gap: 9px; margin: 0; }
.announcement a { display: inline-flex; align-items: center; gap: 8px; }
.announcement a span { font-size: 16px; }
.status-dot, .pulse-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--ink); }
.site-header { position: absolute; z-index: 10; top: 34px; width: 100%; color: var(--paper); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 84px; border-bottom: 1px solid rgba(244, 246, 241, .22); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; white-space: nowrap; }
.brand-mark { position: relative; display: grid; grid-template-columns: repeat(2, 9px); grid-template-rows: repeat(2, 9px); gap: 3px; width: 21px; height: 21px; transform: rotate(45deg); }
.brand-mark i { display: block; background: var(--lime); }
.brand-mark i:nth-child(1) { border-radius: 50% 0 0 0; }
.brand-mark i:nth-child(2) { border-radius: 0 50% 0 0; }
.brand-mark i:nth-child(3) { border-radius: 0 0 0 50%; }
.brand-mark i:nth-child(4) { border-radius: 0 0 50% 0; }
.brand-type { color: var(--solvo-blue); font-family: var(--serif); font-size: 23px; letter-spacing: -.025em; }
.brand-divider { display: inline-block; width: 1px; height: 19px; margin-left: 4px; background: rgba(244, 246, 241, .45); }
.brand-sub { color: rgba(244, 246, 241, .66); font-size: 9px; letter-spacing: .16em; }
.main-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 46px); font-size: 12px; font-weight: 600; }
.main-nav a { position: relative; color: rgba(244, 246, 241, .83); transition: color .2s; }
.main-nav a:not(.nav-contact)::after { position: absolute; right: 0; bottom: -10px; left: 0; height: 1px; background: var(--lime); content: ''; transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease); }
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.main-nav a[aria-current="page"] { color: var(--white); }
.nav-contact { display: inline-flex; align-items: center; gap: 15px; padding: 10px 14px; border: 1px solid rgba(244, 246, 241, .4); color: var(--paper) !important; transition: background .2s, color .2s !important; }
.nav-contact:hover { background: var(--lime); color: var(--ink) !important; }
.nav-contact span { font-size: 17px; font-weight: 400; }
.menu-toggle { display: none; background: transparent; color: var(--paper); }

/* Hero */
.hero { position: relative; min-height: 800px; padding: 190px 0 50px; overflow: hidden; }
.hero::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 60px; background: var(--paper); clip-path: polygon(0 100%, 100% 0, 100% 100%); content: ''; }
.hero-grid { display: grid; grid-template-columns: minmax(390px, .88fr) minmax(440px, 1.12fr); align-items: center; gap: clamp(40px, 8vw, 130px); }
.hero-copy { position: relative; z-index: 1; padding-bottom: 50px; }
.hero-lede { max-width: 455px; margin-bottom: 36px; color: rgba(244, 246, 241, .78); font-size: 16px; font-weight: 500; line-height: 1.65; }
.partner-signature { display: flex; align-items: center; gap: 13px; margin-bottom: 32px; }
.partner-graphic { display: grid; grid-template-columns: repeat(2, 9px); grid-template-rows: repeat(2, 9px); gap: 3px; width: 21px; height: 21px; transform: rotate(45deg); }
.partner-graphic i { display: block; background: var(--lime); }
.partner-graphic i:nth-child(1) { border-radius: 50% 0 0 0; }.partner-graphic i:nth-child(2) { border-radius: 0 50% 0 0; }.partner-graphic i:nth-child(3) { border-radius: 0 0 0 50%; }.partner-graphic i:nth-child(4) { border-radius: 0 0 50% 0; }
.partner-signature strong { display: block; color: var(--lime); font-size: 10px; letter-spacing: .14em; line-height: 1; }
.partner-signature small { display: block; margin-top: 6px; color: var(--solvo-blue); font-size: 10px; }
.hero-actions { display: flex; align-items: center; gap: 32px; }
.hero-note { display: flex; align-items: center; gap: 13px; margin-top: 85px; color: rgba(244, 246, 241, .46); font-size: 11px; letter-spacing: .06em; }
.note-line { width: 32px; height: 1px; background: var(--lime); }
.hero-visual { position: relative; min-height: 580px; }
.hero-image-wrap { position: absolute; top: 0; right: 0; bottom: 0; left: 0; overflow: hidden; }
.hero-image-wrap::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(19, 34, 28, .38), transparent 48%), linear-gradient(0deg, rgba(19, 34, 28, .45), transparent 48%); content: ''; }
.hero-image-wrap img { height: 100%; min-height: 580px; filter: saturate(.78); }
.hero-overlay-card { position: absolute; right: -28px; bottom: 32px; width: 205px; padding: 20px; background: rgba(19, 34, 28, .93); color: var(--paper); box-shadow: 0 18px 48px rgba(0, 0, 0, .16); }
.live-label { display: flex; align-items: center; gap: 7px; margin-bottom: 31px; color: rgba(244, 246, 241, .62); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.pulse-dot { background: var(--lime); box-shadow: 0 0 0 4px rgba(185, 243, 91, .15); }
.hero-overlay-card strong { display: block; margin-bottom: 30px; font-family: var(--serif); font-size: 26px; font-weight: 500; letter-spacing: -.06em; line-height: .98; }
.overlay-data { display: flex; justify-content: space-between; margin-bottom: 13px; border-top: 1px solid rgba(244, 246, 241, .2); padding-top: 11px; color: rgba(244, 246, 241, .63); font-size: 9px; }
.overlay-data span:first-child { color: var(--lime); font-size: 15px; }
.signal-bars { display: flex; align-items: end; gap: 3px; height: 18px; }
.signal-bars i { display: block; width: 4px; background: var(--lime); }
.signal-bars i:nth-child(1) { height: 5px; opacity: .35; }.signal-bars i:nth-child(2) { height: 8px; opacity: .5; }.signal-bars i:nth-child(3) { height: 11px; opacity: .65; }.signal-bars i:nth-child(4) { height: 14px; opacity: .82; }.signal-bars i:nth-child(5) { height: 18px; }
.hero-index { position: absolute; top: 50%; right: -75px; display: flex; align-items: center; gap: 11px; color: rgba(244, 246, 241, .55); font-size: 10px; letter-spacing: .1em; transform: rotate(90deg); }
.hero-index b { color: var(--lime); font-size: 12px; font-weight: 500; }.hero-index .index-rule { width: 66px; height: 1px; background: rgba(244, 246, 241, .35); }
.hero-bottom { position: absolute; z-index: 1; right: 0; bottom: 28px; left: 0; display: flex; justify-content: space-between; color: rgba(244, 246, 241, .6); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.scroll-cue { display: flex; align-items: center; gap: 10px; }.scroll-cue span { display: block; width: 6px; height: 6px; border-right: 1px solid var(--lime); border-bottom: 1px solid var(--lime); transform: rotate(45deg); }

/* Partner identity */
.sector-bar { border-block: 1px solid rgba(19, 34, 28, .1); background: var(--sage); color: var(--ink); }
.sector-inner { display: grid; grid-template-columns: 1fr 2.2fr auto; align-items: center; gap: 38px; min-height: 112px; }
.sector-inner > p { margin: 0; font-family: var(--serif); font-size: 16px; letter-spacing: -.035em; line-height: 1.08; }.sector-inner > p strong { font-weight: 500; }
.sector-list { display: flex; flex-wrap: wrap; gap: 10px 28px; }.sector-list span { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }.sector-list span::before { display: inline-block; width: 5px; height: 5px; margin: 0 9px 2px 0; border-radius: 50%; background: var(--ink); content: ''; }
.partner-seal { display: flex; align-items: center; gap: 12px; padding-left: 28px; border-left: 1px solid rgba(19, 34, 28, .28); }.partner-seal-mark { display: grid; grid-template-columns: repeat(2, 7px); grid-template-rows: repeat(2, 7px); gap: 2px; width: 16px; height: 16px; transform: rotate(45deg); }.partner-seal-mark i { display: block; background: var(--ink); }.partner-seal-mark i:nth-child(1) { border-radius: 50% 0 0 0; }.partner-seal-mark i:nth-child(2) { border-radius: 0 50% 0 0; }.partner-seal-mark i:nth-child(3) { border-radius: 0 0 0 50%; }.partner-seal-mark i:nth-child(4) { border-radius: 0 0 50% 0; }.partner-seal strong { display: block; font-family: var(--serif); font-size: 13px; font-weight: 600; letter-spacing: -.04em; line-height: 1; }.partner-seal small { display: block; margin-top: 5px; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

/* Partner / capability conveyor */
.ecosystem-strip { overflow: hidden; border-bottom: 1px solid rgba(19, 34, 28, .12); background: var(--paper); }
.ecosystem-window { overflow: hidden; border-top: 1px solid var(--line); }.ecosystem-track { display: flex; align-items: center; width: max-content; color: #769172; transform: translate3d(0, 0, 0); will-change: transform; }.ecosystem-group { display: flex; flex: 0 0 100vw; align-items: center; justify-content: space-around; gap: 0; width: 100vw; padding: 0; }.ecosystem-track b { color: var(--ink-soft); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }.ecosystem-lockup { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); font-family: var(--serif); font-size: 17px; font-weight: 600; letter-spacing: -.04em; white-space: nowrap; }.ecosystem-lockup .partner-seal-mark { flex: 0 0 auto; }

/* Intro */
.intro { padding: 145px 0 160px; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8%; margin-bottom: 88px; }
.intro-heading h2 { margin-bottom: 0; }
.intro-copy { max-width: 500px; padding-top: 55px; }.intro-copy p:not(.large-copy) { max-width: 430px; margin-bottom: 30px; color: var(--muted); }
.image-mosaic { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 265px 200px; gap: 17px; }
.mosaic-item { position: relative; margin: 0; overflow: hidden; }.mosaic-item img { height: 100%; transition: transform .8s var(--ease); }.mosaic-item:hover img, .gallery-card:hover img { transform: scale(1.04); }.mosaic-large { grid-row: span 2; }.mosaic-tall { grid-row: span 1; }.mosaic-small { grid-column: 2; }
.mosaic-item::after, .gallery-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(19, 34, 28, .62), transparent 50%); content: ''; pointer-events: none; }
.mosaic-item figcaption { position: absolute; z-index: 1; bottom: 18px; left: 20px; color: var(--white); font-family: var(--serif); font-size: 14px; letter-spacing: -.02em; }

/* Solutions */
.solutions { padding: 136px 0 155px; }.section-head { display: flex; align-items: end; justify-content: space-between; gap: 80px; margin-bottom: 64px; }.section-head h2 { margin-bottom: 0; }.section-intro { max-width: 320px; margin-bottom: 8px; color: var(--muted); font-size: 14px; }
.solution-grid { display: grid; grid-template-columns: 1.18fr .91fr .91fr; gap: 17px; align-items: start; }.solution-card { background: var(--paper); transition: transform .35s var(--ease), box-shadow .35s; }.solution-card:hover { box-shadow: 0 20px 50px rgba(19, 34, 28, .1); transform: translateY(-8px); }.solution-card-featured { margin-top: 45px; }
.card-image { position: relative; overflow: hidden; }.card-image img { height: 295px; transition: transform .7s var(--ease); }.solution-card-featured .card-image img { height: 390px; }.solution-card:hover .card-image img { transform: scale(1.045); }.card-number { position: absolute; top: 18px; left: 19px; color: var(--white); font-family: var(--serif); font-size: 14px; }
.solution-content { position: relative; min-height: 240px; padding: 25px 27px 28px; }.card-kicker { margin-bottom: 13px; color: #526a59; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }.solution-content h3 { max-width: 350px; margin-bottom: 17px; font-size: clamp(1.45rem, 1.9vw, 2.05rem); }.solution-content > p:last-of-type { max-width: 275px; margin-bottom: 20px; color: var(--muted); font-size: 13px; }.card-arrow { position: absolute; right: 27px; bottom: 26px; display: grid; width: 39px; height: 39px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); font-size: 20px; transition: color .25s, background .25s, transform .25s; }.card-arrow:hover { background: var(--ink); color: var(--lime); transform: rotate(45deg); }

/* Intelligence */
.intelligence { padding: 140px 0 120px; }.intelligence-top { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 8%; margin-bottom: 72px; }.intelligence h2 { margin-bottom: 0; }.intelligence-lede { max-width: 420px; margin: 0 0 4px; color: rgba(244, 246, 241, .65); font-size: 16px; line-height: 1.6; }.intelligence-panel { background: #26382f; }.panel-tabs { display: flex; padding: 0 35px; border-bottom: 1px solid rgba(244, 246, 241, .16); }.panel-tab { position: relative; padding: 26px 22px 22px; background: transparent; color: rgba(244, 246, 241, .55); font-size: 12px; font-weight: 600; }.panel-tab:first-child { padding-left: 0; }.panel-tab::after { position: absolute; right: 22px; bottom: -1px; left: 22px; height: 2px; background: var(--lime); content: ''; transform: scaleX(0); transition: transform .25s; }.panel-tab:first-child::after { left: 0; }.panel-tab.is-active { color: var(--paper); }.panel-tab.is-active::after { transform: scaleX(1); }.tab-panel { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8%; padding: 54px 55px 55px; }.tab-panel[hidden] { display: none; }.tab-copy { padding: 17px 0; }.tab-index { margin-bottom: 36px; color: var(--lime); font-size: 11px; letter-spacing: .13em; }.tab-copy h3 { margin-bottom: 28px; font-size: clamp(2.25rem, 3.4vw, 3.7rem); }.tab-copy > p:not(.tab-index) { max-width: 385px; margin-bottom: 29px; color: rgba(244, 246, 241, .66); font-size: 14px; }.check-list { display: grid; gap: 11px; margin: 0 0 40px; padding: 0; list-style: none; color: rgba(244, 246, 241, .84); font-size: 12px; }.check-list li::before { display: inline-block; width: 13px; height: 13px; margin-right: 9px; border: 1px solid var(--lime); border-radius: 50%; color: var(--lime); content: '✓'; font-size: 8px; line-height: 12px; text-align: center; }.tab-image { position: relative; min-height: 450px; overflow: hidden; }.tab-image img { height: 100%; min-height: 450px; }.tab-image::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(19, 34, 28, .65), transparent 50%); content: ''; }.image-tag { position: absolute; z-index: 1; bottom: 23px; left: 24px; color: var(--white); font-family: var(--serif); font-size: 18px; }.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 78px; border-top: 1px solid var(--dark-line); }.stat-row > div { display: flex; align-items: center; gap: 16px; padding: 22px 22px 0 0; border-right: 1px solid var(--dark-line); }.stat-row > div:not(:first-child) { padding-left: 25px; }.stat-row > div:last-child { border-right: 0; }.stat-row strong { color: var(--lime); font-family: var(--serif); font-size: 40px; font-weight: 400; letter-spacing: -.07em; }.stat-row span { color: rgba(244, 246, 241, .57); font-size: 10px; line-height: 1.35; text-transform: uppercase; }

/* Journey */
.journey { padding: 145px 0 150px; }.journey-grid { display: grid; grid-template-columns: .77fr 1.23fr; gap: 11%; }.journey-copy { padding-top: 8px; }.journey-copy h2 { margin-bottom: 29px; }.journey-copy > p:not(.eyebrow) { max-width: 350px; margin-bottom: 36px; color: var(--muted); font-size: 15px; }.journey-timeline { position: relative; }.journey-step { position: relative; display: grid; grid-template-columns: 45px 1fr 25px; align-items: center; width: 100%; padding: 18px 0; border-top: 1px solid var(--line); background: transparent; color: var(--ink); text-align: left; }.journey-step:last-of-type { border-bottom: 1px solid var(--line); }.step-marker { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid #b5c0b7; border-radius: 50%; color: #89958d; font-family: var(--serif); font-size: 10px; transition: background .2s, border .2s, color .2s; }.journey-step b { display: block; margin-bottom: 2px; font-family: var(--serif); font-size: 21px; font-weight: 500; letter-spacing: -.04em; }.journey-step small { color: var(--muted); font-size: 12px; }.step-arrow { color: #96a59b; font-size: 20px; transition: transform .25s; }.journey-step.is-active .step-marker { border-color: var(--ink); background: var(--ink); color: var(--lime); }.journey-step.is-active b { color: #6f9268; }.journey-step:hover .step-arrow { transform: translateX(4px); }.journey-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; padding: 17px; background: var(--white); }.journey-detail img { height: 205px; transition: opacity .2s ease; }.journey-detail > div { align-self: center; padding-right: 10px; }.journey-detail p:first-child { margin-bottom: 19px; color: #799275; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }.journey-detail h3 { margin-bottom: 12px; font-size: 27px; }.journey-detail p:last-child { margin-bottom: 0; color: var(--muted); font-size: 12px; }

/* Story */
.story { padding: 140px 0 150px; }.story-head { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 70px; }.story-head h2 { margin-bottom: 0; }.story-head > p { max-width: 360px; margin-bottom: 7px; color: var(--muted); font-size: 14px; }.story-feature { display: grid; grid-template-columns: 1.22fr .78fr; background: var(--paper); }.story-image { position: relative; min-height: 600px; }.story-image img { height: 100%; min-height: 600px; }.story-stamp { position: absolute; top: 27px; left: 27px; padding: 10px 13px; border: 1px solid rgba(244, 246, 241, .5); color: var(--white); font-size: 9px; letter-spacing: .11em; line-height: 1.45; text-transform: uppercase; }.story-stamp strong { font-family: var(--serif); font-size: 22px; font-weight: 400; letter-spacing: -.05em; }.story-system-badge { position: absolute; right: 25px; bottom: 24px; display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: rgba(19, 34, 28, .9); color: var(--paper); }.badge-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(185, 243, 91, .14); }.story-system-badge strong { display: block; color: var(--lime); font-size: 9px; letter-spacing: .13em; line-height: 1; }.story-system-badge small { display: block; margin-top: 5px; color: rgba(244, 246, 241, .58); font-size: 9px; }.story-content { display: flex; flex-direction: column; justify-content: center; padding: 55px clamp(30px, 5vw, 76px); }.story-content h3 { margin-bottom: 25px; font-size: clamp(2.15rem, 3.2vw, 3.5rem); }.story-feature-copy { max-width: 390px; margin-bottom: 28px; color: var(--muted); font-size: 13px; }.story-feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 17px 22px; margin-bottom: 37px; border-top: 1px solid var(--line); padding-top: 18px; }.story-feature-list div { display: grid; grid-template-columns: 25px 1fr; column-gap: 8px; }.story-feature-list span { grid-row: span 2; color: #769172; font-size: 9px; font-weight: 700; }.story-feature-list strong { font-family: var(--serif); font-size: 16px; font-weight: 500; letter-spacing: -.03em; line-height: 1.1; }.story-feature-list small { color: var(--muted); font-size: 10px; line-height: 1.3; }.story-content blockquote { max-width: 360px; margin: 0 0 55px; color: var(--muted); font-family: var(--serif); font-size: 19px; letter-spacing: -.035em; line-height: 1.25; }.story-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 45px; border-top: 1px solid var(--line); padding-top: 17px; }.story-metrics div { display: grid; gap: 1px; }.story-metrics strong { font-family: var(--serif); font-size: 27px; font-weight: 500; letter-spacing: -.06em; }.story-metrics span { color: var(--muted); font-size: 9px; text-transform: uppercase; }

/* Gallery */
.gallery { padding: 145px 0 160px; }.gallery-head { margin-bottom: 70px; }.gallery-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 290px 210px 260px; gap: 17px; }.gallery-card { position: relative; margin: 0; overflow: hidden; }.gallery-card img { height: 100%; transition: transform .8s var(--ease); }.gallery-one { grid-column: span 2; }.gallery-two { grid-row: span 2; }.gallery-three { grid-row: span 2; }.gallery-four { grid-column: span 1; }.gallery-five { grid-column: span 1; }.gallery-card figcaption { position: absolute; z-index: 1; right: 17px; bottom: 16px; left: 19px; display: flex; align-items: end; justify-content: space-between; gap: 15px; color: var(--white); font-family: var(--serif); font-size: 15px; letter-spacing: -.03em; }.gallery-card figcaption > span { flex: 0 0 auto; color: var(--lime); font-family: var(--sans); font-size: 10px; letter-spacing: .1em; }.gallery-card figcaption > div { display: grid; gap: 3px; flex: 1; }.gallery-card figcaption strong { font-weight: 500; }.gallery-card figcaption small { color: rgba(255, 255, 255, .68); font-family: var(--sans); font-size: 10px; letter-spacing: .01em; line-height: 1.25; }

/* Process */
.process { padding: 138px 0 145px; }.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8%; align-items: end; margin-bottom: 87px; }.process-grid h2 { margin-bottom: 0; }.process-intro { max-width: 405px; margin: 0 0 6px; color: rgba(244, 246, 241, .64); font-size: 15px; }.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--dark-line); }.process-step { min-height: 220px; padding: 21px 24px 0 0; border-right: 1px solid var(--dark-line); }.process-step:not(:first-child) { padding-left: 24px; }.process-step:last-child { border-right: 0; }.process-step > span { display: block; margin-bottom: 52px; color: var(--lime); font-size: 11px; }.process-step h3 { margin-bottom: 13px; color: var(--paper); font-size: 24px; }.process-step p { max-width: 205px; margin: 0; color: rgba(244, 246, 241, .55); font-size: 12px; line-height: 1.5; }

/* FAQ */
.faq { padding: 140px 0 150px; }.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 14%; }.faq-grid h2 { margin-bottom: 31px; }.faq-note { max-width: 225px; margin-bottom: 24px; color: var(--muted); font-size: 13px; }.faq-list { border-top: 1px solid var(--line); }.faq-list details { border-bottom: 1px solid var(--line); }.faq-list summary { position: relative; display: flex; align-items: center; justify-content: space-between; padding: 25px 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 20px; letter-spacing: -.035em; }.faq-list summary::-webkit-details-marker { display: none; }.summary-icon { position: relative; display: block; flex: 0 0 28px; width: 28px; height: 28px; margin-left: 20px; border: 1px solid #aebbb1; border-radius: 50%; }.summary-icon::before, .summary-icon::after { position: absolute; top: 13px; left: 8px; width: 10px; height: 1px; background: var(--ink); content: ''; }.summary-icon::after { transform: rotate(90deg); transition: transform .2s; }.faq-list details[open] .summary-icon { background: var(--ink); border-color: var(--ink); }.faq-list details[open] .summary-icon::before, .faq-list details[open] .summary-icon::after { background: var(--lime); }.faq-list details[open] .summary-icon::after { transform: rotate(0); }.faq-list details p { max-width: 600px; margin: -3px 65px 27px 0; color: var(--muted); font-size: 13px; }

/* Contact */
.contact { padding: 116px 0 125px; border-top: 1px solid rgba(19, 34, 28, .1); background: var(--sage); }.contact-copy h2 em { color: #647c5c; }.contact-prompt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12%; }.contact-prompt .contact-copy > p:not(.eyebrow) { max-width: 420px; }.contact-prompt .contact-copy .button { margin-top: 7px; }.contact-prompt-aside { align-self: end; max-width: 450px; padding-left: 42px; border-left: 1px solid rgba(19, 34, 28, .2); }.contact-prompt-aside h3 { margin-bottom: 20px; font-size: clamp(2rem, 3vw, 3rem); }.contact-prompt-aside h3 em { color: #647c5c; }.contact-prompt-aside > p:not(.eyebrow) { max-width: 370px; color: #526a59; font-size: 14px; line-height: 1.65; }.contact-prompt-aside .contact-routing { margin-top: 30px; }.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 12%; }.contact-copy h2 { margin-bottom: 30px; }.contact-copy > p:not(.eyebrow):not(.contact-small) { max-width: 315px; margin-bottom: 30px; color: #4f684d; font-size: 15px; }.contact-email { display: inline-flex; align-items: center; gap: 22px; padding-bottom: 7px; border-bottom: 1px solid rgba(19, 34, 28, .4); font-family: var(--serif); font-size: 19px; letter-spacing: -.035em; }.contact-email span { font-size: 20px; transition: transform .2s; }.contact-email:hover span { transform: translate(3px, -3px); }.contact-small { margin-top: 13px; color: #526a59; font-size: 10px; }.contact-routing { display: grid; gap: 7px; max-width: 285px; padding: 16px 0; border-top: 1px solid rgba(19, 34, 28, .34); border-bottom: 1px solid rgba(19, 34, 28, .34); }.contact-routing strong { font-family: var(--serif); font-size: 18px; font-weight: 500; letter-spacing: -.035em; }.contact-routing span { color: #4f6655; font-size: 11px; line-height: 1.4; }
.contact-form { padding: 30px; border: 1px solid rgba(19, 34, 28, .1); background: rgba(251, 250, 246, .74); box-shadow: 0 22px 55px rgba(19, 34, 28, .07); }.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }.contact-form label { display: block; margin-bottom: 23px; }.contact-form label > span { display: block; margin-bottom: 8px; color: #567253; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(19, 34, 28, .26); border-radius: 0; outline: 0; background: transparent; color: var(--ink); font-size: 14px; }.contact-form input, .contact-form select { height: 37px; }.contact-form textarea { min-height: 87px; padding: 9px 0; resize: vertical; }.contact-form input::placeholder, .contact-form textarea::placeholder { color: #657269; }.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--ink); }.contact-form input:focus-visible, .contact-form select:focus-visible, .contact-form textarea:focus-visible { outline: 2px solid var(--solvo-blue); outline-offset: 4px; }.contact-form select { appearance: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='m1 1 4 4 4-4' fill='none' stroke='%2313221c'/%3E%3C/svg%3E") right center / 10px 6px no-repeat; }.contact-form .has-error input, .contact-form .has-error select, .contact-form .has-error textarea { border-color: #b54e45; }.form-submit { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 7px; }.form-submit p { max-width: 220px; margin: 0; color: #526a59; font-size: 10px; line-height: 1.4; }.form-status { min-height: 18px; margin: 16px 0 0; color: #4f6655; font-size: 12px; }.form-status.error { color: #a94439; }

/* Footer */
.site-footer { padding: 80px 0 23px; }.footer-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 58px; border-bottom: 1px solid var(--dark-line); }.footer-top > p { margin: 0; color: rgba(244, 246, 241, .55); font-family: var(--serif); font-size: 20px; letter-spacing: -.035em; line-height: 1.1; }.footer-arrow { display: grid; width: 43px; height: 43px; place-items: center; border: 1px solid rgba(244, 246, 241, .4); border-radius: 50%; color: var(--lime); font-size: 20px; transition: background .2s, color .2s; }.footer-arrow:hover { background: var(--lime); color: var(--ink); }.footer-links { display: grid; grid-template-columns: repeat(3, 1fr) 1.2fr; gap: 35px; padding: 50px 0 85px; }.footer-links > div { display: flex; flex-direction: column; align-items: start; gap: 8px; }.footer-label { margin: 0 0 10px; color: var(--lime); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }.footer-links a { color: rgba(244, 246, 241, .62); font-size: 12px; transition: color .2s; }.footer-links a:hover { color: var(--lime); }.footer-statement { justify-content: end; }.footer-statement p { margin: 0; color: var(--paper); font-family: var(--serif); font-size: 28px; letter-spacing: -.06em; line-height: 1.02; }.footer-statement span { color: var(--lime); }.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--dark-line); padding-top: 20px; color: rgba(244, 246, 241, .56); font-size: 10px; }.footer-bottom a:hover { color: var(--lime); }.footer-legal { display: flex; gap: 18px; }.footer-legal a { color: rgba(244, 246, 241, .56); font-size: 10px; }.footer-legal a:hover { color: var(--lime); }.footer-legal a[aria-current="page"] { color: var(--paper); }

/* Modal */
.modal[hidden] { display: none; }.modal { position: fixed; z-index: 50; inset: 0; display: grid; place-items: center; padding: 25px; }.modal-backdrop { position: absolute; inset: 0; background: rgba(10, 19, 15, .75); backdrop-filter: blur(5px); }.modal-card { position: relative; z-index: 1; width: min(100%, 520px); padding: 55px 50px 50px; background: var(--paper); box-shadow: 0 30px 80px rgba(0, 0, 0, .25); }.modal-card h2 { margin-bottom: 22px; font-size: 43px; }.modal-card > p:not(.eyebrow) { margin-bottom: 34px; color: var(--muted); font-size: 15px; }.modal-close { position: absolute; top: 17px; right: 20px; width: 32px; height: 32px; border-radius: 50%; background: transparent; color: var(--ink); font-size: 27px; line-height: 1; }.modal-close:hover { background: #dce5da; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }.reveal.is-visible { opacity: 1; transform: none; }.reveal-delay-1 { transition-delay: .1s; }.reveal-delay-2 { transition-delay: .2s; }.reveal-delay-3 { transition-delay: .3s; }

@media (max-width: 1000px) {
  .container { width: min(calc(100% - 48px), var(--container)); }
  .hero { min-height: 760px; padding-top: 170px; }.hero-grid { gap: 45px; }.hero-overlay-card { right: -14px; }.hero-index { right: -55px; }
  .solutions, .intelligence, .journey, .story, .gallery, .process, .faq { padding-block: 110px; }
  .solution-grid { grid-template-columns: 1fr 1fr; }.solution-card-featured { grid-column: span 2; margin-top: 0; }.solution-card-featured .card-image img { height: 320px; }
  .tab-panel { gap: 5%; padding-inline: 35px; }.tab-image, .tab-image img { min-height: 400px; }
  .story-feature { grid-template-columns: 1fr 1fr; }.story-image, .story-image img { min-height: 520px; }.story-content { padding: 40px; }
  .gallery-grid { grid-template-rows: 240px 190px 220px; }
  .contact-grid { gap: 7%; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .announcement-inner { min-height: 39px; }.announcement-inner p { font-size: 10px; }.announcement-inner p { max-width: 260px; line-height: 1.2; }
  .site-header { top: 39px; }.nav-wrap { min-height: 74px; }.brand-type { font-size: 21px; }.brand-sub, .brand-divider { display: none; }.menu-toggle { display: flex; flex-direction: column; gap: 7px; padding: 10px 0 10px 10px; }.menu-toggle span { display: block; width: 25px; height: 1px; background: var(--paper); transition: transform .25s; }.menu-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }.menu-toggle.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .main-nav { position: absolute; top: 74px; right: 0; left: 0; display: flex; align-items: stretch; flex-direction: column; gap: 0; padding: 10px 18px 20px; background: var(--ink); border-bottom: 1px solid rgba(244, 246, 241, .18); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity .25s, transform .25s; }.main-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }.main-nav a { padding: 14px 0; border-bottom: 1px solid rgba(244, 246, 241, .1); }.main-nav a:not(.nav-contact)::after { display: none; }.main-nav a[aria-current="page"] { padding-left: 12px; border-left: 2px solid var(--lime); }.main-nav .nav-contact { justify-content: space-between; margin-top: 15px; padding: 13px 15px; }
  .hero { min-height: 875px; padding-top: 160px; }.hero::after { height: 30px; }.hero-grid { display: flex; flex-direction: column; align-items: stretch; gap: 15px; }.hero-copy { padding: 0; }.hero-copy h1 { font-size: clamp(2.7rem, 11vw, 3.9rem); }.hero-lede { font-size: 16px; }.hero-actions { flex-wrap: wrap; gap: 21px; }.hero-note { margin-top: 35px; }.hero-visual { min-height: 355px; }.hero-image-wrap, .hero-image-wrap img { min-height: 355px; }.hero-overlay-card { right: 10px; bottom: -12px; width: 180px; padding: 16px; }.hero-overlay-card strong { margin-bottom: 20px; font-size: 23px; }.live-label { margin-bottom: 21px; }.hero-index { display: none; }.hero-bottom { bottom: 13px; font-size: 8px; }.hero-bottom > span { max-width: 210px; }
  .sector-inner { grid-template-columns: 1fr; gap: 18px; padding-block: 23px; }.sector-inner > p { font-size: 15px; }.sector-list { gap: 9px 16px; }.sector-list span { font-size: 9px; }.partner-seal { width: fit-content; padding: 17px 0 0; border-top: 1px solid rgba(19, 34, 28, .28); border-left: 0; }
  .ecosystem-group { flex-basis: auto; justify-content: flex-start; gap: 28px; width: max-content; min-width: 0; padding-right: 28px; }.ecosystem-track { padding-block: 13px; }.ecosystem-track b { font-size: 9px; }.ecosystem-lockup { font-size: 15px; }
  .intro { padding-block: 90px 100px; }.intro-grid { display: block; margin-bottom: 50px; }.intro-copy { padding-top: 37px; }.intro-copy p:not(.large-copy) { font-size: 14px; }.image-mosaic { grid-template-columns: 1.05fr .95fr; grid-template-rows: 185px 150px; gap: 10px; }.mosaic-item figcaption { bottom: 10px; left: 12px; font-size: 11px; }
  .solutions, .intelligence, .journey, .story, .gallery, .process, .faq { padding-block: 90px; }.section-head, .story-head { display: block; margin-bottom: 45px; }.section-intro { margin-top: 30px; font-size: 13px; }.solution-grid { display: block; }.solution-card, .solution-card-featured { margin-bottom: 14px; }.solution-card-featured .card-image img, .card-image img { height: 280px; }.solution-content { min-height: 210px; padding: 22px; }.solution-content h3 { font-size: 1.85rem; }
  .intelligence-top { display: block; margin-bottom: 42px; }.intelligence-lede { margin-top: 28px; font-size: 14px; }.panel-tabs { overflow-x: auto; padding-inline: 20px; }.panel-tab { flex: 0 0 auto; padding: 21px 17px 18px; font-size: 11px; }.panel-tab:first-child { padding-left: 0; }.panel-tab::after { right: 17px; left: 17px; }.panel-tab:first-child::after { left: 0; }.tab-panel { display: flex; flex-direction: column-reverse; gap: 30px; padding: 27px 20px 25px; }.tab-image, .tab-image img { min-height: 280px; }.tab-copy { padding: 0; }.tab-index { margin-bottom: 25px; }.tab-copy h3 { font-size: 2.2rem; }.tab-copy > p:not(.tab-index) { font-size: 13px; }.stat-row { margin-top: 55px; }.stat-row > div, .stat-row > div:not(:first-child) { display: block; padding: 17px 8px 0 0; }.stat-row > div:not(:first-child) { padding-left: 12px; }.stat-row strong { display: block; margin-bottom: 6px; font-size: 30px; }.stat-row span { font-size: 8px; }
  .journey-grid { display: block; }.journey-copy { margin-bottom: 52px; }.journey-copy > p:not(.eyebrow) { font-size: 14px; }.journey-step { grid-template-columns: 39px 1fr 20px; padding: 15px 0; }.journey-step b { font-size: 18px; }.journey-step small { font-size: 10px; }.journey-detail { display: block; margin-top: 25px; padding: 10px; }.journey-detail img { height: 200px; margin-bottom: 23px; }.journey-detail > div { padding: 0 8px 12px; }.journey-detail h3 { font-size: 24px; }
  .story-head > p { margin-top: 28px; font-size: 13px; }.story-feature { display: block; }.story-image, .story-image img { min-height: 340px; height: 340px; }.story-system-badge { right: 12px; bottom: 12px; }.story-content { padding: 35px 24px 38px; }.story-content h3 { font-size: 2.2rem; margin-bottom: 21px; }.story-feature-copy { font-size: 12px; }.story-feature-list { gap: 15px 12px; margin-bottom: 30px; }.story-feature-list div { grid-template-columns: 20px 1fr; column-gap: 5px; }.story-feature-list strong { font-size: 14px; }.story-feature-list small { font-size: 9px; }.story-content blockquote { margin-bottom: 37px; font-size: 17px; }.story-metrics { margin-bottom: 35px; }.story-metrics strong { font-size: 23px; }.story-metrics span { font-size: 8px; }
  .gallery-head { margin-bottom: 40px; }.gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 190px 190px 190px; gap: 10px; }.gallery-one { grid-column: span 2; }.gallery-two, .gallery-three { grid-row: span 1; }.gallery-three { grid-column: span 2; }.gallery-four, .gallery-five { grid-column: span 1; }.gallery-card figcaption { right: 10px; bottom: 10px; left: 12px; font-size: 12px; }
  .process-grid { display: block; margin-bottom: 50px; }.process-intro { margin-top: 30px; font-size: 14px; }.process-steps { grid-template-columns: 1fr 1fr; }.process-step { min-height: 185px; padding: 16px 15px 20px 0; }.process-step:not(:first-child) { padding-left: 15px; }.process-step:nth-child(2) { border-right: 0; }.process-step:nth-child(n+3) { border-top: 1px solid var(--dark-line); }.process-step > span { margin-bottom: 28px; }.process-step h3 { font-size: 20px; }.process-step p { font-size: 11px; }
  .faq-grid { display: block; }.faq-grid > div:first-child { margin-bottom: 45px; }.faq-list summary { padding: 20px 0; font-size: 17px; }.faq-list details p { margin-right: 25px; font-size: 12px; }
  .contact { padding-block: 90px; }.contact-grid, .contact-prompt-grid { display: block; }.contact-copy { margin-bottom: 48px; }.contact-prompt-aside { max-width: none; padding: 36px 0 0; border-top: 1px solid rgba(19, 34, 28, .2); border-left: 0; }.contact-email { font-size: 16px; }.contact-form { padding: 22px 18px; }.form-row { display: block; }.contact-form label { margin-bottom: 21px; }.contact-form input, .contact-form select, .contact-form textarea { font-size: 16px; }.form-submit { display: block; }.form-submit p { margin-bottom: 20px; }.form-submit .button { width: 100%; }
  .site-footer { padding-top: 60px; }.footer-top { display: block; padding-bottom: 42px; }.footer-top > p { margin-top: 32px; font-size: 17px; }.footer-arrow { margin-top: 28px; }.footer-links { grid-template-columns: 1fr 1fr; gap: 38px 20px; padding-block: 42px 55px; }.footer-statement { grid-column: span 2; margin-top: 10px; }.footer-statement p { font-size: 24px; }.footer-bottom { flex-wrap: wrap; font-size: 9px; }.footer-bottom > span:nth-child(2) { display: none; }.footer-bottom > a { margin-left: auto; }.footer-legal { order: 3; width: 100%; }.footer-legal a { margin-left: 0; }
  .modal-card { padding: 45px 25px 28px; }.modal-card h2 { font-size: 44px; }
}

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