@import "tailwindcss";

:root {
  --ink: #08182d;
  --muted: #536277;
  --line: #dce5ec;
  --paper: #ffffff;
  --soft: #f4f8fa;
  --blue: #2357ff;
  --blue-dark: #1036bf;
  --cyan: #54d9ec;
  --green: #2bd180;
  --lime: #bff34e;
  --navy: #07162d;
  --radius: 24px;
}

/* WordPress integration */
.b2g-front-page .wp-site-blocks{padding:0}.hero-media{min-height:560px;border-radius:28px;overflow:hidden;background:linear-gradient(145deg,#eaf3ff,#f4ffed);box-shadow:0 38px 90px #07162d2b}.hero-media img{width:100%;height:100%;min-height:560px;object-fit:cover}.challenge-card>div p,.solution-card>div p{color:var(--muted);margin:0;font-size:14px;line-height:1.55}.solution-logo{height:58px;margin-top:28px;display:flex;align-items:center}.solution-logo img{max-width:180px;max-height:56px;width:auto;height:auto;object-fit:contain}.b2g-application-form{display:block}.b2g-form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}.b2g-application-form label{color:#4f5d70;display:grid;gap:8px;margin-bottom:16px;font-size:11px;font-weight:700}.b2g-application-form input:not([type=checkbox]),.b2g-application-form textarea{width:100%;padding:14px;border:1px solid #d7e0e7;border-radius:11px;background:#fbfcfd;color:var(--ink);outline:none;transition:border-color .2s,box-shadow .2s}.b2g-application-form input:focus,.b2g-application-form textarea:focus{border-color:var(--blue);box-shadow:0 0 0 3px #2357ff1a}.b2g-application-form button{width:100%;min-height:52px;border:0;border-radius:14px;background:var(--blue);color:#fff;font-weight:700;cursor:pointer}.b2g-consent{grid-template-columns:18px 1fr!important;align-items:start;font-weight:400!important;line-height:1.4}.b2g-consent input{width:16px;height:16px;accent-color:var(--blue)}.b2g-honeypot{position:absolute!important;left:-9999px!important}.b2g-form-message{margin-bottom:16px;padding:13px 15px;border-radius:10px;font-size:13px}.b2g-form-message.success{background:#e8faef;color:#17663a}.b2g-form-message.error{background:#fff0f0;color:#922}.page-shell{min-height:65vh;padding-top:90px}.entry-content{font-size:17px;line-height:1.7}.entry-content>h1{font-size:clamp(42px,6vw,72px);margin-bottom:38px}.entry-content h2{font-size:clamp(30px,4vw,48px);margin-top:50px}.entry-content a{color:var(--blue);text-decoration:underline}.entry-content img{border-radius:18px}.screen-reader-text{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.admin-bar .site-header{margin-top:48px}@media (width<=782px){.admin-bar .site-header{margin-top:62px}}@media (width<=700px){.hero-media,.hero-media img{min-height:420px}.b2g-form-row{grid-template-columns:1fr}.partner-grid article{min-height:auto}.page-shell{padding-top:60px}}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
main { overflow: hidden; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; position: relative; }

.site-header {
  width: min(1240px, calc(100% - 32px));
  height: 74px;
  margin: 16px auto 0;
  padding: 0 16px 0 20px;
  display: flex;
  align-items: center;
  gap: 32px;
  border: 1px solid rgba(8, 24, 45, .09);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  position: relative;
  z-index: 20;
  box-shadow: 0 10px 34px rgba(16, 37, 65, .06);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 800; letter-spacing: -.03em; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: var(--ink); color: white; font-size: 11px; letter-spacing: .03em; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; font-size: 14px; color: #344258; }
.desktop-nav a { transition: color .2s ease; }
.desktop-nav a:hover { color: var(--blue); }
.button {
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: white;
  background: var(--blue);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(35, 87, 255, .22);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--blue-dark); box-shadow: 0 16px 34px rgba(35,87,255,.28); }
.button-small { min-height: 42px; padding: 0 16px; border-radius: 11px; font-size: 13px; }
.mobile-menu { display: none; margin-left: auto; position: relative; }
.mobile-menu summary { list-style: none; cursor: pointer; font-weight: 700; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu nav { position: absolute; top: 46px; right: 0; width: 240px; padding: 14px; display: grid; gap: 2px; border: 1px solid var(--line); background: white; border-radius: 16px; box-shadow: 0 24px 50px rgba(8,24,45,.14); }
.mobile-menu nav a { padding: 12px; border-radius: 10px; }
.mobile-menu nav a:hover { background: var(--soft); }

.hero { min-height: 760px; position: relative; padding: 78px 0 88px; }
.hero::before { content: ""; position: absolute; inset: -90px 0 0; background: linear-gradient(180deg, #f6fbff 0%, #fff 82%); z-index: -3; }
.hero::after { content: ""; position: absolute; inset: 0; opacity: .22; z-index: -2; background-image: linear-gradient(rgba(35,87,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(35,87,255,.09) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent 86%); }
.hero-glow { position: absolute; border-radius: 999px; filter: blur(10px); pointer-events: none; }
.hero-glow-one { width: 560px; height: 560px; right: -200px; top: -100px; background: radial-gradient(circle, rgba(84,217,236,.24), transparent 67%); }
.hero-glow-two { width: 420px; height: 420px; left: -180px; bottom: 10px; background: radial-gradient(circle, rgba(191,243,78,.18), transparent 68%); }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 70px; align-items: center; }
.eyebrow, .kicker { margin: 0 0 22px; color: var(--blue); font-size: 12px; line-height: 1.3; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: #29425e; letter-spacing: .075em; }
.eyebrow span { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(43,209,128,.13); }
h1 { margin: 0; max-width: 760px; font-size: clamp(48px, 5vw, 76px); line-height: .99; letter-spacing: -.06em; font-weight: 750; }
h1 em { color: var(--blue); font-style: normal; }
.hero-lead { margin: 28px 0 0; max-width: 650px; color: var(--muted); font-size: 19px; line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; }
.text-link span { color: var(--blue); }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 54px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-facts div { min-width: 0; padding-right: 16px; }
.hero-facts div + div { padding-left: 18px; border-left: 1px solid var(--line); }
.hero-facts strong, .hero-facts span { display: block; }
.hero-facts strong { font-size: 15px; letter-spacing: -.02em; }
.hero-facts span { margin-top: 6px; color: #748195; font-size: 11px; line-height: 1.35; }

.pilot-console { padding: 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 28px; background: var(--navy); color: white; box-shadow: 0 38px 90px rgba(7,22,45,.25); position: relative; overflow: hidden; transform: perspective(1100px) rotateY(-3deg) rotateX(1deg); }
.pilot-console::before { content: ""; position: absolute; width: 380px; height: 380px; right: -120px; top: -170px; border-radius: 50%; background: radial-gradient(circle, rgba(84,217,236,.26), transparent 67%); }
.console-top { display: flex; justify-content: space-between; align-items: center; padding: 4px 2px 18px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 11px; }
.console-title { color: #a8b8ce; font-family: var(--font-geist-mono), monospace; }
.live-dot { display: inline-flex; align-items: center; gap: 7px; color: #c8fadc; }
.live-dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 13px var(--green); }
.console-question { padding: 24px 4px 18px; }
.console-question span, .console-question strong { display: block; }
.console-question span { color: #91a2ba; font-size: 12px; }
.console-question strong { margin-top: 7px; font-size: 22px; letter-spacing: -.035em; }
.challenge-pills { display: flex; gap: 8px; }
.challenge-pills span { flex: 1; padding: 11px 9px; display: flex; align-items: center; gap: 7px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.055); border-radius: 11px; color: #cfdbeb; font-size: 11px; }
.challenge-pills i { width: 8px; height: 8px; border-radius: 50%; }
.energy-dot { background: var(--lime); }.resource-dot { background: var(--cyan); }.process-dot { background: #8c72ff; }
.match-map { min-height: 258px; margin-top: 12px; padding: 24px 16px; border-radius: 18px; display: grid; grid-template-columns: 1fr 142px 1fr; gap: 10px; align-items: center; background: linear-gradient(145deg, rgba(35,87,255,.14), rgba(255,255,255,.035)); border: 1px solid rgba(91,124,218,.2); }
.map-column { display: grid; gap: 9px; }
.map-column small { margin-bottom: 4px; color: #617592; font-size: 9px; letter-spacing: .14em; }
.map-column span { padding: 8px 9px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.04); border-radius: 8px; color: #a9b8ca; font-size: 10px; }
.map-column-right { text-align: right; }
.map-center { width: 118px; height: 118px; margin: auto; display: grid; place-items: center; align-content: center; position: relative; border-radius: 50%; background: radial-gradient(circle, rgba(35,87,255,.55), rgba(35,87,255,.12) 58%, transparent 60%); }
.map-center strong { font-size: 27px; letter-spacing: .08em; z-index: 2; }
.map-center small { color: #a6b7cf; font-size: 9px; z-index: 2; }
.orbit { position: absolute; inset: 3px; border: 1px solid rgba(84,217,236,.42); border-radius: 50%; transform: rotate(20deg) scaleY(.46); }
.orbit-two { transform: rotate(-55deg) scaleY(.46); border-color: rgba(191,243,78,.35); }
.console-progress { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 12px; }
.console-progress div { padding: 13px; background: rgba(255,255,255,.045); border-radius: 10px; }
.console-progress span, .console-progress b { display: block; }
.console-progress span { color: #8496af; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.console-progress b { margin-top: 9px; color: var(--cyan); font-size: 13px; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.trust-row { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #7c899a; font-size: 12px; }
.trust-logo-link { display: inline-flex; align-items: center; justify-content: center; min-width: 120px; height: 42px; padding: 4px 10px; border-radius: 10px; transition: background .2s, transform .2s; }
.trust-logo-link:hover { background: var(--soft); transform: translateY(-2px); }
.trust-logo-link img { display: block; max-width: 155px; max-height: 34px; width: auto; height: auto; object-fit: contain; }
.trust-label { color: #9aa5b2; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.trust-divider { width: 1px; height: 28px; background: var(--line); }

.section { padding: 120px 0; }
.section-soft { background: var(--soft); }
.section-heading { margin-bottom: 56px; }
.section-heading h2, .value-copy h2, .audience-grid h2, .faq-grid h2, .apply-copy h2, .impact-intro h2 { margin: 0; font-size: clamp(38px, 4.2vw, 60px); line-height: 1.05; letter-spacing: -.055em; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 100px; align-items: end; }
.split-heading p:last-child { margin: 0 0 6px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.centered-heading { max-width: 780px; margin-left: auto; margin-right: auto; text-align: center; }
.centered-heading > p:last-child { color: var(--muted); font-size: 17px; line-height: 1.55; }
.challenge-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.challenge-card { min-height: 285px; padding: 26px; border: 1px solid #e0e7ed; border-radius: 20px; background: white; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.challenge-card:hover { transform: translateY(-5px); border-color: #c3d1ff; box-shadow: 0 22px 45px rgba(20,48,82,.09); }
.card-number { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.challenge-card h3 { margin: 40px 0 10px; font-size: 22px; letter-spacing: -.035em; }
.challenge-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.challenge-card a { margin-top: auto; padding-top: 28px; display: flex; justify-content: space-between; border-top: 1px solid #edf1f4; color: #314057; font-size: 12px; font-weight: 700; }
.challenge-card a span { color: var(--blue); }

.value-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 110px; align-items: center; }
.value-visual { min-height: 590px; padding: 34px; border-radius: 30px; background: linear-gradient(145deg,#eaf3ff,#f4ffed); position: relative; display: flex; align-items: center; justify-content: center; }
.value-visual::after { content: ""; position: absolute; inset: 28px; border: 1px dashed rgba(35,87,255,.18); border-radius: 24px; }
.year-card { width: 82%; min-height: 390px; padding: 35px; border-radius: 25px; background: white; box-shadow: 0 28px 65px rgba(24,54,92,.13); z-index: 1; }
.year-label { color: #728096; font-size: 10px; letter-spacing: .15em; font-weight: 800; }
.year-card strong { display: block; margin-top: 34px; font-size: 138px; line-height: .8; letter-spacing: -.08em; color: var(--blue); }
.year-unit { display: block; margin-top: 20px; font-size: 28px; font-weight: 700; }
.year-track { height: 7px; margin-top: 56px; border-radius: 99px; background: #e9eef5; overflow: hidden; }
.year-track span { display: block; width: 74%; height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--blue),var(--cyan),var(--lime)); }
.year-notes { margin-top: 12px; display: flex; justify-content: space-between; color: #8591a1; font-size: 9px; }
.decision-card { position: absolute; z-index: 2; right: 6px; bottom: 20px; width: 260px; padding: 20px; border-radius: 16px; background: var(--navy); color: white; box-shadow: 0 18px 35px rgba(7,22,45,.2); }
.decision-card span, .decision-card strong { display: block; }
.decision-card span { color: var(--lime); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.decision-card strong { margin-top: 9px; font-size: 14px; line-height: 1.4; }
.section-lead { color: var(--muted); font-size: 18px; line-height: 1.65; }
.check-list { list-style: none; padding: 0; margin: 42px 0 0; display: grid; gap: 4px; }
.check-list li { padding: 20px 0; display: grid; grid-template-columns: 48px 1fr; gap: 15px; border-top: 1px solid var(--line); }
.check-list li > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #ecf1ff; color: var(--blue); font-size: 10px; font-weight: 800; }
.check-list strong { font-size: 17px; letter-spacing: -.02em; }
.check-list p { margin: 5px 0 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

.pilot-section { padding-top: 132px; background: #f9fbfc; }
.timeline { display: grid; grid-template-columns: repeat(5,1fr); position: relative; }
.timeline::before { content: ""; position: absolute; left: 7%; right: 7%; top: 27px; height: 1px; background: linear-gradient(90deg,var(--blue),var(--cyan),var(--lime)); }
.timeline-step { padding: 0 14px; text-align: center; position: relative; }
.timeline-step > span { width: 54px; height: 54px; margin: auto; display: grid; place-items: center; border: 8px solid #f9fbfc; border-radius: 50%; background: var(--blue); color: white; font-size: 10px; font-weight: 800; box-shadow: 0 0 0 1px rgba(35,87,255,.2); }
.timeline-step:nth-child(2) > span { background: #326fef; }.timeline-step:nth-child(3) > span { background: #25a6d2; }.timeline-step:nth-child(4) > span { background: #27bd99; }.timeline-step:nth-child(5) > span { background: #75bd36; }
.timeline-step h3 { margin: 22px 0 9px; font-size: 16px; letter-spacing: -.025em; }
.timeline-step p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.pilot-note { width: fit-content; max-width: 760px; margin: 54px auto 0; padding: 14px 18px; display: flex; align-items: center; gap: 12px; border: 1px solid #d5e0e7; border-radius: 12px; background: white; color: #4d5c70; font-size: 13px; }
.pilot-note span { flex: 0 0 24px; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: white; font-size: 11px; font-family: Georgia, serif; }

.solutions-section { background: white; }
.solutions-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.solution-card { min-height: 355px; padding: 24px; border: 1px solid var(--line); border-radius: 21px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.solution-card::before { content: ""; width: 150px; height: 150px; position: absolute; right: -50px; top: -60px; border-radius: 50%; background: var(--card-accent); opacity: .13; filter: blur(2px); }
.solution-card:hover { transform: translateY(-5px); box-shadow: 0 22px 48px rgba(15,41,73,.1); }
.tone-blue{--card-accent:#2357ff}.tone-lime{--card-accent:#8ed62e}.tone-violet{--card-accent:#7c5cff}.tone-cyan{--card-accent:#28bcd7}.tone-green{--card-accent:#20bf76}.tone-orange{--card-accent:#ff9f43}
.solution-top { display: flex; justify-content: space-between; align-items: center; position: relative; }
.solution-index { color: #9aa5b3; font-size: 10px; font-weight: 800; }
.solution-tag { padding: 7px 9px; border-radius: 8px; background: color-mix(in srgb, var(--card-accent) 9%, white); color: color-mix(in srgb, var(--card-accent) 78%, black); font-size: 9px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.solution-card h3 { margin: 52px 0 13px; font-size: 29px; letter-spacing: -.045em; }
.solution-card > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.solution-result { margin-top: 22px; padding: 11px 12px; border-left: 3px solid var(--card-accent); background: #f6f8fa; color: #39495e; font-size: 11px; font-weight: 700; }
.solution-proof { margin-top: 18px; padding: 16px; border: 1px solid color-mix(in srgb, var(--card-accent) 18%, #dce5ec); border-radius: 14px; background: color-mix(in srgb, var(--card-accent) 4%, white); position: relative; }
.solution-proof > span { display: block; color: color-mix(in srgb, var(--card-accent) 75%, #223047); font-size: 9px; line-height: 1.4; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.solution-proof strong { display: block; margin-top: 10px; font-size: 13px; line-height: 1.35; letter-spacing: -.015em; }
.solution-proof p { margin: 8px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.solution-proof .solution-proof-bridge { padding-top: 8px; border-top: 1px solid rgba(8,24,45,.08); color: #34465d; }
.solution-proof a { margin-top: 12px; display: inline-flex; gap: 7px; color: var(--blue); font-size: 11px; font-weight: 800; }
.solution-card > a:not(.button) { margin-top: auto; padding-top: 22px; display: flex; justify-content: space-between; color: #35455a; font-size: 12px; font-weight: 700; }
.solution-card > a span { color: var(--blue); }
.custom-solution { background: var(--blue); color: white; border-color: var(--blue); }
.custom-solution::before { display: none; }
.custom-solution .kicker { color: #bfcbff; }
.custom-solution h3 { margin-top: 26px; }
.custom-solution > p { color: #d9e0ff; }
.button-light { margin-top: auto; align-self: flex-start; color: var(--blue); background: white; box-shadow: none; }
.button-light:hover { color: white; background: var(--navy); }
.custom-orbit { width: 135px; height: 135px; position: absolute; right: -20px; top: -18px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; }
.custom-orbit::before, .custom-orbit::after { content:""; position:absolute; inset:17px; border:1px solid rgba(255,255,255,.22); border-radius:50%; }
.custom-orbit::after { inset:36px; background: var(--lime); border: 0; box-shadow: 0 0 40px rgba(191,243,78,.5); }
.metric-disclaimer { margin: 22px 0 0; color: #8793a1; font-size: 11px; line-height: 1.5; }

.impact-section { padding: 130px 0; background: var(--navy); color: white; position: relative; }
.impact-section::after { content: ""; position: absolute; inset: 0; opacity: .13; background-image: radial-gradient(rgba(255,255,255,.8) 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(90deg, transparent, black 50%, transparent); }
.impact-section .container { z-index: 1; }
.impact-glow { width: 700px; height: 500px; position: absolute; top: -250px; right: -180px; border-radius: 50%; background: radial-gradient(circle,rgba(35,87,255,.38),transparent 67%); }
.kicker-light { color: var(--lime); }
.impact-intro { display: grid; grid-template-columns: 1.25fr .75fr; gap: 100px; align-items: end; }
.impact-intro .kicker { grid-column: 1/-1; margin-bottom: -54px; }
.impact-intro p:last-child { margin: 0 0 7px; color: #a7b6c9; font-size: 17px; line-height: 1.65; }
.impact-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 78px; }
.impact-metrics article { min-height: 280px; padding: 28px; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: rgba(255,255,255,.045); backdrop-filter: blur(10px); }
.impact-metrics strong, .impact-metrics span { display: block; }
.impact-metrics strong { color: var(--lime); font-size: clamp(50px,6vw,78px); letter-spacing: -.07em; }
.impact-metrics span { margin-top: 5px; font-size: 16px; font-weight: 700; }
.impact-metrics p { margin: 55px 0 0; color: #94a6bd; font-size: 12px; line-height: 1.55; }
.impact-chain { margin-top: 16px; padding: 22px 26px; display: grid; grid-template-columns: 1fr 40px 1fr 40px 1fr; gap: 14px; align-items: center; border-radius: 18px; background: white; color: var(--ink); }
.impact-chain div { display: grid; grid-template-columns: 34px 1fr; align-items: center; }
.impact-chain span { grid-row: 1/3; width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: #eaf0ff; color: var(--blue); font-size: 9px; font-weight: 800; }
.impact-chain strong { font-size: 14px; }.impact-chain p { margin: 4px 0 0; color: #7b8899; font-size: 10px; }
.impact-chain i { color: var(--blue); font-style: normal; text-align: center; }
.impact-target-note { margin: 18px 0 0; max-width: 900px; color: #a7b6c9; font-size: 12px; line-height: 1.6; }

.case-board { margin-top: 88px; padding: 56px; border-radius: 30px; background: #f3f7fb; color: var(--ink); box-shadow: 0 34px 80px rgba(0,0,0,.2); scroll-margin-top: 24px; }
.case-heading { max-width: 860px; }
.case-heading .kicker { margin-bottom: 16px; }
.case-heading h3 { margin: 0; max-width: 760px; font-size: clamp(34px,4vw,54px); line-height: 1.03; letter-spacing: -.055em; }
.case-heading > p:last-child { margin: 22px 0 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.case-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.case-card { padding: 28px; border: 1px solid #dbe4ec; border-radius: 21px; background: white; display: flex; flex-direction: column; min-width: 0; }
.case-card-featured { grid-column: 1/-1; display: grid; grid-template-columns: 1.05fr .95fr; column-gap: 44px; }
.case-card-featured .case-status,.case-card-featured h4 { grid-column: 1/-1; }
.case-card-featured .case-details { grid-column: 1; }
.case-card-featured .case-result,.case-card-featured .case-local { grid-column: 2; }
.case-card-featured .case-result { grid-row: 3; }
.case-card-featured .case-local { grid-row: 4; align-self: start; }
.case-card-featured .case-actions { grid-column: 1/-1; }
.case-status { width: fit-content; padding: 7px 10px; border-radius: 999px; background: #e9f0ff; color: #1743cb; font-size: 9px; line-height: 1.35; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; }
.case-card h4 { margin: 24px 0 0; max-width: 940px; font-size: 27px; line-height: 1.12; letter-spacing: -.04em; }
.case-details { margin: 28px 0 0; display: grid; gap: 0; }
.case-details div { padding: 15px 0; border-top: 1px solid #e4eaf0; }
.case-details dt { color: #78879a; font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.case-details dd { margin: 6px 0 0; color: #34445a; font-size: 13px; line-height: 1.55; }
.case-result { margin-top: 28px; padding: 24px; border-radius: 17px; background: var(--navy); color: white; }
.case-result strong,.case-result span { display: block; }
.case-result strong { color: var(--lime); font-size: clamp(38px,4vw,58px); line-height: .95; letter-spacing: -.06em; overflow-wrap: anywhere; }
.case-result span { margin-top: 10px; font-size: 14px; font-weight: 800; }
.case-result p { margin: 18px 0 0; color: #aebdd0; font-size: 11px; line-height: 1.55; }
.case-local { margin-top: 14px; padding: 18px 20px; border: 1px solid #cfe0c1; border-radius: 15px; background: #f4faee; }
.case-local span { color: #397516; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.case-local p { margin: 8px 0 0; color: #405237; font-size: 12px; line-height: 1.55; }
.case-actions { margin-top: auto; padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.case-actions > a:first-child { color: #47586d; font-size: 11px; line-height: 1.4; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.case-actions .button { min-height: 44px; padding: 0 16px; border-radius: 11px; font-size: 12px; box-shadow: none; }
.case-disclaimer { margin: 18px 0 0; color: #738196; font-size: 11px; line-height: 1.6; }
.case-bridge { margin-top: 34px; padding: 30px; border-radius: 20px; background: linear-gradient(135deg,#173fd2,#2357ff); color: white; display: grid; grid-template-columns: 1fr auto; gap: 42px; align-items: center; }
.case-bridge > div > span { color: #c8d3ff; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.case-bridge h4 { margin: 10px 0 0; max-width: 730px; font-size: 24px; line-height: 1.15; letter-spacing: -.035em; }
.case-bridge p { margin: 11px 0 0; max-width: 730px; color: #d9e1ff; font-size: 12px; line-height: 1.55; }
.case-bridge .button { flex: 0 0 auto; color: var(--ink); background: var(--lime); box-shadow: none; }
.case-bridge .button:hover { background: white; }
.solution-proof a:focus-visible,.case-actions a:focus-visible,.case-bridge a:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; border-radius: 7px; }

.audience-section { background: linear-gradient(135deg,#f4f8ff,#f7fff0); }
.audience-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.audience-grid .button { margin-top: 24px; }
.audience-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.audience-list span { min-height: 112px; padding: 22px; border: 1px solid rgba(35,87,255,.12); border-radius: 16px; background: rgba(255,255,255,.77); display: flex; align-items: flex-end; font-size: 14px; font-weight: 700; box-shadow: 0 12px 35px rgba(30,64,100,.05); }

.partner-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.partner-grid article { min-height: 280px; padding: 30px; border: 1px solid var(--line); border-radius: 20px; }
.partner-logo-link { min-height: 74px; display: inline-flex; align-items: center; justify-content: flex-start; padding: 8px; border-radius: 12px; transition: background .2s, transform .2s; }
.partner-logo-link:hover { background: var(--soft); transform: translateY(-2px); }
.partner-logo-link img { display: block; width: auto; height: auto; max-width: 230px; max-height: 58px; object-fit: contain; }
.partner-grid article:nth-child(1) .partner-logo-link img { max-width: 185px; }
.partner-grid article:nth-child(3) .partner-logo-link img { max-width: 150px; }
.partner-grid h3 { margin: 34px 0 10px; font-size: 18px; letter-spacing: -.03em; }
.partner-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.funding-note { margin-top: 16px; padding: 22px 26px; display: flex; align-items: center; gap: 20px; border-radius: 16px; background: var(--soft); color: #5b6879; }
.funding-logos { flex: 0 0 350px; display: grid; grid-template-columns: 1.35fr 1fr; align-items: center; gap: 22px; padding-right: 20px; border-right: 1px solid var(--line); }
.funding-logos img { display: block; width: 100%; max-height: 58px; object-fit: contain; }
.funding-note p { margin: 0; font-size: 12px; line-height: 1.55; }

.faq-section { background: #f8fafb; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 120px; }
.faq-grid > div:first-child > p:last-child { color: var(--muted); font-size: 15px; line-height: 1.6; }
.faq-list { border-top: 1px solid #cad5de; }
.faq-list details { border-bottom: 1px solid #cad5de; }
.faq-list summary { padding: 24px 0; display: flex; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: 17px; font-weight: 700; letter-spacing: -.02em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid #c5d1db; border-radius: 50%; color: var(--blue); font-size: 18px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -7px 46px 24px 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.apply-section { padding: 120px 0; position: relative; background: var(--blue); color: white; }
.apply-section::before { content: ""; position: absolute; inset: 0; opacity: .11; background-image: linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),linear-gradient(90deg,rgba(255,255,255,.4) 1px, transparent 1px); background-size: 64px 64px; }
.apply-glow { position: absolute; width: 550px; height: 550px; left: -180px; top: -180px; border-radius: 50%; background: radial-gradient(circle,rgba(191,243,78,.38),transparent 65%); }
.apply-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: start; }
.apply-copy > p:not(.kicker) { color: #dce4ff; font-size: 17px; line-height: 1.65; }
.contact-person { margin-top: 50px; display: flex; gap: 15px; align-items: flex-start; }
.contact-person > span { flex: 0 0 46px; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: 12px; font-weight: 900; }
.contact-person strong,.contact-person p,.contact-person a { display: block; }
.contact-person p { margin: 5px 0 13px; color: #cbd7ff; font-size: 12px; }
.contact-person a { margin-top: 5px; font-size: 12px; }
.apply-form { padding: 30px; border-radius: 22px; background: white; color: var(--ink); box-shadow: 0 35px 75px rgba(5,24,72,.23); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.apply-form label { display: grid; gap: 8px; margin-bottom: 16px; color: #4f5d70; font-size: 11px; font-weight: 700; }
.apply-form input:not([type="checkbox"]), .apply-form textarea { width: 100%; border: 1px solid #d7e0e7; border-radius: 11px; padding: 14px; color: var(--ink); outline: none; background: #fbfcfd; transition: border-color .2s ease, box-shadow .2s ease; }
.apply-form input:focus, .apply-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(35,87,255,.1); }
.apply-form textarea { resize: vertical; }
.consent { grid-template-columns: 18px 1fr; align-items: start; font-weight: 400!important; line-height: 1.4; }
.consent input { width: 16px; height: 16px; accent-color: var(--blue); }
.button-submit { width: 100%; margin-top: 5px; }

footer { padding: 44px 0; background: var(--navy); color: white; }
.footer-row { display: grid; grid-template-columns: .7fr 1fr .8fr; gap: 50px; align-items: center; }
.brand-footer .brand-mark { background: white; color: var(--navy); }
.footer-row > p { margin: 0; color: #8fa1b8; font-size: 12px; line-height: 1.5; }
.footer-row > div { display: flex; justify-content: flex-end; gap: 18px; color: #aab8ca; font-size: 11px; }

@media (prefers-reduced-motion: no-preference) {
  .hero-copy, .pilot-console { animation: enter .8s cubic-bezier(.2,.7,.2,1) both; }
  .pilot-console { animation-delay: .12s; }
  @keyframes enter { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
}

@media (max-width: 1020px) {
  .desktop-nav { display: none; }.mobile-menu { display: block; }.site-header > .button-small { display: none; }
  .hero-grid,.value-grid,.audience-grid,.apply-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 55px; }.pilot-console { max-width: 650px; transform: none; }
  .trust-row { flex-wrap: wrap; justify-content: center; padding: 24px 0; }.trust-label,.trust-divider { display: none; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; }
  .challenge-grid,.solutions-grid { grid-template-columns: repeat(2,1fr); }
  .value-grid { gap: 60px; }.value-visual { max-width: 650px; }
  .timeline { grid-template-columns: 1fr; gap: 8px; }.timeline::before { left: 27px; right: auto; top: 26px; bottom: 26px; width: 1px; height: auto; }
  .timeline-step { padding: 12px 0; display: grid; grid-template-columns: 54px 1fr; gap: 22px; text-align: left; }.timeline-step > span { grid-row: 1/3; border-color:#f9fbfc }.timeline-step h3 { margin: 6px 0 0 }.timeline-step p { margin-bottom: 5px; }
  .impact-intro { grid-template-columns: 1fr; gap: 28px; }.impact-intro .kicker { grid-column:auto; margin-bottom:0 }.impact-metrics { grid-template-columns: 1fr 1fr; }.impact-chain { grid-template-columns: 1fr; }.impact-chain i { transform: rotate(90deg); }
  .case-board { padding: 42px; }.case-card-featured { display: flex; }.case-bridge { grid-template-columns: 1fr; gap: 24px; }.case-bridge .button { justify-self: start; }
  .faq-grid { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 32px, 1180px); }
  .site-header { height: 64px; }.brand { font-size: 16px; }.brand-mark { width:34px;height:34px; }
  .hero { padding: 58px 0 72px; }.hero-grid { gap: 44px; }
  h1 { font-size: clamp(42px,13vw,58px); }.hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-facts { grid-template-columns: 1fr; gap: 16px; }.hero-facts div + div { padding: 16px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .pilot-console { padding: 13px; border-radius: 20px; }.match-map { grid-template-columns: 1fr; }.map-column { display:none }.challenge-pills { flex-wrap: wrap }.challenge-pills span { min-width: 90px }.console-progress div { padding: 10px 7px; }
  .section { padding: 88px 0; }.section-heading { margin-bottom: 38px; }.section-heading h2,.value-copy h2,.audience-grid h2,.faq-grid h2,.apply-copy h2,.impact-intro h2 { font-size: 40px; }
  .challenge-grid,.solutions-grid,.impact-metrics,.partner-grid,.audience-list { grid-template-columns: 1fr; }
  .trust-logo-link { min-width: 88px; height: 38px; padding: 4px; }
  .trust-logo-link img { max-width: 110px; max-height: 28px; }
  .funding-note { align-items: flex-start; flex-direction: column; }
  .funding-logos { width: 100%; flex-basis: auto; grid-template-columns: 1.25fr 1fr; padding: 0 0 18px; border-right: 0; border-bottom: 1px solid var(--line); }
  .challenge-card { min-height: 250px; }.solution-card { min-height: 340px; }
  .value-visual { min-height: 500px; padding: 22px }.year-card { width: 100%; padding: 28px }.year-card strong { font-size: 108px }.decision-card { right: 2px; width: 230px; }
  .impact-section { padding: 90px 0; }.impact-metrics article { min-height: 240px }.impact-metrics p { margin-top: 35px }
  .case-board { margin-top: 64px; padding: 28px 16px; border-radius: 22px; }.case-heading { padding: 0 6px; }.case-heading h3 { font-size: 36px; }.case-heading > p:last-child { font-size: 14px; }.case-grid { grid-template-columns: 1fr; margin-top: 32px; }.case-card { padding: 22px 18px; }.case-card h4 { font-size: 24px; }.case-result strong { font-size: 42px; }.case-actions { align-items: flex-start; flex-direction: column; }.case-actions .button { width: 100%; }.case-bridge { padding: 24px 20px; }.case-bridge h4 { font-size: 22px; }.case-bridge .button { width: 100%; }
  .apply-grid { gap: 52px }.apply-form { padding: 20px }.form-row { grid-template-columns: 1fr; gap:0 }
  .footer-row { grid-template-columns: 1fr; gap: 24px }.footer-row > div { justify-content:flex-start; flex-wrap:wrap }
}
