:root {
  --blue-950: #061b52;
  --blue-900: #082d80;
  --blue-800: #073b9f;
  --blue-700: #064ec4;
  --blue-500: #0e82f1;
  --blue-300: #75b7ff;
  --blue-100: #e8f3ff;
  --ink: #101828;
  --muted: #526174;
  --line: #d8e3f2;
  --surface: #f7faff;
  --white: #ffffff;
  --container: 1200px;
  --radius-sm: 10px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --shadow: 0 24px 70px rgb(7 59 159 / 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: 'Avenir Next', 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font-family: inherit;
  touch-action: manipulation;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

section[id] {
  scroll-margin-top: 92px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-950);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgb(255 255 255 / 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header[data-scrolled] {
  border-color: rgb(216 227 242 / 0.8);
  box-shadow: 0 12px 30px rgb(6 27 82 / 0.06);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
  color: var(--blue-800);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand img {
  width: 104px;
  height: 34px;
  object-fit: contain;
}

.brand-suffix {
  padding-bottom: 2px;
  font-size: 17px;
  line-height: 1;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
  color: #314054;
  font-size: 14px;
  font-weight: 650;
}

.primary-navigation > a:not(.button) {
  position: relative;
  padding-block: 12px;
}

.primary-navigation > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--blue-500);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-navigation > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  background: var(--blue-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-toggle:hover {
  border-color: var(--blue-500);
  background: var(--blue-100);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 22px;
  color: var(--white);
  background: var(--blue-800);
  border: 1px solid var(--blue-800);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 24px rgb(7 59 159 / 0.18);
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--blue-700);
  box-shadow: 0 16px 30px rgb(7 59 159 / 0.24);
  transform: translateY(-2px);
}

.button:active {
  box-shadow: 0 8px 18px rgb(7 59 159 / 0.18);
  transform: translateY(0);
}

.button-small {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 13px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 124px) 0 0;
  background:
    radial-gradient(circle at 80% 15%, rgb(14 130 241 / 0.11), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.hero::after {
  position: absolute;
  right: -16vw;
  bottom: 80px;
  width: 60vw;
  height: 180px;
  border-top: 1px solid rgb(14 130 241 / 0.2);
  border-radius: 50%;
  content: '';
  transform: rotate(-7deg);
}

.hero-grid {
  position: absolute;
  inset: 0 0 auto 55%;
  width: 48%;
  height: 70%;
  opacity: 0.28;
  background-image:
    linear-gradient(rgb(14 130 241 / 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgb(14 130 241 / 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(135deg, transparent 10%, #000 65%, transparent 100%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  gap: clamp(44px, 6vw, 86px);
}

.eyebrow {
  display: flex;
  margin: 0 0 22px;
  align-items: center;
  gap: 10px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 32px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.cta-layout h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(44px, 5.7vw, 78px);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  margin-top: 12px;
  color: var(--blue-500);
  font-size: 0.58em;
  line-height: 1.08;
}

.hero-copy {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  margin-top: 36px;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-900);
  font-weight: 750;
}

.text-link:hover span {
  transform: translateY(3px);
}

.text-link span {
  transition: transform 180ms ease;
}

.hero-visual {
  min-width: 0;
  margin: 0;
}

.visual-frame {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgb(117 183 255 / 0.28);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.visual-frame::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgb(14 130 241 / 0.08);
  border-radius: 28px;
  content: '';
  pointer-events: none;
}

.visual-frame img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.hero-visual figcaption {
  display: grid;
  margin-top: 18px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.hero-meta {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: clamp(70px, 9vw, 118px);
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.hero-meta > div {
  padding: 28px 30px 34px;
  border-right: 1px solid var(--line);
}

.hero-meta > div:first-child {
  padding-left: 0;
}

.hero-meta > div:last-child {
  border-right: 0;
}

.hero-meta span,
.funding-amount span,
.project-signature span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-meta strong {
  display: block;
  color: var(--blue-900);
  font-size: clamp(22px, 2.6vw, 34px);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}

.section {
  padding: clamp(88px, 11vw, 150px) 0;
}

.project-layout,
.funding-intro {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(44px, 8vw, 118px);
}

.section-heading h2,
.cta-layout h2 {
  max-width: 760px;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.06;
}

.project-copy > p {
  margin: 44px 0 0;
  color: #34445a;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.75;
}

.project-signature {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.project-signature strong {
  color: var(--blue-900);
}

.process {
  display: grid;
  margin-top: clamp(64px, 8vw, 104px);
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 55px rgb(6 27 82 / 0.05);
}

.process-step {
  min-height: 230px;
  padding: 30px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.process-step:first-child {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.process-step:last-child {
  border-right: 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.process-step.featured {
  color: var(--white);
  background: var(--blue-800);
}

.step-number {
  display: block;
  margin-bottom: 58px;
  color: var(--blue-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.featured .step-number {
  color: var(--blue-300);
}

.process-step h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 20px;
  letter-spacing: -0.025em;
}

.process-step.featured h3 {
  color: var(--white);
}

.process-step p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.process-step.featured p {
  color: var(--blue-100);
}

.section-technology {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-950);
}

.section-technology::after {
  position: absolute;
  right: -10%;
  bottom: -55%;
  width: 65%;
  aspect-ratio: 1;
  border: 1px solid rgb(117 183 255 / 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgb(14 130 241 / 0.04), 0 0 0 120px rgb(14 130 241 / 0.025);
  content: '';
}

.section-heading-light h2,
.cta-layout h2 {
  color: var(--white);
}

.eyebrow-light {
  color: var(--blue-300);
}

.technology-grid {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 70px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgb(117 183 255 / 0.24);
  border-bottom: 1px solid rgb(117 183 255 / 0.24);
}

.technology-card {
  min-height: 270px;
  padding: 30px 24px;
  border-right: 1px solid rgb(117 183 255 / 0.24);
}

.technology-card:last-child {
  border-right: 0;
}

.technology-card > span {
  color: var(--blue-300);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.technology-card h3 {
  max-width: 220px;
  margin: 115px 0 0;
  color: var(--white);
  font-size: clamp(19px, 1.9vw, 25px);
  line-height: 1.25;
}

.section-funding {
  background: var(--surface);
}

.funding-amount {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 55px rgb(6 27 82 / 0.06);
}

.funding-amount strong {
  display: block;
  color: var(--blue-700);
  font-size: clamp(40px, 5vw, 62px);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.06em;
}

.funding-logos {
  display: grid;
  margin-top: 76px;
  align-items: stretch;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.funding-logos figure {
  display: flex;
  min-height: 180px;
  margin: 0;
  padding: 34px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.funding-logos figure:last-child {
  border-right: 0;
}

.funding-logos img {
  width: auto;
  max-height: 78px;
  object-fit: contain;
}

.funding-logos figure:nth-child(2) img {
  max-height: 92px;
}

.funding-details {
  overflow: hidden;
  margin-top: 48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgb(6 27 82 / 0.08);
}

.funding-details-header {
  display: grid;
  padding: clamp(34px, 5vw, 58px);
  align-items: end;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  background:
    linear-gradient(110deg, rgb(232 243 255 / 0.88), rgb(255 255 255 / 0.96)),
    linear-gradient(90deg, var(--blue-100), transparent);
  border-bottom: 1px solid var(--line);
}

.funding-details-label {
  margin: 0 0 12px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.funding-details-intro {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.funding-details-header h3 {
  max-width: 820px;
  margin: 14px 0 0;
  color: var(--blue-950);
  font-size: clamp(25px, 3vw, 38px);
  letter-spacing: -0.035em;
  line-height: 1.18;
  text-wrap: balance;
}

.publicity-link {
  display: inline-flex;
  min-height: 48px;
  padding: 11px 16px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--blue-300);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 24px rgb(6 27 82 / 0.08);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.publicity-link span {
  font-size: 18px;
  transition: transform 180ms ease;
}

.publicity-link:hover {
  color: var(--white);
  background: var(--blue-800);
  transform: translateY(-2px);
}

.publicity-link:hover span {
  transform: translate(2px, -2px);
}

.funding-details-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.7fr);
}

.funding-facts {
  padding: clamp(30px, 4vw, 46px);
  color: var(--white);
  background: var(--blue-950);
}

.funding-facts dl {
  margin: 0;
}

.funding-facts dl > div {
  padding: 19px 0;
  border-bottom: 1px solid rgb(117 183 255 / 0.2);
}

.funding-facts dl > div:first-child {
  padding-top: 0;
}

.funding-facts dl > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.funding-facts dt {
  margin-bottom: 5px;
  color: var(--blue-300);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.funding-facts dd {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.funding-copy {
  padding: clamp(34px, 5vw, 64px);
}

.funding-copy section + section {
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.funding-copy h4 {
  margin: 0 0 18px;
  color: var(--blue-950);
  font-size: clamp(22px, 2.3vw, 30px);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.funding-copy p {
  margin: 0;
  color: #34445a;
  font-size: 16px;
  line-height: 1.78;
}

.funding-copy p + p {
  margin-top: 20px;
}

.funding-copy strong {
  color: var(--blue-900);
}

.funding-results {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  list-style: none;
}

.funding-results li {
  position: relative;
  padding-left: 24px;
  color: #34445a;
  line-height: 1.55;
}

.funding-results li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--blue-500);
  border-radius: 50%;
  content: '';
}

.funding-statement {
  padding: 24px clamp(34px, 5vw, 58px);
  color: var(--blue-900);
  background: var(--blue-100);
  border-top: 1px solid var(--line);
  font-style: italic;
  font-weight: 700;
  text-align: center;
}

.section-contact {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.section-contact::after {
  position: absolute;
  right: -12%;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgb(14 130 241 / 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgb(14 130 241 / 0.025), 0 0 0 110px rgb(14 130 241 / 0.018);
  content: '';
  pointer-events: none;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(44px, 8vw, 118px);
}

.contact-project-name {
  display: block;
  max-width: 560px;
  margin-top: 16px;
  color: var(--blue-500);
  font-size: 0.5em;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.contact-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 60px rgb(6 27 82 / 0.07);
}

.company-details,
.contact-links {
  padding: clamp(28px, 3.5vw, 42px);
}

.company-details {
  background: var(--blue-950);
  color: var(--white);
}

.contact-label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-500);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-details .contact-label {
  color: var(--blue-300);
}

.company-details > strong {
  display: block;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
}

.company-details address {
  margin-top: 34px;
  color: #dbeaff;
  font-style: normal;
  line-height: 1.65;
}

.company-details p {
  margin: 26px 0 0;
  color: #dbeaff;
}

.company-details p span {
  margin-right: 8px;
  color: var(--blue-300);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.contact-links a {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-links a:last-child {
  border-bottom: 0;
}

.contact-links strong {
  display: block;
  color: var(--blue-900);
  font-size: clamp(17px, 1.7vw, 21px);
  overflow-wrap: anywhere;
  transition: color 180ms ease, transform 180ms ease;
}

.contact-links a:hover strong {
  color: var(--blue-500);
  transform: translateX(4px);
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 10vw, 130px) 0;
  color: var(--white);
  background: linear-gradient(120deg, var(--blue-900), var(--blue-700));
}

.cta-orbit {
  position: absolute;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 50%;
}

.orbit-one {
  top: -140px;
  right: -60px;
  width: 500px;
  height: 500px;
}

.orbit-two {
  top: -60px;
  right: 20px;
  width: 340px;
  height: 340px;
}

.cta-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 70px;
}

.cta-layout h2 {
  max-width: 780px;
}

.button-light {
  margin-top: 36px;
  color: var(--blue-900);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 16px 32px rgb(6 27 82 / 0.2);
}

.button-light:hover {
  color: var(--white);
  background: transparent;
}

.qr-card {
  display: flex;
  width: 220px;
  padding: 18px;
  flex-direction: column;
  gap: 12px;
  color: var(--blue-950);
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 22px 55px rgb(6 27 82 / 0.28);
  text-align: center;
  transition: transform 180ms ease;
}

.qr-card:hover {
  transform: rotate(-2deg) translateY(-4px);
}

.qr-card img {
  width: 100%;
  image-rendering: pixelated;
}

.qr-card span {
  font-size: 16px;
  font-weight: 800;
}

.site-footer {
  padding: 32px 0;
  background: #04143d;
  border-top: 1px solid rgb(117 183 255 / 0.18);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #afc6e7;
  font-size: 13px;
}

.brand-footer {
  padding: 7px 10px;
  background: var(--white);
  border-radius: 7px;
}

.brand-footer img {
  width: 82px;
  height: 27px;
}

.brand-footer .brand-suffix {
  font-size: 13px;
}

.footer-inner p {
  margin: 0;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.status-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 82% 14%, rgb(14 130 241 / 0.18), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #f2f8ff 55%, #e8f3ff 100%);
}

.status-header {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-900);
  font-size: 14px;
  font-weight: 750;
}

.back-link span {
  transition: transform 180ms ease;
}

.back-link:hover span {
  transform: translateX(-4px);
}

.status-main {
  position: relative;
  display: grid;
  min-height: calc(100svh - 82px);
  overflow: hidden;
  place-items: center;
  padding: 70px 0 110px;
}

.status-grid {
  position: absolute;
  inset: 0 0 0 46%;
  opacity: 0.38;
  background-image:
    linear-gradient(rgb(14 130 241 / 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgb(14 130 241 / 0.1) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(120deg, transparent 5%, #000 62%, transparent 100%);
}

.status-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  gap: clamp(60px, 10vw, 150px);
}

.status-badge {
  display: inline-flex;
  margin-bottom: 28px;
  align-items: center;
  gap: 10px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status-badge::before {
  width: 9px;
  height: 9px;
  background: var(--blue-500);
  border: 5px solid var(--blue-100);
  border-radius: 50%;
  box-sizing: content-box;
  content: '';
}

.status-content h1 {
  max-width: 720px;
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(50px, 7.2vw, 92px);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.96;
  text-wrap: balance;
}

.status-content h1 span {
  color: var(--blue-500);
}

.status-content p {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.7;
}

.status-actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 26px;
}

.status-visual {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
}

.status-ring,
.status-ring::before,
.status-ring::after {
  position: absolute;
  border: 1px solid rgb(14 130 241 / 0.23);
  border-radius: 50%;
  content: '';
}

.status-ring {
  inset: 5%;
}

.status-ring::before {
  inset: 12%;
}

.status-ring::after {
  inset: 26%;
  background: rgb(255 255 255 / 0.45);
}

.status-mark {
  position: relative;
  z-index: 1;
  display: grid;
  width: 46%;
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-700), var(--blue-500));
  border: 10px solid rgb(255 255 255 / 0.9);
  border-radius: 50%;
  box-shadow: 0 26px 70px rgb(7 59 159 / 0.26);
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 850;
  letter-spacing: -0.06em;
}

.status-caption {
  position: absolute;
  right: 2%;
  bottom: 13%;
  z-index: 2;
  padding: 11px 15px;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgb(7 59 159 / 0.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1060px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 780px;
  }

  .hero-visual {
    max-width: 850px;
  }

  .technology-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .technology-card:nth-child(2) {
    border-right: 0;
  }

  .technology-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgb(117 183 255 / 0.24);
  }
}

@media (max-width: 960px) {
  .menu-toggle {
    display: flex;
  }

  .primary-navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    padding: 18px;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .primary-navigation[data-open] {
    display: flex;
  }

  .primary-navigation > a:not(.button) {
    padding: 10px 8px;
  }

  .primary-navigation > a:not(.button)::after {
    display: none;
  }

  .project-layout,
  .funding-intro,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .project-copy > p {
    margin-top: 0;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:first-child {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .process-step:last-child {
    border-bottom: 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .step-number {
    margin-bottom: 32px;
  }

  .funding-logos {
    grid-template-columns: 1fr;
  }

  .funding-logos figure {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .funding-logos figure:last-child {
    border-bottom: 0;
  }

  .funding-details-header {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .publicity-link {
    justify-self: start;
  }

  .funding-details-layout {
    grid-template-columns: 1fr;
  }

  .funding-facts dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 40px;
  }

  .funding-facts dl > div:first-child {
    padding-top: 19px;
  }

  .funding-facts dl > div:last-child {
    padding-bottom: 19px;
    border-bottom: 1px solid rgb(117 183 255 / 0.2);
  }

  .status-layout {
    grid-template-columns: 1fr;
  }

  .status-visual {
    width: min(480px, 80vw);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 88px;
    height: 29px;
  }

  .brand-suffix {
    font-size: 14px;
  }

  .hero {
    padding-top: 62px;
  }

  .hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero h1 span {
    margin-top: 9px;
    font-size: 0.54em;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .visual-frame {
    padding: 10px;
    border-radius: 22px;
    transform: none;
  }

  .hero-visual figcaption {
    font-size: 9px;
    letter-spacing: 0.02em;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-meta > div {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-meta > div:last-child {
    border-bottom: 0;
  }

  .section-heading h2,
  .cta-layout h2 {
    font-size: clamp(36px, 11vw, 48px);
    overflow-wrap: break-word;
  }

  .funding-intro .section-heading h2 {
    font-size: clamp(34px, 9.5vw, 44px);
  }

  .technology-grid {
    grid-template-columns: 1fr;
  }

  .technology-card,
  .technology-card:nth-child(2) {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid rgb(117 183 255 / 0.24);
  }

  .technology-card:last-child {
    border-bottom: 0;
  }

  .technology-card h3 {
    margin-top: 70px;
  }

  .funding-amount {
    padding: 26px 22px;
  }

  .funding-amount strong {
    font-size: clamp(38px, 12vw, 52px);
  }

  .funding-details {
    margin-top: 30px;
    border-radius: 14px;
  }

  .funding-details-header {
    padding: 28px 22px;
  }

  .publicity-link {
    width: 100%;
    white-space: normal;
  }

  .funding-facts {
    padding: 30px 22px;
  }

  .funding-facts dl {
    grid-template-columns: 1fr;
  }

  .funding-facts dl > div:first-child {
    padding-top: 0;
  }

  .funding-facts dl > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .funding-copy {
    padding: 34px 22px;
  }

  .funding-copy section + section {
    margin-top: 34px;
    padding-top: 34px;
  }

  .funding-results {
    grid-template-columns: 1fr;
  }

  .funding-statement {
    padding: 22px;
    text-align: left;
  }

  .cta-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .qr-card {
    width: min(220px, 74vw);
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .status-header {
    min-height: 68px;
  }

  .status-header .back-link {
    font-size: 0;
  }

  .status-header .back-link span {
    font-size: 22px;
  }

  .status-main {
    min-height: calc(100svh - 68px);
    padding: 58px 0 82px;
  }

  .status-layout {
    gap: 52px;
  }

  .status-content h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .status-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .status-actions .text-link {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
