/*
Theme Name: Anvil Power Partners
Theme URI: https://anvilpowerpartners.com
Author: Anvil Power Partners
Description: Institutional WordPress theme for large-scale power development and critical infrastructure.
Version: 2.1.0
Requires at least: 6.5
Requires PHP: 8.1
Text Domain: n2energy
*/

@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=IBM+Plex+Sans+Condensed:wght@400;500;600;700&family=IBM+Plex+Sans:wght@400;500;600&display=swap");

:root {
  --navy-950: #061321;
  --navy-900: #081a2d;
  --navy-800: #0d2742;
  --navy-700: #163b60;
  --blue-600: #1d73d4;
  --blue-500: #2789ed;
  --cyan-400: #45c5d9;
  --amber-500: #f3a62f;
  --ink-900: #101b27;
  --ink-700: #334454;
  --ink-500: #647482;
  --line: #dbe3e9;
  --soft: #f2f6f8;
  --white: #fff;
  --shadow: 0 20px 60px rgba(5, 22, 38, 0.13);
  --radius-sm: 4px;
  --radius: 10px;
  --container: 1200px;
  --header-height: 84px;
  --transition: 180ms ease;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink-900);
  background: var(--white);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

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

:focus-visible {
  outline: 3px solid var(--cyan-400);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Arial Narrow", Aptos, "Segoe UI", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.25rem, 7.3vw, 7rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 1.35rem;
  font-size: clamp(2.25rem, 4.3vw, 4rem);
  font-weight: 650;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 650;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--white);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform var(--transition);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  color: var(--blue-600);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: var(--cyan-400);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--blue-500);
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 9px 30px rgba(26, 112, 210, 0.26);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.button:hover {
  border-color: var(--blue-500);
  background: var(--blue-500);
  box-shadow: 0 13px 34px rgba(26, 112, 210, 0.35);
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.72rem;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(7, 23, 42, 0.18);
  box-shadow: none;
  backdrop-filter: none;
}

.button--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.button--light {
  border-color: var(--white);
  color: var(--navy-950);
  background: var(--white);
  box-shadow: none;
}

.button--light:hover {
  border-color: var(--cyan-400);
  background: var(--cyan-400);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-600);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  font-size: 1.25em;
  transition: transform var(--transition);
}

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

.site-header {
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  position: fixed;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(6, 19, 33, 0.95);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: none;
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--white);
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 2px;
  font-family: Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 750;
  letter-spacing: -0.08em;
}

.brand__mark sup {
  position: relative;
  top: -0.25em;
  margin-left: 1px;
  font-size: 0.58em;
}

.brand__name {
  font-size: 1.03rem;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.brand__name strong {
  color: var(--cyan-400);
  font-weight: 750;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__list a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
}

.site-nav__list a::after {
  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;
  height: 2px;
  background: var(--cyan-400);
  content: "";
  transform: scaleX(0);
  transition: transform var(--transition);
}

.site-nav__list a:hover,
.site-nav__list a[aria-current="page"] {
  color: var(--white);
}

.site-nav__list a:hover::after,
.site-nav__list a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 0;
  color: var(--white);
  background: transparent;
}

.hero {
  position: relative;
  display: flex;
  min-height: 800px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(3, 15, 28, 0.97) 0%, rgba(3, 15, 28, 0.86) 38%, rgba(3, 15, 28, 0.32) 70%, rgba(3, 15, 28, 0.2) 100%),
    linear-gradient(0deg, rgba(3, 15, 28, 0.92) 0%, transparent 35%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 180px;
}

.hero h1 {
  max-width: 960px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--cyan-400);
}

.hero__lead {
  max-width: 700px;
  margin-bottom: 2.1rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.6;
}

.hero__rail {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(3, 15, 28, 0.72);
  backdrop-filter: none;
}

.hero__rail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero__rail-grid div {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__rail-grid div:first-child {
  padding-left: 0;
}

.hero__rail-grid div:last-child {
  border-right: 0;
}

.hero__rail strong {
  color: var(--white);
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.hero__rail span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 620px;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.page-hero--solid {
  min-height: 560px;
  background:
    radial-gradient(circle at 82% 28%, rgba(39, 137, 237, 0.32), transparent 32%),
    linear-gradient(135deg, var(--navy-950), var(--navy-700));
}

.page-hero--solid::after {
  position: absolute;
  right: -8vw;
  bottom: -42%;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(69, 197, 217, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(69, 197, 217, 0.035), 0 0 0 140px rgba(69, 197, 217, 0.025);
}

.page-hero--compact {
  min-height: 420px;
}

.page-hero__media,
.page-hero__overlay {
  position: absolute;
  inset: 0;
}

.page-hero__media {
  background-position: center;
  background-size: cover;
}

.page-hero--turbine .page-hero__media {
  background-position: 60% center;
}

.page-hero__overlay {
  background: linear-gradient(90deg, rgba(4, 17, 31, 0.96) 0%, rgba(4, 17, 31, 0.8) 42%, rgba(4, 17, 31, 0.24) 78%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 90px;
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 1.3rem;
  font-size: clamp(3rem, 6vw, 5.8rem);
  text-transform: uppercase;
}

.page-hero__content > p:not(.eyebrow) {
  max-width: 710px;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.18rem;
}

.section {
  padding-block: clamp(80px, 10vw, 140px);
}

.section--intro {
  padding-block: clamp(85px, 11vw, 150px);
}

.section--soft {
  background: var(--soft);
}

.section--dark {
  color: var(--white);
  background: var(--navy-950);
}

.section--navy {
  color: var(--white);
  background: var(--navy-800);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.split--intro h2 {
  margin-bottom: 0;
}

.prose p {
  color: var(--ink-700);
}

.prose--large p {
  font-size: 1.08rem;
}

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

.section-heading {
  max-width: 800px;
  margin-bottom: clamp(44px, 7vw, 76px);
}

.section-heading--wide {
  max-width: 880px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 700px;
  color: var(--ink-700);
  font-size: 1.08rem;
}

.section-heading--light > p:not(.eyebrow),
.section-heading--light h2 {
  color: var(--white);
}

.section-lead {
  color: var(--ink-700);
  font-size: 1.08rem;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-split__image {
  min-height: 560px;
}

.feature-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-split__content {
  padding: clamp(42px, 6vw, 74px);
}

.feature-split__content h3 {
  margin-bottom: 1.7rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.kicker {
  margin-bottom: 1rem;
  color: var(--blue-600);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.check-list--columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: var(--ink-700);
  font-size: 0.93rem;
}

.check-list li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 11px;
  height: 2px;
  background: var(--blue-500);
  content: "";
}

.turbine-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.turbine-feature__content > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.72);
}

.turbine-feature__image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.turbine-feature__image img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.spec-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-block: 2.2rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.spec-row div {
  padding: 18px 14px 18px 0;
}

.spec-row strong,
.spec-row span {
  display: block;
}

.spec-row strong {
  color: var(--cyan-400);
  font-size: 1.05rem;
}

.spec-row span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
  line-height: 1.4;
  text-transform: uppercase;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-card {
  min-height: 330px;
  padding: 34px 24px;
  border-right: 1px solid var(--line);
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

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

.capability-card > span,
.evaluation-grid article > span,
.value-grid article > span {
  display: block;
  margin-bottom: 70px;
  color: var(--blue-600);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.capability-card p {
  color: var(--ink-700);
  font-size: 0.91rem;
  line-height: 1.62;
}

.capability-card:hover {
  color: var(--white);
  background: var(--navy-800);
  transform: translateY(-8px);
}

.capability-card:hover p,
.capability-card:hover > span {
  color: rgba(255, 255, 255, 0.7);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.market-grid article {
  position: relative;
  min-height: 370px;
  padding: clamp(34px, 5vw, 62px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.market-grid article::after {
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(69, 197, 217, 0.15);
  border-radius: 50%;
  content: "";
}

.market-grid__number {
  display: block;
  margin-bottom: 55px;
  color: var(--cyan-400);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.market-grid h3 {
  font-size: 2rem;
}

.market-grid p,
.market-grid li {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.market-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.market-grid li::before {
  margin-right: 7px;
  color: var(--cyan-400);
  content: "/";
}

.process {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process li {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 30px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.process li > span {
  color: var(--blue-600);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process h3 {
  margin-bottom: 0.35rem;
}

.process p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--ink-700);
}

.why-list {
  border-top: 1px solid var(--line);
}

.why-list article {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.why-list h3,
.why-list p {
  margin-bottom: 0;
}

.why-list p {
  color: var(--ink-700);
  font-size: 0.92rem;
}

.cta-panel {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 23, 42, 0.98), rgba(12, 57, 93, 0.95)),
    var(--navy-800);
}

.cta-panel__inner {
  display: grid;
  min-height: 380px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
  align-items: center;
}

.cta-panel h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.evaluation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.evaluation-grid article {
  min-height: 390px;
  padding: 38px;
  background: var(--white);
}

.evaluation-grid article > span {
  margin-bottom: 55px;
}

.evaluation-grid ul,
.scope-grid ul {
  margin: 1.2rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-700);
  font-size: 0.9rem;
}

.deliverable-section {
  background: var(--white);
}

.deliverable-card {
  padding: clamp(36px, 5vw, 60px);
  border-left: 4px solid var(--blue-500);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--soft);
}

.deliverable-card--white {
  background: var(--white);
  box-shadow: var(--shadow);
}

.question-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(50px, 9vw, 130px);
}

.question-grid ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.question-grid li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.question-grid li span {
  color: var(--cyan-400);
  font-size: 0.72rem;
  font-weight: 800;
}

.rebuilt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 10vw, 140px);
  align-items: center;
}

.rebuilt-grid p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.67);
}

.comparison-stack {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.comparison-stack div {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.comparison-stack span,
.comparison-stack strong {
  display: block;
}

.comparison-stack span {
  margin-bottom: 4px;
  color: var(--cyan-400);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-stack strong {
  font-size: 1.2rem;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.scope-grid > div {
  padding: 38px 30px;
  background: var(--white);
}

.fine-print {
  margin-top: 1.7rem;
  color: var(--ink-500);
  font-size: 0.78rem;
  line-height: 1.6;
}

.capacity-diagram {
  display: grid;
  gap: 14px;
}

.capacity-diagram__row {
  display: grid;
  min-height: 86px;
  grid-template-columns: 170px repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.capacity-diagram__label {
  display: flex;
  align-items: center;
  color: var(--ink-500);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capacity-block {
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-700), var(--blue-600));
  font-weight: 800;
}

.capacity-block--more {
  border: 1px dashed var(--blue-500);
  color: var(--blue-600);
  background: transparent;
}

.benefit-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.benefit-strip span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-700);
  font-size: 0.79rem;
  font-weight: 700;
}

.mission-section {
  padding-block: clamp(90px, 12vw, 170px);
  color: var(--white);
  background: var(--blue-600);
}

.mission-section blockquote {
  max-width: 1050px;
  margin-bottom: 0;
  font-family: "Arial Narrow", Aptos, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.25rem, 4.7vw, 4.35rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.about-platform {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.about-platform__image {
  overflow: hidden;
  border-radius: var(--radius);
}

.about-platform__image img {
  min-height: 590px;
  object-fit: cover;
}

.about-platform__content p:not(.eyebrow) {
  color: var(--ink-700);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.value-grid article {
  min-height: 300px;
  padding: 42px;
  background: var(--white);
}

.value-grid article > span {
  margin-bottom: 60px;
}

.value-grid p {
  color: var(--ink-700);
}

.contact-section {
  background: var(--soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(45px, 7vw, 90px);
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.contact-aside > p:not(.eyebrow) {
  color: var(--ink-700);
}

.contact-details {
  margin: 2.4rem 0;
  border-top: 1px solid var(--line);
}

.contact-details div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details span,
.contact-details strong {
  display: block;
}

.contact-details span {
  margin-bottom: 3px;
  color: var(--ink-500);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.placeholder-value {
  color: var(--ink-500);
  font-style: italic;
  font-weight: 550;
}

.contact-audience {
  padding: 24px;
  border-left: 3px solid var(--cyan-400);
  background: var(--white);
}

.contact-audience h3 {
  font-size: 1.05rem;
}

.contact-audience p {
  margin-bottom: 0;
  color: var(--ink-700);
  font-size: 0.88rem;
}

.inquiry-panel {
  padding: clamp(34px, 5vw, 64px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.inquiry-panel__heading {
  margin-bottom: 40px;
}

.inquiry-panel__heading h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.inquiry-panel__heading > p:not(.eyebrow) {
  color: var(--ink-500);
  font-size: 0.86rem;
}

.inquiry-form fieldset {
  margin: 0 0 40px;
  padding: 0;
  border: 0;
}

.inquiry-form legend {
  width: 100%;
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--ink-700);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.form-grid label > span {
  color: #b64133;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid #cbd6dd;
  border-radius: var(--radius-sm);
  color: var(--ink-900);
  background: var(--white);
  font-size: 0.94rem;
  font-weight: 450;
  letter-spacing: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-grid input,
.form-grid select {
  height: 50px;
  padding: 0 13px;
}

.form-grid textarea {
  min-height: 100px;
  padding: 12px 13px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--blue-500);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(39, 137, 237, 0.14);
}

.honeypot {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

.form-disclaimer {
  margin-bottom: 24px;
  color: var(--ink-500);
  font-size: 0.75rem;
  line-height: 1.55;
}

.form-notice {
  margin-bottom: 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--blue-500);
  background: var(--soft);
}

.form-notice--success {
  border-color: #2b8b61;
  background: #edf8f2;
}

.form-notice--error {
  border-color: #b64133;
  background: #fff2f0;
}

.entry-content {
  max-width: 820px;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 2em;
}

.site-footer {
  padding-top: 80px;
  color: rgba(255, 255, 255, 0.72);
  background: #03101d;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 1fr;
  gap: 70px;
  padding-bottom: 70px;
}

.brand--footer {
  margin-bottom: 18px;
}

.site-footer__brand p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__heading {
  margin-bottom: 18px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--cyan-400);
}

.site-footer__contact .placeholder-value {
  color: rgba(255, 255, 255, 0.47);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1080px) {
  .site-nav__list {
    gap: 16px;
  }

  .site-nav__list a {
    font-size: 0.72rem;
  }

  .site-nav__cta {
    display: none;
  }

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

  .capability-card:nth-child(3) {
    border-right: 0;
  }

  .capability-card:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

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

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

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 8px 0;
    cursor: pointer;
  }

  .nav-toggle__label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .nav-toggle__lines {
    display: grid;
    width: 24px;
    gap: 6px;
  }

  .nav-toggle__lines span {
    display: block;
    height: 2px;
    background: currentColor;
    transition: transform var(--transition);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__lines span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

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

  .site-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 28px 18px;
    background: rgba(6, 19, 33, 0.99);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    display: grid;
    gap: 0;
  }

  .site-nav__list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .site-nav__list a {
    display: block;
    padding: 18px 4px;
    font-size: 1rem;
  }

  .site-nav__list a::after {
    display: none;
  }

  .site-nav__cta {
    display: inline-flex;
    margin-top: 24px;
  }

  .hero {
    min-height: 760px;
  }

  .hero__overlay {
    background: linear-gradient(90deg, rgba(3, 15, 28, 0.94), rgba(3, 15, 28, 0.54)), linear-gradient(0deg, rgba(3, 15, 28, 0.92), transparent 45%);
  }

  .hero__content {
    padding-bottom: 210px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 13vw, 5rem);
  }

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

  .hero__rail-grid div {
    min-height: auto;
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero__rail-grid div:last-child {
    border-bottom: 0;
  }

  .hero__rail strong {
    font-size: 1rem;
  }

  .hero__rail span {
    font-size: 0.69rem;
  }

  .split,
  .feature-split,
  .turbine-feature,
  .question-grid,
  .rebuilt-grid,
  .about-platform,
  .contact-layout,
  .cta-panel__inner {
    grid-template-columns: 1fr;
  }

  .feature-split__image,
  .turbine-feature__image img,
  .about-platform__image img {
    min-height: 380px;
  }

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

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

  .capability-card:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .capability-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

  .why-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cta-panel__inner {
    min-height: 420px;
    gap: 34px;
    align-content: center;
  }

  .capacity-diagram__row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .capacity-diagram__label {
    grid-column: 1 / -1;
  }

  .contact-aside {
    position: static;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

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

  .brand__name {
    font-size: 0.9rem;
  }

  .brand__mark {
    width: 37px;
    height: 37px;
  }

  .hero {
    min-height: 780px;
  }

  .hero__media {
    background-position: 62% center;
  }

  .hero__content {
    padding-top: 130px;
    padding-bottom: 220px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .button-row,
  .button-row .button,
  .cta-panel .button {
    width: 100%;
  }

  .page-hero {
    min-height: 590px;
  }

  .page-hero h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .check-list--columns,
  .evaluation-grid,
  .capability-grid,
  .scope-grid,
  .form-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .capability-card,
  .capability-card:nth-child(3) {
    min-height: 250px;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .capability-card:first-child {
    border-top: 0;
  }

  .capability-card > span,
  .evaluation-grid article > span,
  .value-grid article > span {
    margin-bottom: 35px;
  }

  .market-grid article {
    min-height: 330px;
  }

  .process li {
    grid-template-columns: 45px 1fr;
    gap: 14px;
  }

  .spec-row {
    grid-template-columns: 1fr;
  }

  .spec-row div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .spec-row div:last-child {
    border-bottom: 0;
  }

  .capacity-diagram__row {
    grid-template-columns: 1fr 1fr;
  }

  .capacity-diagram__label {
    grid-column: 1 / -1;
  }

  .contact-layout {
    gap: 50px;
  }

  .inquiry-panel {
    padding: 28px 20px;
  }

  .form-grid__wide {
    grid-column: auto;
  }

  .site-footer__brand,
  .site-footer__grid > div {
    grid-column: auto;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

/*
 * Visual system 2.0 — Anvil Harbor & Brick, clear image treatment
 *
 * The original site content and template structure remain unchanged. This
 * layer gives the theme a more technical, editorial, and institutional voice.
 */
:root {
  --navy-950: #132832;
  --navy-900: #1d3440;
  --navy-800: #294550;
  --navy-700: #3d5d67;
  --blue-600: #315b70;
  --blue-500: #4d7484;
  --cyan-400: #c1825e;
  --amber-500: #c1825e;
  --ink-900: #21343a;
  --ink-700: #4f6163;
  --ink-500: #7b8582;
  --line: #d2ccc1;
  --soft: #ebe6dc;
  --white: #f7f4ed;
  --shadow: none;
  --radius-sm: 0;
  --radius: 0;
  --container: 1280px;
  --header-height: 92px;
  --transition: 210ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

html {
  background: var(--navy-950);
}

body {
  color: var(--ink-900);
  background: var(--white);
  font-family: "IBM Plex Sans", Aptos, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

::selection {
  color: var(--navy-950);
  background: var(--cyan-400);
}

:focus-visible {
  outline-color: var(--cyan-400);
}

h1,
h2,
h3,
h4 {
  font-family: "IBM Plex Sans Condensed", "Arial Narrow", sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(4rem, 7.2vw, 7.5rem);
  line-height: 0.93;
}

h2 {
  font-size: clamp(2.75rem, 5vw, 5rem);
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.06;
}

.container {
  width: min(calc(100% - 64px), var(--container));
}

.eyebrow,
.kicker,
.site-nav__list a,
.button,
.hero__rail span,
.capacity-diagram__label,
.site-footer__heading,
.form-grid label,
.contact-details span,
.inquiry-form legend {
  font-family: "IBM Plex Mono", Consolas, monospace;
}

.eyebrow {
  gap: 12px;
  color: var(--blue-600);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  background: transparent;
}

.eyebrow--light {
  color: var(--cyan-400);
}

.button {
  min-height: 54px;
  padding: 14px 21px;
  border-color: var(--blue-500);
  border-radius: 0;
  color: var(--white);
  background: var(--blue-600);
  box-shadow: none;
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.055em;
}

.button:hover {
  border-color: var(--cyan-400);
  color: var(--navy-950);
  background: var(--cyan-400);
  box-shadow: none;
  transform: translateY(-2px);
}

.button--ghost {
  border-color: rgba(247, 244, 237, 0.48);
  background: transparent;
  backdrop-filter: none;
}

.button--light {
  border-color: var(--white);
  color: var(--navy-950);
  background: var(--white);
}

.button--light:hover {
  border-color: var(--cyan-400);
  background: var(--cyan-400);
}

.text-link {
  color: var(--blue-600);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-header {
  border-bottom-color: rgba(247, 244, 237, 0.16);
  background: var(--navy-950);
  backdrop-filter: none;
}

.site-header.is-scrolled {
  border-color: rgba(247, 244, 237, 0.12);
  background: rgba(19, 40, 50, 0.96);
  box-shadow: none;
}

.brand {
  gap: 14px;
}

.brand__mark {
  position: relative;
  overflow: hidden;
  width: 64px;
  height: 52px;
  padding: 4px;
  border: 1px solid rgba(247, 244, 237, 0.3);
  border-radius: 2px;
  background: var(--white);
}

.brand__mark::after {
  display: none;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__name {
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.015em;
}

.brand__name strong {
  color: var(--cyan-400);
  font-weight: 600;
}

.site-nav {
  gap: 28px;
}

.site-nav__list {
  gap: clamp(18px, 2.2vw, 34px);
}

.site-nav__list a {
  color: rgba(247, 244, 237, 0.75);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.site-nav__list a::after {
  bottom: -15px;
  height: 1px;
  background: var(--cyan-400);
}

.hero {
  min-height: 820px;
  background:
    linear-gradient(rgba(247, 244, 237, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 237, 0.045) 1px, transparent 1px),
    var(--navy-950);
  background-size: 42px 42px;
}

.hero--home::before {
  position: absolute;
  z-index: 1;
  top: var(--header-height);
  bottom: 0;
  left: calc(50% - 38px);
  border-left: 1px solid rgba(247, 244, 237, 0.13);
  content: "";
}

.hero__media {
  right: 0;
  left: 48%;
  width: 52%;
  background-position: 58% center;
  filter: none;
  transform: none;
}

.hero__overlay {
  background:
    linear-gradient(90deg, #132832 0%, #132832 46%, rgba(19, 40, 50, 0.86) 57%, rgba(19, 40, 50, 0.2) 100%),
    linear-gradient(0deg, rgba(19, 40, 50, 0.9) 0%, transparent 42%);
}

.hero__content {
  padding-top: calc(var(--header-height) + 105px);
  padding-bottom: 174px;
}

.hero h1 {
  max-width: 750px;
  margin-bottom: 1.8rem;
  text-transform: none;
}

.hero h1 span {
  color: var(--cyan-400);
}

.hero__lead {
  max-width: 610px;
  color: rgba(247, 244, 237, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero__rail {
  border-top-color: rgba(19, 40, 50, 0.18);
  color: var(--ink-900);
  background: var(--soft);
  backdrop-filter: none;
}

.hero__rail-grid div {
  min-height: 116px;
  border-right-color: var(--line);
}

.hero__rail strong {
  color: var(--ink-900);
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
}

.hero__rail span {
  color: var(--ink-500);
  font-size: 0.67rem;
}

.page-hero {
  min-height: 600px;
  background: var(--navy-950);
}

.page-hero--solid {
  min-height: 535px;
  background:
    linear-gradient(rgba(247, 244, 237, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 237, 0.05) 1px, transparent 1px),
    var(--navy-950);
  background-size: 42px 42px;
}

.page-hero--solid::after {
  right: 8vw;
  bottom: 0;
  width: 28vw;
  height: 72%;
  border: 0;
  border-right: 1px solid rgba(193, 130, 94, 0.55);
  border-bottom: 1px solid rgba(193, 130, 94, 0.55);
  border-radius: 0;
  box-shadow: 42px 42px 0 -41px rgba(193, 130, 94, 0.35), 84px 84px 0 -83px rgba(193, 130, 94, 0.2);
}

.page-hero__media {
  right: 0;
  left: 48%;
  width: 52%;
  filter: none;
}

.page-hero__overlay {
  background: linear-gradient(90deg, #132832 0%, #132832 43%, rgba(19, 40, 50, 0.82) 57%, rgba(19, 40, 50, 0.22) 100%);
}

.page-hero__content {
  padding-bottom: 80px;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(3.5rem, 6.4vw, 6.6rem);
  text-transform: none;
}

.page-hero__content > p:not(.eyebrow) {
  color: rgba(247, 244, 237, 0.72);
  font-size: 1.08rem;
}

.section {
  position: relative;
  padding-block: clamp(90px, 10vw, 150px);
}

.section--intro {
  background: var(--white);
}

.section--soft {
  background: var(--soft);
}

.section--dark {
  background:
    linear-gradient(rgba(247, 244, 237, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 237, 0.035) 1px, transparent 1px),
    var(--navy-950);
  background-size: 42px 42px;
}

.section--navy {
  background: var(--navy-800);
}

.split {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(60px, 9vw, 130px);
}

.split--intro > div:last-child {
  padding-left: clamp(28px, 4vw, 64px);
  border-left: 1px solid var(--line);
}

.prose p,
.section-heading > p:not(.eyebrow),
.section-lead {
  color: var(--ink-700);
}

.section-heading {
  max-width: 920px;
  margin-bottom: clamp(50px, 7vw, 86px);
}

.section-heading > p:not(.eyebrow) {
  max-width: 650px;
}

.feature-split {
  position: relative;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
}

.feature-split::before {
  position: absolute;
  top: -13px;
  left: -13px;
  width: 26px;
  height: 26px;
  border-top: 1px solid var(--blue-600);
  border-left: 1px solid var(--blue-600);
  content: "";
}

.feature-split__image {
  position: relative;
  min-height: 590px;
  overflow: hidden;
}

.feature-split__image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(247, 244, 237, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 237, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  pointer-events: none;
}

.feature-split__image img,
.turbine-feature__image img,
.about-platform__image img {
  filter: none;
}

.feature-split__content {
  align-self: center;
  padding: clamp(42px, 6vw, 78px);
}

.kicker {
  color: var(--blue-600);
  font-size: 0.68rem;
  font-weight: 600;
}

.check-list {
  gap: 0;
  border-top: 1px solid var(--line);
}

.check-list li {
  padding: 11px 12px 11px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-700);
  font-size: 0.86rem;
}

.check-list li::before {
  top: 1.28em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--blue-600);
  background: transparent;
}

.turbine-feature {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.turbine-feature__content > p:not(.eyebrow) {
  color: rgba(247, 244, 237, 0.66);
}

.turbine-feature__image {
  position: relative;
  border: 1px solid rgba(247, 244, 237, 0.18);
  border-radius: 0;
  box-shadow: none;
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
}

.spec-row {
  border-color: rgba(247, 244, 237, 0.2);
}

.spec-row div {
  border-right: 1px solid rgba(247, 244, 237, 0.15);
}

.spec-row div:last-child {
  border-right: 0;
}

.spec-row strong {
  color: var(--cyan-400);
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 1.25rem;
}

.spec-row span {
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.64rem;
}

.capability-grid {
  position: relative;
  border-top: 1px solid var(--ink-900);
  border-bottom: 1px solid var(--ink-900);
}

.capability-grid::before {
  position: absolute;
  top: -5px;
  right: 0;
  left: 0;
  height: 9px;
  background: repeating-linear-gradient(90deg, var(--blue-600) 0 2px, transparent 2px calc(20% - 1px));
  content: "";
}

.capability-card {
  min-height: 370px;
  padding: 46px 25px 34px;
  border-right-color: var(--line);
  background: transparent;
  transition: color var(--transition), background var(--transition);
}

.capability-card > span,
.evaluation-grid article > span,
.value-grid article > span {
  margin-bottom: 82px;
  color: var(--blue-600);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 600;
}

.capability-card:hover {
  color: var(--navy-950);
  background: var(--cyan-400);
  transform: none;
}

.capability-card:hover p,
.capability-card:hover > span {
  color: rgba(19, 40, 50, 0.72);
}

.market-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-color: rgba(247, 244, 237, 0.18);
}

.market-grid article {
  min-height: 470px;
  padding: 42px 28px;
  border-color: rgba(247, 244, 237, 0.18);
}

.market-grid article:nth-child(even) {
  background: rgba(247, 244, 237, 0.035);
}

.market-grid article::after {
  right: 24px;
  bottom: 24px;
  width: 34px;
  height: 34px;
  border: 0;
  border-right: 1px solid rgba(193, 130, 94, 0.48);
  border-bottom: 1px solid rgba(193, 130, 94, 0.48);
  border-radius: 0;
}

.market-grid__number {
  margin-bottom: 94px;
  color: var(--cyan-400);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 600;
}

.market-grid h3 {
  font-size: 2.2rem;
}

.market-grid p,
.market-grid li {
  color: rgba(247, 244, 237, 0.63);
}

.market-grid li::before {
  color: var(--cyan-400);
}

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--ink-900);
  border-bottom: 1px solid var(--ink-900);
}

.process li {
  position: relative;
  display: block;
  min-height: 330px;
  padding: 42px 24px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.process li:last-child {
  border-right: 0;
}

.process li::before {
  position: absolute;
  top: -5px;
  left: 24px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--white);
  background: var(--blue-600);
  box-shadow: 0 0 0 1px var(--blue-600);
  content: "";
}

.process li > span {
  display: block;
  margin-bottom: 82px;
  color: var(--blue-600);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 600;
}

.process p {
  color: var(--ink-700);
  font-size: 0.86rem;
}

.why-section {
  overflow: hidden;
}

.why-section::after {
  position: absolute;
  right: -0.04em;
  bottom: -0.22em;
  color: rgba(29, 52, 64, 0.035);
  content: "AP";
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: min(42vw, 650px);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.8;
  pointer-events: none;
}

.why-section .container {
  position: relative;
  z-index: 1;
}

.why-list {
  border-top-color: var(--ink-900);
}

.why-list article {
  grid-template-columns: 185px minmax(0, 1fr);
  padding: 28px 0;
  border-bottom-color: var(--line);
}

.cta-panel {
  color: var(--navy-950);
  background: var(--blue-500);
}

.cta-panel .eyebrow--light {
  color: var(--navy-950);
}

.cta-panel .button--light {
  border-color: var(--navy-950);
  color: var(--white);
  background: var(--navy-950);
}

.cta-panel .button--light:hover {
  border-color: var(--white);
  color: var(--navy-950);
  background: var(--white);
}

.evaluation-grid,
.value-grid {
  gap: 0;
  overflow: visible;
  border: 1px solid var(--ink-900);
  border-radius: 0;
  background: transparent;
}

.evaluation-grid article,
.value-grid article {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.evaluation-grid article:nth-child(even),
.value-grid article:nth-child(even) {
  background: var(--soft);
}

.deliverable-card {
  padding: clamp(38px, 5vw, 68px);
  border-top: 1px solid var(--ink-900);
  border-right: 0;
  border-bottom: 1px solid var(--ink-900);
  border-left: 8px solid var(--blue-600);
  border-radius: 0;
  background: transparent;
}

.deliverable-card--white {
  background: var(--white);
  box-shadow: none;
}

.question-grid ul,
.comparison-stack {
  border-top-color: rgba(247, 244, 237, 0.28);
}

.question-grid li,
.comparison-stack div {
  border-bottom-color: rgba(247, 244, 237, 0.22);
}

.question-grid li span,
.comparison-stack span {
  color: var(--cyan-400);
  font-family: "IBM Plex Mono", Consolas, monospace;
}

.scope-grid {
  gap: 0;
  border: 1px solid var(--ink-900);
  background: transparent;
}

.scope-grid > div {
  position: relative;
  border-right: 1px solid var(--line);
}

.scope-grid > div::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--blue-600);
  content: "";
}

.capacity-diagram {
  gap: 18px;
}

.capacity-diagram__row {
  min-height: 94px;
  gap: 6px;
}

.capacity-block {
  border: 1px solid var(--navy-700);
  border-radius: 0;
  color: var(--white);
  background: var(--navy-800);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 500;
}

.capacity-block:nth-of-type(even) {
  background: var(--blue-600);
}

.capacity-block--more {
  border: 1px dashed var(--blue-600);
  color: var(--blue-600);
  background: transparent !important;
}

.benefit-strip span {
  padding: 9px 13px;
  border-radius: 0;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 500;
}

.mission-section {
  color: var(--navy-950);
  background: var(--cyan-400);
}

.mission-section blockquote {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 600;
}

.about-platform__image {
  border-radius: 0;
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
}

.contact-section {
  background:
    linear-gradient(rgba(29, 52, 64, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 52, 64, 0.04) 1px, transparent 1px),
    var(--soft);
  background-size: 42px 42px;
}

.contact-audience {
  border: 1px solid var(--line);
  border-left: 6px solid var(--blue-600);
  background: var(--white);
}

.inquiry-panel {
  padding: clamp(36px, 5vw, 66px);
  border: 1px solid var(--ink-900);
  border-radius: 0;
  background: var(--white);
  box-shadow: 12px 12px 0 var(--cyan-400);
}

.inquiry-form legend {
  border-bottom-color: var(--ink-900);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-grid label {
  color: var(--ink-700);
  font-size: 0.7rem;
  font-weight: 500;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  border-color: var(--line);
  border-radius: 0;
  background: #fbf9f4;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(49, 91, 112, 0.14);
}

.form-notice {
  border-left-color: var(--blue-600);
  background: var(--soft);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(247, 244, 237, 0.66);
  background: var(--navy-950);
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue-600) 0 33%, var(--cyan-400) 33% 66%, var(--soft) 66%);
  content: "";
}

.site-footer__heading {
  color: var(--cyan-400);
  font-size: 0.68rem;
  font-weight: 500;
}

.site-footer__links a:hover {
  color: var(--cyan-400);
}

.site-footer__bottom {
  border-top-color: rgba(247, 244, 237, 0.14);
}

[data-reveal] {
  transform: translateY(22px);
  transition-duration: 720ms;
}

@media (max-width: 1080px) {
  .market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process li:nth-child(3) {
    border-right: 0;
  }

  .process li:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .site-header {
    background: rgba(19, 40, 50, 0.96);
  }

  .site-nav {
    background: rgba(19, 40, 50, 0.995);
  }

  .site-nav__list a {
    font-size: 0.82rem;
  }

  .hero--home::before {
    display: none;
  }

  .hero__media,
  .page-hero__media {
    left: 0;
    width: 100%;
  }

  .hero__overlay {
    background: linear-gradient(90deg, rgba(19, 40, 50, 0.96), rgba(19, 40, 50, 0.67)), linear-gradient(0deg, rgba(19, 40, 50, 0.96), transparent 48%);
  }

  .page-hero__overlay {
    background: linear-gradient(90deg, rgba(19, 40, 50, 0.96), rgba(19, 40, 50, 0.58));
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(3.5rem, 12.5vw, 5.8rem);
  }

  .split--intro > div:last-child {
    padding-top: 32px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .process li,
  .process li:nth-child(3) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .process li:nth-child(2n) {
    border-right: 0;
  }

  .process li:last-child {
    border-bottom: 0;
  }

  .feature-split__image,
  .turbine-feature__image img,
  .about-platform__image img {
    min-height: 420px;
  }

  .inquiry-panel {
    box-shadow: 8px 8px 0 var(--cyan-400);
  }
}

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

  .brand__mark {
    width: 52px;
    height: 42px;
    padding: 3px;
  }

  .brand__name {
    font-size: 0.84rem;
  }

  .hero {
    min-height: 800px;
  }

  .hero__content {
    padding-top: 138px;
    padding-bottom: 228px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15.5vw, 4.7rem);
  }

  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

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

  .market-grid article {
    min-height: 380px;
  }

  .market-grid__number {
    margin-bottom: 62px;
  }

  .process li,
  .process li:nth-child(3),
  .process li:nth-child(2n) {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process li > span {
    margin-bottom: 42px;
  }

  .capability-card > span,
  .evaluation-grid article > span,
  .value-grid article > span {
    margin-bottom: 42px;
  }

  .inquiry-panel {
    padding: 30px 20px;
    box-shadow: 6px 6px 0 var(--cyan-400);
  }
}

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

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

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

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

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

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