:root {
  --green-950: #062016;
  --green-900: #0a321f;
  --green-800: #155b31;
  --green-600: #3a9f35;
  --green-500: #54b23f;
  --lime: #8ec63f;
  --gold: #f0c64c;
  --ink: #11211c;
  --muted: #66736e;
  --paper: #f7f8f3;
  --white: #ffffff;
  --line: rgba(17, 33, 28, 0.14);
  --shadow: 0 24px 80px rgba(7, 31, 25, 0.18);
}

@font-face {
  font-family: "Proseed Display";
  src: url("assets/fonts/IMAISOGPSNoFrame.ttf") format("truetype");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(17, 33, 28, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--green-950);
  background: var(--gold);
  font-weight: 800;
  transform: translateY(-160%);
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(7, 31, 25, 0.94);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-width: 0;
  color: var(--green-500);
}

.brand-logo {
  width: auto;
  height: 54px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 28px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.nav-links a {
  padding: 8px 0;
}

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

.menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  border: 0;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-weight: 800;
}

.menu-toggle > span:first-child,
.menu-toggle > span:first-child::before,
.menu-toggle > span:first-child::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle > span:first-child {
  position: relative;
}

.menu-toggle > span:first-child::before,
.menu-toggle > span:first-child::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle > span:first-child::before {
  top: -6px;
}

.menu-toggle > span:first-child::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] > span:first-child {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] > span:first-child::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:first-child::after {
  top: 0;
  transform: rotate(-45deg);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(7, 31, 25, 0.54);
  backdrop-filter: blur(10px);
}

.language-option {
  min-width: 32px;
  min-height: 32px;
  padding: 0 6px;
  border: 0;
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.language-option:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.language-option[aria-pressed="true"] {
  color: var(--green-950);
  background: var(--lime);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 750;
  white-space: nowrap;
}

.header-cta {
  color: var(--green-950);
  background: var(--lime);
}

.button.primary {
  color: var(--green-950);
  background: var(--lime);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

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

.js-enabled [data-reveal].is-visible {
  transform: translateY(0);
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(320px, 840px) minmax(260px, 380px);
  align-items: end;
  gap: clamp(28px, 6vw, 90px);
  padding: 132px clamp(18px, 5vw, 72px) 48px;
  color: var(--white);
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 31, 25, 0.96), rgba(7, 31, 25, 0.66) 48%, rgba(7, 31, 25, 0.2)),
    linear-gradient(0deg, rgba(7, 31, 25, 0.94), rgba(7, 31, 25, 0.04) 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  padding-bottom: min(12vh, 96px);
}

.hero-aside {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(7, 31, 25, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-aside span {
  display: block;
  margin-bottom: 18px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-aside strong {
  display: block;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 1.32rem;
  line-height: 1.18;
}

.hero-aside ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-aside li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--lime);
}

.brand-line {
  margin-bottom: 18px;
  color: var(--white);
  font-family: "Proseed Display", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 2.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-family: "Proseed Display", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 6.75rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column: 1 / -1;
  max-width: 1180px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 31, 25, 0.72);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

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

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  margin-bottom: 4px;
  color: var(--white);
  font-family: "Proseed Display", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  letter-spacing: 0.02em;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.positioning {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 0.42fr);
  align-items: stretch;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 72px);
  color: var(--green-500);
  background: var(--green-950);
}

.positioning-statement p {
  margin: 0;
  font-family: "Proseed Display", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.6rem, 7vw, 7.5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.positioning-statement span {
  display: block;
  max-width: 640px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.positioning-audience {
  align-self: end;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding-left: clamp(22px, 4vw, 46px);
}

.positioning-audience > span {
  display: block;
  margin-bottom: 24px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.positioning-audience div {
  display: grid;
  gap: 10px;
}

.positioning-audience strong {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 1.08rem;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}

.intro-copy p:last-child {
  max-width: 640px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.08rem;
}

h2 {
  margin-bottom: 0;
  color: var(--green-950);
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.band-copy p,
.assurance-copy p,
.contact p {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.intro-visual > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.delivery-orbit {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  min-height: 340px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(142, 198, 63, 0.24) 0 15%, transparent 16%),
    linear-gradient(var(--line), var(--line));
}

.delivery-orbit::before,
.delivery-orbit::after {
  content: "";
  position: absolute;
  inset: 22%;
  border: 1px solid rgba(84, 178, 63, 0.34);
  border-radius: 50%;
  pointer-events: none;
}

.delivery-orbit::after {
  inset: 35%;
  background: rgba(142, 198, 63, 0.14);
}

.delivery-orbit span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.74);
  font-weight: 900;
}

.intelligence {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 246, 231, 0.86)),
    linear-gradient(90deg, rgba(84, 178, 63, 0.12) 1px, transparent 1px) 0 0 / 54px 54px;
}

.intelligence-copy p:last-child {
  max-width: 660px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.08rem;
}

.intelligence-console {
  border: 1px solid rgba(17, 33, 28, 0.16);
  background: var(--green-950);
  color: var(--white);
  box-shadow: var(--shadow);
}

.console-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.console-header span {
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.console-header strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.console-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.console-tab {
  min-height: 46px;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.console-tab {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.console-tab:last-child {
  border-right: 0;
}

.console-tab[aria-selected="true"] {
  color: var(--green-950);
  background: var(--lime);
}

.console-body {
  position: relative;
  min-height: 360px;
  padding: clamp(26px, 4vw, 44px);
  overflow: hidden;
}

.console-body::before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(142, 198, 63, 0.32);
  border-radius: 50%;
}

.console-body::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(90deg, rgba(142, 198, 63, 0.36) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(rgba(142, 198, 63, 0.36) 1px, transparent 1px) 0 0 / 18px 18px;
}

.console-kicker {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.console-body h3 {
  position: relative;
  max-width: 680px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  line-height: 1.04;
}

.console-body p:not(.console-kicker) {
  position: relative;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.04rem;
}

.console-metrics {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 520px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.14);
}

.console-metrics div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.console-metrics span,
.console-metrics small {
  display: block;
}

.console-metrics span {
  color: var(--lime);
  font-family: "Proseed Display", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 2rem;
}

.console-metrics small {
  color: rgba(255, 255, 255, 0.7);
}

.console-signal {
  position: relative;
  max-width: 520px;
  height: 9px;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.16);
}

.console-signal span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--lime), var(--gold));
  transition: width 300ms ease;
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.04rem;
}

.references {
  background:
    linear-gradient(180deg, #ffffff, #f4f7ef);
}

.name-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 32, 22, 0.96), rgba(21, 91, 49, 0.88)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=72") center / cover;
}

.name-story h2 {
  color: var(--white);
}

.name-story > p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.1rem, 1.8vw, 1.42rem);
}

.text-link {
  display: inline-block;
  margin-left: 0.35em;
  color: var(--lime);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reference-compact {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: end;
  margin-bottom: 30px;
}

.reference-footprint {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--green-950);
}

.reference-footprint div {
  padding: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.reference-footprint div:last-child {
  border-bottom: 0;
}

.reference-footprint strong,
.reference-footprint span {
  display: block;
}

.reference-footprint strong {
  color: var(--white);
  font-size: 1.15rem;
}

.reference-footprint span {
  color: rgba(255, 255, 255, 0.72);
}

.reference-atlas {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(320px, 1fr);
  gap: 1px;
  border: 1px solid rgba(17, 33, 28, 0.18);
  background: rgba(17, 33, 28, 0.18);
  box-shadow: 0 24px 72px rgba(7, 31, 25, 0.14);
}

.atlas-panel {
  position: relative;
  min-height: 480px;
  padding: clamp(28px, 4vw, 42px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 32, 22, 0.96), rgba(10, 50, 31, 0.9)),
    linear-gradient(90deg, rgba(142, 198, 63, 0.16) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(rgba(142, 198, 63, 0.16) 1px, transparent 1px) 0 0 / 44px 44px;
}

.atlas-label {
  margin-bottom: 22px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.atlas-panel strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Proseed Display", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 0.96;
}

.atlas-panel > span {
  display: block;
  max-width: 330px;
  color: rgba(255, 255, 255, 0.72);
}

.atlas-grid {
  position: absolute;
  left: clamp(28px, 4vw, 42px);
  right: clamp(28px, 4vw, 42px);
  bottom: clamp(28px, 4vw, 42px);
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px) 0 0 / 38px 38px;
}

.atlas-grid::before,
.atlas-grid::after {
  content: "";
  position: absolute;
  background: rgba(142, 198, 63, 0.42);
  transform-origin: left center;
}

.atlas-grid::before {
  left: 23%;
  top: 48%;
  width: 54%;
  height: 1px;
  transform: rotate(-12deg);
}

.atlas-grid::after {
  left: 42%;
  top: 58%;
  width: 35%;
  height: 1px;
  transform: rotate(28deg);
}

.map-point {
  position: absolute;
  z-index: 1;
  width: 12px;
  height: 12px;
  border: 2px solid var(--green-950);
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(142, 198, 63, 0.18);
}

.point-sweden {
  left: 56%;
  top: 18%;
}

.point-ireland {
  left: 18%;
  top: 42%;
}

.point-germany {
  left: 52%;
  top: 48%;
}

.point-poland {
  left: 66%;
  top: 44%;
}

.point-italy {
  left: 56%;
  top: 72%;
}

.reference-markets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(17, 33, 28, 0.14);
}

.market-card {
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.92);
}

.market-card-large {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 232, 0.94));
}

.market-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.market-head > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--green-950);
  background: var(--lime);
  font-family: "Proseed Display", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.market-head strong,
.market-head small {
  display: block;
}

.market-head strong {
  color: var(--green-950);
  font-size: 1.35rem;
  line-height: 1.05;
}

.market-head small {
  margin-top: 4px;
  color: var(--green-600);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.market-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
  border: 0;
}

.service-card {
  min-height: 270px;
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 36px);
  background: var(--white);
}

.service-card:hover {
  background: #fbfcf4;
}

.service-number {
  display: block;
  margin-bottom: 50px;
  color: var(--green-500);
  font-family: "Proseed Display", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.service-card h3,
.timeline h3 {
  margin-bottom: 12px;
  color: var(--green-900);
  font-size: 1.28rem;
  line-height: 1.2;
}

.service-card p,
.timeline p,
.assurance-list span,
.heritage-card p,
.site-footer span {
  color: var(--muted);
}

.machinery {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 88px);
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 32, 22, 0.98), rgba(10, 50, 31, 0.88)),
    linear-gradient(90deg, rgba(142, 198, 63, 0.18) 1px, transparent 1px) 0 0 / 64px 64px;
}

.machinery h2,
.machinery p {
  color: var(--white);
}

.machinery-copy p:last-child {
  max-width: 690px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.machinery-grid {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.14);
}

.machinery-grid div {
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.06);
}

.machinery-grid span {
  display: block;
  margin-bottom: 30px;
  color: var(--gold);
  font-family: "Proseed Display", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.28rem;
}

.machinery-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.16rem;
}

.machinery-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.image-band {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 620px;
  background: var(--green-950);
}

.image-band img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.band-copy {
  align-self: center;
  padding: clamp(42px, 7vw, 92px);
}

.band-copy h2,
.band-copy p {
  color: var(--white);
}

.band-copy p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.delivery {
  background: var(--white);
}

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

.timeline article {
  min-height: 280px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}

.timeline article:last-child {
  border-right: 0;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 56px;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--gold);
  font-family: "Proseed Display", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
}

.assurance {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 96px);
  background: #eef3e7;
}

.assurance-list {
  display: grid;
  gap: 1px;
  background: rgba(17, 33, 28, 0.16);
  border: 1px solid rgba(17, 33, 28, 0.12);
  box-shadow: var(--shadow);
}

.assurance-list div {
  padding: 26px;
  background: var(--white);
}

.assurance-list strong,
.assurance-list span {
  display: block;
}

.assurance-list strong {
  margin-bottom: 6px;
  color: var(--green-900);
  font-size: 1.05rem;
}

.heritage {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.72fr);
  gap: 1px;
  padding: clamp(18px, 5vw, 72px);
  background: var(--green-950);
}

.heritage-card,
.heritage-facts {
  background: var(--green-900);
}

.heritage-card {
  padding: clamp(34px, 6vw, 74px);
}

.heritage-card h2,
.heritage-card p {
  color: var(--white);
}

.heritage-card p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
}

.heritage-facts {
  display: grid;
  align-content: stretch;
}

.heritage-facts div {
  padding: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.heritage-facts div:last-child {
  border-bottom: 0;
}

.heritage-facts span,
.heritage-facts strong {
  display: block;
}

.heritage-facts span {
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.heritage-facts strong {
  color: var(--white);
  font-size: 1.3rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(rgba(247, 248, 243, 0.92), rgba(247, 248, 243, 0.96)),
    url("https://images.unsplash.com/photo-1466611653911-95081537e5b7?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--green-900);
  font-size: 0.82rem;
  font-weight: 800;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcf8;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green-800);
  font-weight: 800;
}

.form-status.is-error {
  color: #9b2c2c;
}

.form-privacy {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.form-privacy a {
  color: var(--green-800);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.turnstile-widget {
  min-height: 68px;
  max-width: 100%;
  overflow-x: auto;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--green-950);
}

.site-footer strong,
.site-footer span {
  display: block;
}

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

.site-footer a {
  color: var(--lime);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px 22px;
}

.tax-number {
  margin-top: 4px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    background: rgba(7, 31, 25, 0.94);
    backdrop-filter: blur(14px);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px clamp(18px, 4vw, 56px) 22px;
    background: rgba(7, 31, 25, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .nav-links.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions {
    justify-self: end;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 860px;
  }

  .hero-aside {
    align-self: stretch;
  }

  .hero-panel,
  .reference-compact,
  .reference-atlas,
  .reference-markets,
  .capability-grid,
  .timeline,
  .intro,
  .intelligence,
  .machinery,
  .name-story,
  .image-band,
  .assurance,
  .heritage,
  .contact,
  .positioning {
    grid-template-columns: 1fr;
  }

  .positioning-audience {
    border-left: 0;
    padding-left: 0;
  }

  .hero-panel div,
  .timeline article {
    border-right: 0;
  }

  .hero-panel div {
    border-bottom: 1px solid rgba(17, 33, 28, 0.14);
  }

  .hero-panel div {
    border-bottom-color: rgba(255, 255, 255, 0.14);
  }

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

  .timeline article {
    min-height: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-areas:
      "brand menu"
      "actions actions";
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 12px 16px;
  }

  .brand {
    grid-area: brand;
  }

  .brand-logo {
    height: 46px;
  }

  .menu-toggle {
    grid-area: menu;
    justify-self: end;
  }

  .header-actions {
    grid-area: actions;
    justify-self: stretch;
    width: 100%;
  }

  .language-switcher {
    flex: 1 1 auto;
  }

  .language-option {
    flex: 1 1 0;
    min-width: 0;
    min-height: 30px;
    padding-inline: 3px;
    font-size: 0.65rem;
  }

  .menu-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }

  .header-cta {
    flex: 0 0 auto;
    min-height: 40px;
    padding-inline: 10px;
    font-size: 0.76rem;
  }

  .hero {
    min-height: 900px;
    padding: 158px 16px 28px;
  }

  h1 {
    font-size: 3.05rem;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

  .section,
  .contact,
  .heritage {
    padding-inline: 16px;
  }

  .service-card {
    min-height: 0;
  }

  .service-number {
    margin-bottom: 34px;
  }

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

  .console-tabs,
  .console-metrics {
    grid-template-columns: 1fr;
  }

  .atlas-panel {
    min-height: 420px;
  }

  .market-card-large {
    grid-column: auto;
  }

  .console-tab {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .console-tab:last-child {
    border-bottom: 0;
  }
}

@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;
  }

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