@font-face {
  font-family: "Albula";
  src: url("../font/albula-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Albula";
  src: url("../font/albula-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Albula";
  src: url("../font/albula-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #061421;
  --ink-soft: #0a1d2d;
  --ink-card: #0d2335;
  --navy: #0b2942;
  --blue: #1f89ff;
  --teal: #27d6c1;
  --orange: #ff8b35;
  --cream: #f3f0e8;
  --paper: #f8f7f2;
  --white: #ffffff;
  --muted: #91a8b7;
  --line: rgba(167, 202, 221, 0.17);
  --line-light: rgba(8, 34, 53, 0.14);
  --focus-color: #ff9b4f;
  --shell: min(1240px, calc(100% - 3rem));
  --header-height: 5rem;
}

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

html {
  min-width: 320px;
  background: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--cream);
  background: var(--ink);
  font-family: "Albula", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.admin-bar .site-header {
  top: 32px;
}

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

figure {
  margin: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

a {
  color: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--ink);
  background: var(--teal);
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--cream);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.sr-only,
.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-height);
  color: var(--white);
  background: rgba(6, 20, 33, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
}

.brand img {
  width: 2.55rem;
  height: 2.55rem;
}

.brand-name {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2vw, 2.15rem);
}

.primary-nav a {
  position: relative;
  color: #cad7df;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition: color 180ms ease;
}

.primary-nav a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 1px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current] {
  color: var(--white);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav .nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 2.7rem;
  padding: 0 1rem;
  color: var(--ink);
  background: var(--cream);
}

.nav-contact span {
  color: #0e6dc7;
  font-size: 1.05rem;
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 1.2rem;
  height: 1px;
  margin: 0.32rem auto;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

/* Shared section language */
.section {
  position: relative;
  padding-block: clamp(6rem, 10vw, 9.5rem);
}

.section h2,
.page-hero h1,
.error-inner h1 {
  margin: 0;
  font-size: clamp(3.1rem, 6vw, 6rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.section-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.6rem;
  color: #3a8ec2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 0.35rem rgba(39, 214, 193, 0.08), 0 0 1rem rgba(39, 214, 193, 0.75);
}

.section-kicker span {
  color: #6d8291;
}

.section-kicker::after {
  width: 3rem;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.55;
}

.section-kicker-light {
  color: var(--teal);
}

.section-kicker-light span {
  color: #7e99aa;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  min-height: 3.55rem;
  padding: 0 1.25rem 0 1.45rem;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-decoration: none;
  border: 0;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--orange);
}

.button-primary:hover {
  background: #ffa15e;
}

.button-arrow {
  display: grid;
  width: 1.9rem;
  height: 1.9rem;
  place-items: center;
  font-size: 1.15rem;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}

.text-link span {
  color: var(--teal);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  padding-top: clamp(3rem, 5vw, 5.5rem);
  background:
    radial-gradient(circle at 70% 32%, rgba(31, 137, 255, 0.14), transparent 33%),
    linear-gradient(130deg, #061421 0%, #061421 53%, #0a2133 100%);
  overflow: hidden;
}

.hero-grid,
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(133, 181, 209, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133, 181, 209, 0.055) 1px, transparent 1px);
  background-size: 5.5rem 5.5rem;
}

.hero-glow {
  position: absolute;
  top: -18rem;
  left: 42%;
  width: 44rem;
  height: 44rem;
  background: radial-gradient(circle, rgba(39, 214, 193, 0.09), transparent 66%);
  border-radius: 50%;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(27rem, 0.78fr);
  gap: clamp(3rem, 7vw, 7.5rem);
  align-items: center;
}

.hero-copy {
  padding-bottom: 5rem;
}

.hero h1 {
  max-width: 8ch;
  margin: 0;
  color: var(--cream);
  font-size: clamp(4.25rem, 7.5vw, 7.2rem);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.075em;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(95deg, #4ad7d0, #1f89ff 75%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 42rem;
  margin: 2.2rem 0 0;
  color: #9fb2bd;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.6rem;
}

.hero-expertise {
  display: flex;
  gap: 1.15rem;
  margin-top: 3.5rem;
  color: #7891a0;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-expertise span {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.hero-expertise span:not(:last-child)::after {
  width: 0.22rem;
  height: 0.22rem;
  background: var(--teal);
  border-radius: 50%;
  content: "";
}

.hero-visual {
  position: relative;
  min-height: clamp(35rem, 52vw, 46rem);
}

.hero-photo,
.visual-scan {
  position: absolute;
  inset: 0 -4rem 2rem 0;
  overflow: hidden;
  clip-path: polygon(12% 0, 100% 0, 100% 92%, 88% 100%, 0 100%, 0 10%);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 20, 33, 0.08), rgba(6, 20, 33, 0.64));
  content: "";
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.visual-scan {
  z-index: 2;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 20% 100%;
  pointer-events: none;
}

.hero-card {
  position: absolute;
  z-index: 4;
  color: var(--cream);
  background: rgba(6, 20, 33, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.11);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero-card-main {
  bottom: 0;
  left: -2.5rem;
  width: min(21rem, 76%);
  padding: 1.3rem 1.5rem;
}

.metric-label {
  display: block;
  margin-bottom: 0.55rem;
  color: #7896a7;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card-main strong {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
}

.hero-card-main strong span {
  color: var(--teal);
}

.hero-marquee {
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-marquee > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2rem;
  padding: 1.1rem 0;
  color: #647f8f;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  animation: marquee 28s linear infinite;
}

.hero-marquee i {
  width: 0.3rem;
  height: 0.3rem;
  background: var(--orange);
  border-radius: 50%;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Services */
.services {
  color: var(--ink);
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.section-heading > p {
  max-width: 34rem;
  margin: 0 0 0.4rem;
  color: #566b77;
  line-height: 1.75;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line-light);
}

.offer-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 38rem;
  flex-direction: column;
  padding: clamp(1.7rem, 3vw, 2.7rem);
  background: #fff;
}

.offer-card + .offer-card {
  border-left: 1px solid var(--line-light);
}

.offer-card-featured {
  background: #e8eef0;
}

.offer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #607783;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-number {
  color: #1a78b7;
}

.offer-tag {
  padding: 0.42rem 0.55rem;
  border: 1px solid #9eb0b8;
}

.offer-symbol {
  position: relative;
  width: 5.5rem;
  height: 5.5rem;
  margin: 4rem 0 3.2rem;
  color: var(--navy);
  border: 1px solid #a3b6bd;
  border-radius: 50%;
}

.offer-symbol::before,
.offer-symbol::after,
.offer-symbol i {
  position: absolute;
  content: "";
}

.symbol-study::before {
  inset: 1.35rem;
  border: 1px solid #1b779e;
  border-radius: 50%;
}

.symbol-study::after {
  top: 50%;
  left: 50%;
  width: 1px;
  height: 6.7rem;
  background: #1b779e;
  transform: translate(-50%, -50%) rotate(45deg);
}

.symbol-build::before {
  right: 1.2rem;
  bottom: 1.25rem;
  left: 1.2rem;
  height: 2.1rem;
  border: 1px solid #1b779e;
  transform: skewY(-16deg);
}

.symbol-build::after {
  top: 1.25rem;
  left: 50%;
  width: 1px;
  height: 3.2rem;
  background: var(--orange);
  transform: rotate(-22deg);
}

.symbol-invest::before {
  inset: 1.2rem;
  border: 1px solid #1b779e;
  transform: rotate(45deg);
}

.symbol-invest::after {
  top: 50%;
  left: 50%;
  width: 0.65rem;
  height: 0.65rem;
  background: var(--teal);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.offer-card h3 {
  max-width: 12ch;
  margin: 0 0 1.2rem;
  font-size: clamp(1.8rem, 2.7vw, 2.6rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.offer-card > p {
  max-width: 30rem;
  margin: 0;
  color: #5c7079;
  font-size: 0.88rem;
  line-height: 1.65;
}

.offer-list {
  padding: 0;
  margin: auto 0 0;
  list-style: none;
  border-top: 1px solid #b5c3c7;
}

.offer-list li {
  position: relative;
  padding: 0.78rem 0 0.78rem 1rem;
  color: #4c6069;
  font-size: 0.75rem;
  border-bottom: 1px solid #c6d0d3;
}

.offer-list li::before {
  position: absolute;
  top: 1.05rem;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  background: #168d83;
  border-radius: 50%;
  content: "";
}

.offer-card > a:not(.partner-lockup) {
  display: flex;
  justify-content: space-between;
  margin-top: 1.8rem;
  padding-top: 1rem;
  color: #0c5f8e;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  border-top: 1px solid #b5c3c7;
}

.partner-lockup {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.2rem;
  align-items: center;
  margin-top: auto;
  padding-top: 2rem;
  color: #536871;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border-top: 1px solid #b5c3c7;
}

.partner-lockup img {
  width: 8rem;
  max-height: 5rem;
  object-fit: contain;
}

/* Investment */
.investment {
  color: var(--cream);
  background: #081a29;
  overflow: hidden;
}

.investment-line {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, transparent 49.95%, rgba(255, 255, 255, 0.04) 50%, transparent 50.05%);
  pointer-events: none;
}

.investment-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.83fr 1fr;
  gap: clamp(4rem, 8vw, 8rem);
  align-items: center;
}

.investment-copy h2 span {
  color: var(--orange);
}

.investment-lead {
  max-width: 37rem;
  margin: 2.2rem 0 0;
  color: #9eb3bf;
  line-height: 1.75;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 2.2rem 0;
  list-style: none;
}

.audience-list li {
  padding: 0.65rem 0.85rem;
  color: #b9cad2;
  font-size: 0.68rem;
  border: 1px solid #365065;
}

.investment-media {
  position: relative;
  min-height: 37rem;
  overflow: hidden;
  clip-path: polygon(9% 0, 100% 0, 100% 91%, 91% 100%, 0 100%, 0 9%);
}

.investment-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 20, 33, 0.05), rgba(6, 20, 33, 0.58));
  content: "";
}

.investment-media > img {
  width: 100%;
  height: 100%;
  min-height: 37rem;
  object-fit: cover;
  object-position: center;
}

.media-caption {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem;
  color: var(--white);
  background: rgba(6, 20, 33, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.live-dot {
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 0.4rem rgba(39, 214, 193, 0.1), 0 0 1rem var(--teal);
}

.media-caption strong,
.media-caption small {
  display: block;
}

.media-caption strong {
  font-size: 0.79rem;
}

.media-caption small {
  margin-top: 0.18rem;
  color: #8fa8b6;
  font-size: 0.62rem;
}

.eligibility-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 6rem;
  border: 1px solid #2b4355;
}

.eligibility-grid article {
  display: flex;
  min-width: 0;
  min-height: 15rem;
  flex-direction: column;
  padding: 1.55rem;
}

.eligibility-grid article + article {
  border-left: 1px solid #2b4355;
}

.eligibility-icon {
  position: relative;
  width: 2.7rem;
  height: 2.7rem;
  color: var(--teal);
  border: 1px solid #3c586c;
  border-radius: 50%;
}

.eligibility-icon::before,
.eligibility-icon::after {
  position: absolute;
  content: "";
}

.roof-icon::before {
  right: 0.65rem;
  bottom: 0.72rem;
  left: 0.65rem;
  height: 0.75rem;
  border: 1px solid currentColor;
  transform: skewY(-17deg);
}

.parking-icon::before {
  inset: 0.65rem;
  border: 1px solid currentColor;
  border-radius: 50% 50% 35% 35%;
}

.map-icon::before {
  inset: 0.65rem 0.8rem;
  border: 1px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.clock-icon::before {
  inset: 0.65rem;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.clock-icon::after {
  top: 0.85rem;
  left: 1.3rem;
  width: 1px;
  height: 0.75rem;
  background: currentColor;
  transform-origin: bottom;
  transform: rotate(-40deg);
}

.eligibility-grid p {
  margin: auto 0 0.6rem;
  color: #76909f;
  font-size: 0.66rem;
}

.eligibility-grid strong {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.eligibility-grid small {
  color: var(--teal);
  font-size: 0.72rem;
  letter-spacing: 0;
}

.project-flow {
  margin-top: 5rem;
}

.flow-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.flow-heading p,
.flow-heading span {
  margin: 0;
}

.flow-heading p {
  font-size: 1.15rem;
  font-weight: 600;
}

.flow-heading span {
  color: #6f8998;
  font-size: 0.65rem;
}

.project-flow ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid #365064;
}

.project-flow li {
  position: relative;
  min-width: 0;
  padding: 2rem 1rem 0 0;
}

.project-flow li::before {
  position: absolute;
  top: -0.31rem;
  left: 0;
  width: 0.62rem;
  height: 0.62rem;
  background: var(--ink);
  border: 1px solid var(--teal);
  border-radius: 50%;
  content: "";
}

.project-flow li:not(:last-child)::after {
  position: absolute;
  top: 2.65rem;
  right: 1rem;
  color: #446174;
  content: "→";
}

.project-flow li > span,
.project-flow li > strong,
.project-flow li > small {
  display: block;
}

.project-flow li > span {
  color: var(--teal);
  font-size: 0.62rem;
}

.project-flow li > strong {
  margin-top: 0.55rem;
  font-size: 0.9rem;
}

.project-flow li > small {
  margin-top: 0.35rem;
  color: #7891a0;
  font-size: 0.66rem;
}

.price-statement {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 5rem;
  padding: 2rem;
  color: var(--ink);
  background: var(--teal);
}

.price-statement > span {
  display: grid;
  width: 4.4rem;
  height: 4.4rem;
  flex: 0 0 auto;
  place-items: center;
  font-size: 2rem;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.price-statement p {
  margin: 0;
  font-size: clamp(1.3rem, 2.8vw, 2.15rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

/* Vision */
.vision {
  color: var(--ink);
  background: var(--cream);
  overflow: hidden;
}

.vision-orbit {
  position: absolute;
  top: -18rem;
  right: -22rem;
  width: 48rem;
  height: 48rem;
  border: 1px solid rgba(31, 137, 255, 0.12);
  border-radius: 50%;
}

.vision-orbit::before,
.vision-orbit::after {
  position: absolute;
  border: 1px solid rgba(31, 137, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.vision-orbit::before { inset: 5rem; }
.vision-orbit::after { inset: 10rem; }

.vision-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 0.72fr;
  gap: 5rem;
  align-items: end;
}

.vision-heading .section-kicker {
  grid-column: 1 / -1;
}

.vision-heading > p:last-child {
  max-width: 32rem;
  margin: 0 0 0.35rem;
  color: #526573;
  line-height: 1.75;
}

.vision-value {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
  padding: 2.2rem 0;
  border-block: 1px solid #adbec3;
}

.vision-value-index {
  color: #1a79b8;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vision-value p {
  max-width: 55rem;
  margin: 0;
  color: #536873;
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
  line-height: 1.7;
}

.vision-value strong {
  color: var(--ink);
}

.vision-layout {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 6rem;
}

.vision-core {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 31rem;
  aspect-ratio: 1;
  place-items: center;
  margin-inline: auto;
}

.core-ring {
  position: absolute;
  border-radius: 50%;
}

.ring-one {
  inset: 0;
  border: 1px solid #9eb5bd;
}

.ring-one::before,
.ring-one::after {
  position: absolute;
  width: 0.68rem;
  height: 0.68rem;
  background: var(--teal);
  border: 0.38rem solid var(--cream);
  border-radius: 50%;
  box-sizing: content-box;
  content: "";
}

.ring-one::before { top: 13%; left: 14%; }
.ring-one::after { right: 8%; bottom: 20%; background: var(--orange); }

.ring-two {
  inset: 3.7rem;
  border: 1px dashed #b5c4c5;
}

.core-message {
  display: grid;
  width: 61%;
  aspect-ratio: 1;
  place-content: center;
  padding: 2rem;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 2rem 5rem rgba(19, 66, 89, 0.2);
}

.core-message span {
  margin-bottom: 0.75rem;
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.core-message strong {
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.25;
}

.vision-principles {
  border-top: 1px solid var(--line-light);
}

.vision-principles article {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.5rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line-light);
}

.vision-principles article > span {
  padding-top: 0.2rem;
  color: #1a79b8;
  font-size: 0.67rem;
  font-weight: 700;
}

.vision-principles h3 {
  margin: 0 0 0.4rem;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.vision-principles p {
  max-width: 34rem;
  margin: 0;
  color: #62737d;
  font-size: 0.84rem;
  line-height: 1.55;
}

/* Self use */
.self-use {
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #0b2942;
  background-size: 5rem 5rem;
}

.self-use-heading {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  gap: 4rem;
  align-items: end;
}

.self-use-heading .section-kicker {
  grid-column: 1 / -1;
}

.self-use-heading > p:last-child {
  margin: 0 0 0.35rem;
  color: #aec1cc;
  line-height: 1.75;
}

.self-use-diagram {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 10rem 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 5.5rem;
}

.diagram-track {
  position: absolute;
  top: 50%;
  right: 20%;
  left: 20%;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--blue));
}

.diagram-track span {
  position: absolute;
  top: -0.2rem;
  left: 5%;
  width: 0.42rem;
  height: 0.42rem;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 1rem var(--teal);
  animation: flow-dot 4s linear infinite;
}

@keyframes flow-dot {
  to { left: 95%; }
}

.use-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 23rem;
  padding: clamp(1.7rem, 3.5vw, 3rem);
  background: rgba(6, 20, 33, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.use-index {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  color: var(--teal);
  font-size: 0.75rem;
  border: 1px solid #426278;
  border-radius: 50%;
}

.use-label {
  margin: 3.4rem 0 0.7rem;
  color: #6fa6c7;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.use-card h3 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(1.5rem, 2.7vw, 2.15rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.use-card > p:last-child {
  max-width: 31rem;
  margin: 1.35rem 0 0;
  color: #93aab8;
  font-size: 0.87rem;
  line-height: 1.65;
}

.energy-node {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  text-align: center;
}

.energy-node > div {
  display: grid;
  width: 6rem;
  height: 6rem;
  place-items: center;
  background: var(--ink);
  border: 1px solid var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 0.8rem rgba(39, 214, 193, 0.06), 0 0 3rem rgba(39, 214, 193, 0.17);
}

.energy-node > div span {
  position: relative;
  width: 1.1rem;
  height: 2rem;
  background: var(--orange);
  clip-path: polygon(52% 0, 100% 0, 70% 43%, 100% 43%, 27% 100%, 46% 56%, 0 56%);
}

.energy-node small {
  margin-top: 1rem;
  color: #a7becb;
  font-size: 0.65rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.self-use-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-top: 2rem;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.benefit {
  display: flex;
  max-width: 42rem;
  gap: 1.25rem;
  align-items: flex-start;
}

.benefit-mark {
  color: var(--teal);
  font-size: 1.8rem;
}

.benefit p {
  margin: 0;
  color: #c2d0d7;
  font-size: 0.9rem;
  line-height: 1.65;
}

.button-light {
  color: var(--ink);
  background: var(--cream);
}

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

/* Contact */
.contact {
  color: var(--white);
  background: #071827;
  overflow: hidden;
}

.contact-beam {
  position: absolute;
  top: -32%;
  left: -8%;
  width: 55%;
  height: 165%;
  background: linear-gradient(120deg, transparent 22%, rgba(31, 137, 255, 0.1) 50%, transparent 70%);
  transform: rotate(-8deg);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(4rem, 8vw, 8rem);
  align-items: start;
}

.contact-copy h2 {
  max-width: 10ch;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 31rem;
  margin: 2rem 0 0;
  color: #9eb4c0;
  line-height: 1.75;
}

.contact-note {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.contact-note > span {
  width: 0.6rem;
  height: 0.6rem;
  flex: 0 0 auto;
  margin-top: 0.35rem;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 0.35rem rgba(39, 214, 193, 0.1);
}

.contact-note p {
  margin: 0;
  color: #8fa6b3;
  font-size: 0.78rem;
  line-height: 1.65;
}

.contact-note strong {
  color: #dce7eb;
  font-weight: 600;
}

.contact-form {
  position: relative;
  padding: clamp(1.75rem, 4vw, 3rem);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.2);
}

.form-intro {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.form-response-time {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.7rem 0 2.3rem;
  color: #52707a;
  font-size: 0.7rem;
}

.form-response-time > span {
  width: 0.48rem;
  height: 0.48rem;
  background: #11978b;
  border-radius: 50%;
  box-shadow: 0 0 0 0.3rem rgba(17, 151, 139, 0.09);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.7rem 1.2rem;
}

.field {
  display: grid;
  gap: 0.55rem;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  color: #38505d;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.field label > span,
.form-submit p span,
.consent > span > span {
  color: #c85d12;
}

.field label small {
  color: #7b8990;
  font-size: 0.65rem;
  font-weight: 400;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.75rem 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #adbec3;
  border-radius: 0;
  outline: 0;
  transition: border-color 180ms ease;
}

.field textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: #1379b7;
  box-shadow: 0 2px 0 -1px #1379b7;
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--focus-color);
  outline-offset: 4px;
}

.field textarea::placeholder {
  color: #8d9aa0;
}

.field small {
  color: #71828a;
  font-size: 0.61rem;
}

.captcha-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: end;
  margin-top: 1.8rem;
  padding: 1.1rem;
  background: #e9eeef;
  border: 1px solid #d2dcdf;
}

.captcha-visual {
  display: grid;
  justify-items: end;
  gap: 0.55rem;
}

.captcha-visual img {
  width: 176px;
  height: 58px;
  background: #ebf0f1;
  border: 1px solid #bccacd;
}

.captcha-refresh {
  padding: 0;
  color: #0d658e;
  background: transparent;
  border: 0;
  font-size: 0.65rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.captcha-refresh[aria-busy="true"] {
  opacity: 0.55;
  pointer-events: none;
}

.consent {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-top: 1.5rem;
  color: #5e7078;
  font-size: 0.68rem;
  line-height: 1.5;
}

.consent input {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  margin: 0.08rem 0 0;
  accent-color: #0a739e;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.form-submit p {
  margin: 0;
  color: #708087;
  font-size: 0.63rem;
}

.form-notice {
  margin: 0 0 1.5rem;
  padding: 1rem;
  font-size: 0.76rem;
  line-height: 1.55;
  border-left: 3px solid;
}

.form-notice-success {
  color: #075b53;
  background: #d9f4ed;
  border-color: #0aa690;
}

.form-notice-error {
  color: #7b2c14;
  background: #ffeadf;
  border-color: #d55e26;
}

/* Footer */
.site-footer {
  color: #8da5b1;
  background: #03101a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.7fr 1fr auto;
  gap: 3rem;
  align-items: center;
  padding-block: 3.5rem;
}

.brand-footer {
  color: var(--white);
}

.footer-main > p {
  margin: 0;
  font-size: 0.82rem;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #d3e0e5;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
}

.back-to-top span {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  color: var(--teal);
  border: 1px solid #385266;
  border-radius: 50%;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.5rem;
  font-size: 0.66rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: inherit;
  text-underline-offset: 0.22rem;
}

/* Interior pages */
.page-main {
  color: var(--ink);
  background: var(--paper);
}

.page-hero {
  position: relative;
  min-height: 31rem;
  display: grid;
  align-items: end;
  color: var(--cream);
  background:
    radial-gradient(circle at 78% 32%, rgba(39, 214, 193, 0.12), transparent 27rem),
    linear-gradient(130deg, #061421, #0b2942);
  overflow: hidden;
}

.page-hero-inner,
.error-inner {
  position: relative;
  z-index: 1;
  padding-block: 6rem 4.5rem;
}

.page-hero h1 {
  max-width: 13ch;
}

.page-back-link {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  margin-top: 2.5rem;
  color: #a8bdc8;
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
}

.page-back-link span {
  color: var(--teal);
}

.prose-layout {
  display: grid;
  grid-template-columns: 11rem minmax(0, 48rem);
  gap: 4rem;
  justify-content: center;
  padding-block: clamp(5rem, 9vw, 8rem);
}

.prose-marker {
  display: grid;
  align-content: start;
  gap: 1rem;
  color: #2d759c;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.prose-marker i {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #2d759c, transparent);
}

.prose-content {
  min-width: 0;
  color: #405865;
  font-size: 1rem;
  line-height: 1.82;
}

.prose-content > :first-child {
  margin-top: 0;
}

.prose-content > :last-child {
  margin-bottom: 0;
}

.prose-content h2,
.prose-content h3,
.prose-content h4 {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.prose-content h2 {
  margin: 3.5rem 0 1.2rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.prose-content h3 {
  margin: 2.7rem 0 1rem;
  font-size: 1.55rem;
}

.prose-content a {
  color: #0e6dc7;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2rem;
}

.prose-content ul,
.prose-content ol {
  padding-left: 1.4rem;
}

.prose-content li + li {
  margin-top: 0.55rem;
}

.prose-content blockquote {
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  color: var(--ink);
  background: #e9eeef;
  border-left: 4px solid var(--teal);
}

.prose-content table {
  width: 100%;
  border-collapse: collapse;
}

.prose-content th,
.prose-content td {
  padding: 0.8rem;
  border: 1px solid #cbd6d9;
  text-align: left;
}

.article-image {
  margin-bottom: 3rem;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-block: clamp(5rem, 9vw, 8rem);
  background: #cbd6d9;
  border: 1px solid #cbd6d9;
}

.archive-card {
  min-width: 0;
  min-height: 24rem;
  padding: 2rem;
  background: #fff;
}

.archive-card > p:first-child {
  color: #2d759c;
  font-size: 0.65rem;
  font-weight: 700;
}

.archive-card h2 {
  margin: 4rem 0 1.4rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.archive-card h2 a {
  text-decoration: none;
}

.archive-card > div {
  color: #60727b;
  font-size: 0.86rem;
  line-height: 1.65;
}

.archive-card .text-link {
  margin-top: 2rem;
  color: #0e6dc7;
}

.archive-empty {
  grid-column: 1 / -1;
}

.error-page .page-hero {
  min-height: calc(100svh - var(--header-height));
  align-items: center;
}

.error-inner h1 {
  max-width: 12ch;
}

.error-inner > p:not(.eyebrow) {
  margin: 2rem 0;
  color: #9eb4c0;
}

/* Responsive navigation and layouts */
@media (max-width: 1050px) {
  .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 202;
    display: block;
  }

  .nav-panel {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 201;
    display: grid;
    background: #03101a;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.75rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  body.admin-bar .nav-panel {
    top: calc(var(--header-height) + 32px);
  }

  .nav-panel[data-open] {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-nav {
    width: var(--shell);
    height: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-inline: auto;
    padding-bottom: var(--header-height);
  }

  .primary-nav a {
    padding: 1.15rem 0;
    color: var(--white);
    font-size: clamp(1.45rem, 5vw, 2.6rem);
    letter-spacing: -0.025em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav .nav-contact {
    justify-content: space-between;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.72fr);
    gap: 3rem;
  }

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

  .offer-card:last-child {
    grid-column: 1 / -1;
    min-height: 31rem;
  }

  .offer-card:nth-child(3) {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .investment-intro {
    gap: 3rem;
  }

  .vision-layout {
    gap: 2.5rem;
  }

  .self-use-diagram {
    grid-template-columns: 1fr 7rem 1fr;
    gap: 1rem;
  }

  .contact-layout {
    gap: 3.5rem;
  }
}

@media (max-width: 800px) {
  :root {
    --shell: min(calc(100% - 2rem), 42rem);
  }

  .section {
    padding-block: 5.5rem;
  }

  .hero {
    min-height: auto;
    padding-top: 3.5rem;
  }

  .hero-layout,
  .investment-intro,
  .vision-heading,
  .vision-layout,
  .self-use-heading,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-visual {
    min-height: min(38rem, 117vw);
    margin: 0 0 5.25rem;
  }

  .hero-photo,
  .visual-scan {
    left: 0;
  }

  .hero-card-main {
    left: 0;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .section-heading > p {
    margin: 0;
  }

  .offer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .offer-card,
  .offer-card:last-child {
    grid-column: auto;
    min-height: 32rem;
    border-left: 0;
  }

  .offer-card + .offer-card {
    border-top: 1px solid var(--line-light);
  }

  .investment-intro {
    gap: 3.5rem;
  }

  .investment-media,
  .investment-media > img {
    min-height: 28rem;
  }

  .eligibility-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 4rem;
  }

  .eligibility-grid article:nth-child(3) {
    border-left: 0;
  }

  .eligibility-grid article:nth-child(n + 3) {
    border-top: 1px solid #2b4355;
  }

  .project-flow ol {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 0;
  }

  .project-flow li:nth-child(2)::after {
    display: none;
  }

  .vision-heading,
  .self-use-heading {
    gap: 2rem;
  }

  .vision-heading .section-kicker,
  .self-use-heading .section-kicker {
    grid-column: auto;
  }

  .vision-value {
    grid-template-columns: 1fr;
  }

  .vision-layout {
    margin-top: 4rem;
  }

  .self-use-diagram {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-top: 4rem;
  }

  .diagram-track {
    top: 15%;
    bottom: 15%;
    left: 50%;
    width: 1px;
    height: auto;
    background: linear-gradient(var(--blue), var(--teal), var(--blue));
  }

  .diagram-track span {
    top: 5%;
    left: -0.2rem;
    animation: flow-dot-vertical 4s linear infinite;
  }

  @keyframes flow-dot-vertical {
    to { top: 95%; }
  }

  .energy-node {
    padding: 1.4rem 0;
  }

  .self-use-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-copy h2 {
    max-width: 12ch;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
  }

  .footer-main > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .prose-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .prose-marker {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

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

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 1.5rem);
    --header-height: 4.5rem;
  }

  body.admin-bar .site-header {
    top: 46px;
  }

  body.admin-bar .nav-panel {
    top: calc(var(--header-height) + 46px);
  }

  .brand img {
    width: 2.2rem;
    height: 2.2rem;
  }

  .brand-name {
    font-size: 1rem;
  }

  .hero {
    padding-top: 2.7rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.3rem);
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    justify-content: space-between;
    padding: 0.7rem 0;
  }

  .hero-expertise {
    display: grid;
    gap: 0.65rem;
  }

  .hero-expertise span {
    justify-content: space-between;
  }

  .hero-expertise span:not(:last-child)::after {
    display: none;
  }

  .hero-visual {
    min-height: 30rem;
  }

  .hero-photo,
  .visual-scan {
    inset: 0 0 2.5rem;
    clip-path: polygon(12% 0, 100% 0, 100% 92%, 88% 100%, 0 100%, 0 10%);
  }

  .hero-card-main {
    bottom: 0.75rem;
    width: calc(100% - 1.75rem);
  }

  .section h2,
  .page-hero h1,
  .error-inner h1 {
    font-size: clamp(2.55rem, 12vw, 3.7rem);
  }

  .offer-card,
  .offer-card:last-child {
    min-height: 34rem;
    padding: 1.5rem;
  }

  .offer-symbol {
    margin: 3rem 0 2.5rem;
  }

  .investment-media,
  .investment-media > img {
    min-height: 23rem;
  }

  .eligibility-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .eligibility-grid article + article {
    border-top: 1px solid #2b4355;
    border-left: 0;
  }

  .eligibility-grid article {
    min-height: 11.5rem;
  }

  .eligibility-grid p {
    margin-top: 1.5rem;
  }

  .flow-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
  }

  .project-flow ol {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    border: 0;
    border-left: 1px solid #355064;
  }

  .project-flow li {
    padding: 0 0 2.5rem 2rem;
  }

  .project-flow li::before {
    top: 0.2rem;
    left: -0.35rem;
  }

  .project-flow li:not(:last-child)::after {
    display: none;
  }

  .price-statement {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.5rem;
  }

  .price-statement > span {
    width: 3.5rem;
    height: 3.5rem;
  }

  .vision-core {
    width: 100%;
  }

  .ring-two {
    inset: 2.5rem;
  }

  .core-message {
    width: 68%;
    padding: 1rem;
  }

  .vision-principles article {
    gap: 0.75rem;
  }

  .use-card {
    min-height: 22rem;
    padding: 1.5rem;
  }

  .self-use-bottom .button,
  .form-submit .button {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .field-wide {
    grid-column: auto;
  }

  .captcha-field {
    grid-template-columns: minmax(0, 1fr);
  }

  .captcha-visual {
    justify-items: start;
  }

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-main > p {
    grid-column: auto;
    grid-row: auto;
  }

  .back-to-top {
    justify-content: space-between;
  }

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

  .footer-legal {
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
  }

  .page-hero {
    min-height: 27rem;
  }

  .page-hero-inner,
  .error-inner {
    padding-block: 5rem 3.5rem;
  }

  .archive-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

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

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

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
