:root {
  --ink: #07130f;
  --deep: #071a13;
  --green: #123a28;
  --lime: #c9ff3e;
  --cream: #f3f1e9;
  --paper: #f7f6f0;
  --muted: #67716d;
  --line: rgba(7, 19, 15, 0.14);
  --white: #fff;
  --shadow: 0 30px 80px rgba(5, 20, 14, 0.16);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, sans-serif;
  overflow-x: hidden;
}
button,
input {
  font: inherit;
}
button,
a {
  cursor: pointer;
}
.page-progress {
  position: fixed;
  z-index: 300;
  left: 0;
  top: 0;
  height: 2px;
  width: 0;
  background: var(--lime);
}
#ambientCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}
.cursor-orb {
  position: fixed;
  z-index: 250;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(201, 255, 62, 0.12),
    transparent 66%
  );
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
}
.site-header {
  position: fixed;
  z-index: 200;
  left: 34px;
  right: 34px;
  top: 24px;
  height: 72px;
  padding: 0 18px 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  background: rgba(6, 18, 13, 0.45);
  backdrop-filter: blur(18px);
  transition: 0.35s;
}
.site-header.scrolled {
  top: 12px;
  background: rgba(6, 18, 13, 0.92);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.2);
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.brand-symbol {
  width: 29px;
  height: 30px;
  display: flex;
  gap: 3px;
  align-items: flex-end;
}
.brand-symbol i {
  display: block;
  width: 7px;
  background: var(--lime);
  transform: skew(-15deg);
  border-radius: 2px;
}
.brand-symbol i:nth-child(1) {
  height: 14px;
}
.brand-symbol i:nth-child(2) {
  height: 23px;
}
.brand-symbol i:nth-child(3) {
  height: 30px;
}
.brand-name {
  font: 700 19px/1 Space Grotesk;
  letter-spacing: 0.04em;
}
.brand-name small {
  display: block;
  font: 600 6px/1.8 Manrope;
  letter-spacing: 0.28em;
  opacity: 0.62;
}
.desktop-nav {
  display: flex;
  gap: 34px;
}
.desktop-nav a,
.quiet-link {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  transition: 0.25s;
}
.desktop-nav a:hover,
.quiet-link:hover {
  color: var(--lime);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-cta {
  border: 0;
  border-radius: 11px;
  background: var(--lime);
  color: var(--ink);
  padding: 13px 17px;
  font-size: 10px;
  font-weight: 800;
}
.header-cta span {
  margin-left: 17px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
}
.mobile-menu {
  display: none;
}
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  background: radial-gradient(
    circle at 76% 35%,
    #194833 0,
    #0b251a 31%,
    #06130e 68%
  );
  color: white;
  overflow: hidden;
  padding: 150px 6.5% 56px;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent);
}
.hero-halo {
  position: absolute;
  border: 1px solid rgba(201, 255, 62, 0.16);
  border-radius: 50%;
}
.halo-a {
  width: 780px;
  height: 780px;
  right: -180px;
  top: -120px;
}
.halo-b {
  width: 520px;
  height: 520px;
  right: -50px;
  top: 10px;
}
.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 720px;
}
.live-label {
  font-size: 9px;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  gap: 9px;
  align-items: center;
}
.live-label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px var(--lime);
  animation: pulse 1.8s infinite;
}
.hero h1,
.section h2,
.network h2,
.story h2 {
  font: 600 clamp(64px, 7.6vw, 125px) / 0.9 Space Grotesk;
  margin: 35px 0 26px;
  letter-spacing: -0.07em;
}
.hero h1 em,
.section h2 em {
  color: var(--lime);
  font-style: normal;
}
.hero-copy > p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}
.btn {
  border: 0;
  border-radius: 999px;
  padding: 17px 22px;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  gap: 25px;
  align-items: center;
}
.btn-primary {
  background: var(--lime);
  color: var(--ink);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.play {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  color: var(--ink);
  font-size: 8px;
}
.journey-stage {
  position: relative;
  z-index: 3;
  height: 680px;
  perspective: 1100px;
  transform-style: preserve-3d;
}
.station {
  position: absolute;
  width: 710px;
  height: 440px;
  left: 49%;
  top: 52%;
  transform: translate(-50%, -50%) rotateX(8deg) rotateY(-9deg);
  transition: transform 0.2s ease;
}
.canopy {
  position: absolute;
  left: 70px;
  top: 50px;
  width: 520px;
  height: 62px;
  background: linear-gradient(120deg, #eef2ed, #aab9af);
  clip-path: polygon(4% 0, 100% 0, 95% 100%, 0 100%);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.25);
  z-index: 6;
}
.canopy:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: var(--lime);
  box-shadow: 0 0 28px rgba(201, 255, 62, 0.75);
}
.canopy span {
  position: absolute;
  right: 35px;
  top: 18px;
  color: #133425;
  font: 700 18px Space Grotesk;
  letter-spacing: 0.08em;
}
.canopy i {
  position: absolute;
  inset: 10px 80px 20px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.75),
    transparent
  );
  animation: sweep 5s infinite;
}
.canopy-post {
  position: absolute;
  top: 110px;
  width: 25px;
  height: 180px;
  background: linear-gradient(90deg, #829188, #dce5df, #75877d);
  z-index: 2;
}
.p-left {
  left: 112px;
}
.p-right {
  left: 530px;
}
.shop {
  position: absolute;
  left: 98px;
  top: 184px;
  width: 475px;
  height: 178px;
  background: #11291f;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}
.shop-band {
  height: 34px;
  background: #eff3ed;
  color: #173b2a;
  display: grid;
  place-items: center;
  font: 700 11px Space Grotesk;
  letter-spacing: 0.22em;
}
.shop-window {
  height: 112px;
  margin: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.shop-window i {
  background: linear-gradient(160deg, #8fd1bd, #19382e);
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: hidden;
}
.shop-window i:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.35),
    transparent 60%
  );
  animation: sweep 7s infinite;
}
.pump {
  position: absolute;
  left: 285px;
  top: 166px;
  width: 86px;
  height: 166px;
  background: linear-gradient(100deg, #e7ece8, #87978e);
  z-index: 8;
  border-radius: 7px 7px 3px 3px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}
.pump-brand {
  height: 31px;
  background: #113728;
  color: var(--lime);
  font: 700 19px Space Grotesk;
  display: grid;
  place-items: center;
}
.pump-display {
  margin: 12px 10px;
  padding: 8px;
  background: #07130f;
  color: #d5ff62;
  border-radius: 3px;
}
.pump-display small {
  display: block;
  font-size: 5px;
  letter-spacing: 0.15em;
}
.pump-display strong {
  font: 600 12px Space Grotesk;
}
.pump-side {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 14px;
  height: 45px;
  border: 1px solid rgba(17, 55, 40, 0.4);
}
.hose {
  position: absolute;
  z-index: 12;
  left: 356px;
  top: 202px;
  width: 180px;
  height: 125px;
}
.hose-line {
  position: absolute;
  width: 145px;
  height: 105px;
  border: 7px solid #101815;
  border-left-color: transparent;
  border-top-color: transparent;
  border-radius: 50%;
  transform: rotate(15deg);
}
.nozzle {
  position: absolute;
  right: -5px;
  bottom: 3px;
  width: 50px;
  height: 17px;
  background: #25322d;
  border-radius: 7px;
  transform: rotate(-10deg);
  transform-origin: left center;
  animation: nozzle 6s ease-in-out infinite;
}
.nozzle:before {
  content: "";
  position: absolute;
  right: -16px;
  top: 5px;
  width: 21px;
  height: 6px;
  background: #a9b3ad;
}
.nozzle i {
  position: absolute;
  left: 8px;
  top: 14px;
  width: 17px;
  height: 22px;
  border: 5px solid #25322d;
  border-top: 0;
  transform: skew(-12deg);
}
.car {
  position: absolute;
  z-index: 10;
  left: 350px;
  top: 284px;
  width: 300px;
  height: 108px;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.car-shadow {
  position: absolute;
  left: 25px;
  right: 10px;
  bottom: 1px;
  height: 25px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  filter: blur(9px);
}
.car-shell {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 62px;
  border-radius: 55px 75px 18px 18px;
  background: linear-gradient(150deg, #e4ebe6, #70827a 55%, #24342e);
  clip-path: polygon(
    2% 42%,
    18% 18%,
    50% 10%,
    65% 0,
    82% 5%,
    98% 43%,
    100% 82%,
    90% 100%,
    10% 100%,
    0 78%
  );
}
.car-roof {
  position: absolute;
  left: 98px;
  top: 8px;
  width: 122px;
  height: 43px;
  background: linear-gradient(130deg, #dfe8e2, #52655d);
  clip-path: polygon(20% 0, 76% 0, 100% 100%, 0 100%);
}
.car-glass {
  position: absolute;
  left: 112px;
  top: 15px;
  width: 96px;
  height: 31px;
  background: linear-gradient(145deg, #8cb3a4, #12271f);
  clip-path: polygon(12% 0, 75% 0, 100% 100%, 0 100%);
}
.wheel {
  position: absolute;
  bottom: 7px;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background: #101612;
  border: 6px solid #26332e;
  box-shadow: inset 0 0 0 5px #849087;
}
.wheel i {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #bec9c2;
  margin: 14px;
}
.wheel-a {
  left: 50px;
}
.wheel-b {
  right: 38px;
}
.car-light {
  position: absolute;
  bottom: 45px;
  width: 22px;
  height: 9px;
  border-radius: 6px;
}
.front {
  right: 4px;
  background: #f1ffb4;
  box-shadow: 18px 0 30px #e5ff7b;
}
.rear {
  left: 4px;
  background: #ff5f55;
}
.fuel-port {
  position: absolute;
  right: 48px;
  top: 50px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #18241f;
  box-shadow: 0 0 0 2px #92a199;
}
.energy-flow {
  position: absolute;
  z-index: 15;
  left: 520px;
  top: 325px;
  width: 110px;
  height: 50px;
}
.energy-flow i {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  opacity: 0;
  animation: energy 2s infinite;
}
.energy-flow i:nth-child(2) {
  animation-delay: 0.4s;
}
.energy-flow i:nth-child(3) {
  animation-delay: 0.8s;
}
.energy-flow i:nth-child(4) {
  animation-delay: 1.2s;
}
.road {
  position: absolute;
  left: 10px;
  right: 0;
  bottom: 18px;
  height: 92px;
  background: linear-gradient(#17231f, #0d1713);
  transform: skewX(-7deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.road i {
  position: absolute;
  top: 48px;
  width: 90px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
}
.road i:nth-child(1) {
  left: 80px;
}
.road i:nth-child(2) {
  left: 270px;
}
.road i:nth-child(3) {
  left: 470px;
}
.stage-card {
  position: absolute;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 18, 13, 0.52);
  backdrop-filter: blur(12px);
  border-radius: 10px;
  color: white;
}
.stage-card small {
  display: block;
  font-size: 6px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}
.stage-card strong {
  font: 600 10px Space Grotesk;
}
.stage-card strong i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  margin-right: 6px;
}
.card-status {
  right: 4%;
  top: 17%;
}
.card-hours {
  left: 4%;
  bottom: 23%;
}
.journey-caption {
  position: absolute;
  right: 3%;
  bottom: 8%;
  display: flex;
  gap: 15px;
  align-items: center;
}
.journey-caption span {
  font: 700 45px Space Grotesk;
  color: var(--lime);
}
.journey-caption p {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}
.hero-bottom {
  position: absolute;
  left: 6.5%;
  right: 6.5%;
  bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 8px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.4);
}
.scroll-cue span {
  width: 1px;
  height: 35px;
  background: linear-gradient(var(--lime), transparent);
}
.partner-line {
  display: flex;
  gap: 25px;
  align-items: center;
}
.partner-line small {
  font-size: 7px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
}
.partner-line b {
  font: 600 11px Space Grotesk;
  color: rgba(255, 255, 255, 0.6);
}
.metric-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 42px 6.5%;
  background: var(--cream);
}
.metric-rail article {
  padding: 7px 28px;
  border-right: 1px solid var(--line);
}
.metric-rail article:last-child {
  border: 0;
}
.metric-rail strong {
  font: 600 34px Space Grotesk;
  letter-spacing: -0.04em;
}
.metric-rail p {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.section {
  position: relative;
  z-index: 2;
  padding: 140px 6.5%;
}
.section-head {
  display: grid;
  grid-template-columns: 0.55fr 1.3fr 0.7fr;
  gap: 45px;
  align-items: start;
}
.section-code {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #496157;
}
.section-code span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  margin-right: 10px;
}
.section-code.light {
  color: rgba(255, 255, 255, 0.58);
}
.section h2,
.network h2,
.story h2 {
  font-size: clamp(52px, 6.4vw, 96px);
  margin: 0;
}
.section-head > p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  padding-top: 15px;
}
.experience-cards {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.experience-card {
  position: relative;
  min-height: 510px;
  padding: 25px;
  background: #0b2b1e center / cover no-repeat;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(7, 19, 15, 0.08);
  transition: 0.45s;
}
/* Scrim over the photograph: dark at the top for the index label, dark at the
   foot for the heading and link, and open through the middle so the picture
   still reads. */
.experience-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(6, 20, 15, 0.6) 0,
    rgba(6, 20, 15, 0.12) 26%,
    rgba(6, 20, 15, 0.52) 60%,
    rgba(6, 20, 15, 0.9) 100%
  );
}
.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.card-energy {
  grid-column: span 6;
  background-image: url("assets/experience/energy.webp");
}
.card-food,
.card-retail {
  grid-column: span 3;
}
.card-food {
  background-image: url("assets/experience/food-to-go.webp");
}
.card-retail {
  background-image: url("assets/experience/convenience.webp");
}
.card-care {
  grid-column: span 12;
  min-height: 430px;
  background-image: url("assets/experience/vehicle-care.webp");
  background-position: 62% center;
}
.card-index {
  position: relative;
  z-index: 4;
  font-size: 8px;
  letter-spacing: 0.15em;
  font-weight: 800;
  opacity: 0.78;
}
.card-copy {
  margin-top: auto;
  position: relative;
  z-index: 4;
  max-width: 430px;
}
.card-copy h3 {
  font: 600 31px/1.05 Space Grotesk;
  letter-spacing: -0.04em;
  margin: 0 0 15px;
}
.card-copy p {
  font-size: 12px;
  line-height: 1.7;
  opacity: 0.8;
}
.experience-card > a {
  position: relative;
  z-index: 4;
  margin-top: 18px;
  color: inherit;
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
}
.energy-core {
  position: absolute;
  left: 50%;
  top: 41%;
  width: 210px;
  height: 210px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle,
    #d5ff70 0,
    #57c566 28%,
    rgba(48, 156, 87, 0.25) 48%,
    transparent 70%
  );
  box-shadow: 0 0 80px rgba(201, 255, 62, 0.22);
}
.energy-core span {
  font: 700 55px Space Grotesk;
  color: #0c3b27;
}
.energy-core i {
  position: absolute;
  inset: -28px;
  border: 1px solid rgba(201, 255, 62, 0.25);
  border-radius: 50%;
  animation: spin 13s linear infinite;
}
.energy-core i:nth-child(2) {
  inset: -62px;
  animation-direction: reverse;
  animation-duration: 20s;
}
.coffee-scene {
  position: absolute;
  inset: 80px 20px auto;
  height: 240px;
  display: grid;
  place-items: center;
}
.cup {
  width: 110px;
  height: 130px;
  border-radius: 8px 8px 35px 35px;
  background: #153629;
  color: var(--lime);
  display: grid;
  place-items: center;
  font: 700 32px Space Grotesk;
  box-shadow: 20px 25px 40px rgba(8, 28, 20, 0.18);
}
.cup:after {
  content: "";
  position: absolute;
  width: 42px;
  height: 50px;
  border: 12px solid #153629;
  border-left: 0;
  border-radius: 0 28px 28px 0;
  transform: translate(63px, 4px);
}
.coffee-scene i {
  position: absolute;
  width: 24px;
  height: 75px;
  border-left: 2px solid rgba(20, 52, 39, 0.35);
  border-radius: 50%;
  top: 5px;
  animation: steam 2.8s infinite;
}
.coffee-scene i:nth-of-type(2) {
  margin-left: 30px;
  animation-delay: 0.7s;
}
.coffee-scene i:nth-of-type(3) {
  margin-left: -30px;
  animation-delay: 1.3s;
}
.retail-orbit {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 1px solid rgba(8, 36, 25, 0.14);
  display: grid;
  place-items: center;
}
.retail-orbit span {
  font: 600 45px Space Grotesk;
}
.retail-orbit i {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #153a29;
}
.retail-orbit i:nth-child(2) {
  top: 3px;
  left: 30px;
}
.retail-orbit i:nth-child(3) {
  right: -8px;
  top: 90px;
  background: var(--lime);
}
.retail-orbit i:nth-child(4) {
  left: 25px;
  bottom: 5px;
  background: #8bb3a2;
}
.wash-scene {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 300px;
}
.wash-frame {
  position: absolute;
  inset: 15px 50px;
  border: 28px solid #1c4a36;
  border-bottom: 0;
  border-radius: 130px 130px 0 0;
}
.wash-car {
  position: absolute;
  left: 105px;
  right: 70px;
  bottom: 35px;
  height: 80px;
  background: #eff5f1;
  clip-path: polygon(
    0 50%,
    15% 18%,
    50% 10%,
    68% 0,
    85% 8%,
    100% 52%,
    95% 100%,
    5% 100%
  );
  border-radius: 35px;
}
.wash-scene > i {
  position: absolute;
  top: 30px;
  width: 3px;
  height: 110px;
  background: linear-gradient(#66d6e4, transparent);
  animation: rain 1.8s infinite;
}
.wash-scene > i:nth-of-type(1) {
  left: 145px;
}
.wash-scene > i:nth-of-type(2) {
  left: 245px;
  animation-delay: 0.5s;
}
.wash-scene > i:nth-of-type(3) {
  right: 110px;
  animation-delay: 1s;
}

/* The photographs replace the drawn scenes these cards used to carry. */
.energy-core,
.coffee-scene,
.retail-orbit,
.wash-scene {
  display: none;
}
.network {
  position: relative;
  z-index: 2;
  min-height: 860px;
  background: #071a13;
  color: white;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 40px;
  padding: 110px 4% 110px 6.5%;
  overflow: hidden;
}
.network-copy {
  padding-top: 35px;
}
.network h2 {
  margin: 32px 0 24px;
}
.network-copy > p {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.8;
}
.locator {
  margin-top: 45px;
  max-width: 500px;
}
.locator label {
  display: block;
  font-size: 7px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 9px;
}
.locator > div {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.locator input {
  flex: 1;
  background: none;
  border: 0;
  outline: none;
  color: white;
  padding: 14px 0;
  font-size: 17px;
}
.locator button {
  width: 48px;
  background: none;
  border: 0;
  color: var(--lime);
  font-size: 22px;
}
.location-tags {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.location-tags span {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.35);
}
.location-tags button {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 8px;
}
.network-facts {
  display: flex;
  gap: 60px;
  margin-top: 65px;
}
.network-facts div {
  display: flex;
  flex-direction: column;
}
.network-facts strong {
  font: 600 32px Space Grotesk;
  color: var(--lime);
}
.network-facts small {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.42);
}
.map-world {
  position: relative;
  min-height: 650px;
  border-radius: 32px;
  background: radial-gradient(circle at 55% 45%, #224d39, #0e2b20 55%, #091a14);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.map-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  transform: perspective(500px) rotateX(15deg) scale(1.3);
}
.map-road {
  position: absolute;
  height: 2px;
  background: rgba(201, 255, 62, 0.18);
  transform-origin: left;
}
.road-one {
  width: 75%;
  left: 10%;
  top: 35%;
  transform: rotate(24deg);
}
.road-two {
  width: 65%;
  left: 20%;
  top: 62%;
  transform: rotate(-19deg);
}
.road-three {
  width: 52%;
  left: 35%;
  top: 15%;
  transform: rotate(70deg);
}
.map-pin {
  position: absolute;
  background: none;
  border: 0;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
}
.map-pin i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--lime);
  border: 4px solid #1c4735;
  box-shadow: 0 0 0 0 rgba(201, 255, 62, 0.45);
  animation: pinPulse 2s infinite;
}
.map-pin.active i {
  width: 20px;
  height: 20px;
  border-width: 6px;
}
.pin-leeds {
  left: 46%;
  top: 37%;
}
.pin-york {
  left: 67%;
  top: 27%;
}
.pin-sheffield {
  left: 38%;
  top: 54%;
}
.pin-birmingham {
  left: 24%;
  top: 70%;
}
.pin-stockton {
  left: 72%;
  top: 13%;
}
.selected-site {
  position: absolute;
  left: 25px;
  bottom: 25px;
  width: 330px;
  padding: 20px;
  background: rgba(4, 17, 12, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  backdrop-filter: blur(18px);
}
.selected-site small {
  display: block;
  font-size: 6px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.4);
}
.selected-site strong {
  display: block;
  font: 600 18px Space Grotesk;
  margin: 8px 0;
}
.selected-site span {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
}
.selected-site button {
  display: block;
  margin-top: 18px;
  background: none;
  border: 0;
  padding: 0;
  color: var(--lime);
  font-size: 9px;
}
.map-radar {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 255, 62, 0.22);
}
.map-radar i {
  position: absolute;
  border: 1px solid rgba(201, 255, 62, 0.15);
  border-radius: 50%;
  inset: 22px;
}
.map-radar i:nth-child(2) {
  inset: 44px;
}
.map-radar i:nth-child(3) {
  inset: 0;
  border-top-color: var(--lime);
  animation: spin 5s linear infinite;
}
.map-radar span {
  font-size: 6px;
  letter-spacing: 0.13em;
  color: var(--lime);
}
.impact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
  min-height: 760px;
}
.impact-visual {
  position: relative;
  height: 540px;
  display: grid;
  place-items: center;
}
.solar-globe {
  position: relative;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: url("assets/impact/lighter-footprint.webp") center / cover
    no-repeat;
  box-shadow: 0 44px 90px rgba(16, 66, 43, 0.32);
  display: grid;
  place-items: center;
  overflow: hidden;
}
/* Scrim over the solar-canopy photograph: darkens the middle so the kWh
   figure stays readable, and deepens the rim so the circle keeps its edge
   against the pale section background. */
.globe-grid {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 48%,
    rgba(6, 20, 15, 0.58) 0,
    rgba(6, 20, 15, 0.24) 46%,
    rgba(6, 20, 15, 0.5) 100%
  );
}
.globe-light {
  display: none;
}
.solar-globe span {
  position: relative;
  color: white;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}
.solar-globe strong {
  display: block;
  font: 600 42px Space Grotesk;
}
.solar-globe small {
  font-size: 7px;
  letter-spacing: 0.13em;
}
.orbit-copy {
  position: absolute;
  font: 700 9px Space Grotesk;
  letter-spacing: 0.22em;
  color: #315c49;
}
.orbit-copy-a {
  left: 7%;
  top: 24%;
}
.orbit-copy-b {
  right: 6%;
  bottom: 23%;
}
.impact-copy > p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 570px;
}
.impact-stats {
  display: flex;
  gap: 60px;
  margin: 40px 0;
}
.impact-stats div {
  display: flex;
  flex-direction: column;
}
.impact-stats strong {
  font: 600 30px Space Grotesk;
}
.impact-stats span {
  font-size: 8px;
  color: var(--muted);
  margin-top: 5px;
}
.text-arrow {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 8px;
  font-size: 10px;
  font-weight: 800;
}
.text-arrow span {
  margin-left: 25px;
}
.story {
  position: relative;
  z-index: 2;
  min-height: 880px;
  color: white;
  padding: 150px 6.5%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.story-image {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?auto=format&fit=crop&w=2000&q=85")
    center/cover;
}
.story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #06130f 0,
    rgba(6, 19, 15, 0.9) 35%,
    rgba(6, 19, 15, 0.35) 72%,
    rgba(6, 19, 15, 0.08)
  );
}
.story-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.story h2 {
  margin: 38px 0 25px;
}
.story-copy p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 35px;
}
.btn-light {
  background: white;
  color: var(--ink);
}
.timeline {
  position: absolute;
  z-index: 2;
  right: 6%;
  bottom: 75px;
  display: flex;
}
.timeline article {
  position: relative;
  width: 160px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.timeline article:before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}
.timeline strong {
  display: block;
  font: 600 17px Space Grotesk;
  color: var(--lime);
}
.timeline span {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.08em;
}
.careers {
  overflow: hidden;
}
.marquee {
  font: 600 100px/0.9 Space Grotesk;
  letter-spacing: -0.06em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(7, 19, 15, 0.16);
  transform: rotate(-2deg);
  margin: -20px -7% 100px;
}
.marquee span {
  display: block;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
}
.career-action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 60px;
}
.career-action p {
  max-width: 330px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}
.round-cta {
  flex: 0 0 160px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  transition: 0.35s;
}
.round-cta b {
  font-size: 22px;
  margin-top: 8px;
}
.round-cta:hover {
  transform: rotate(8deg) scale(1.05);
}
footer {
  position: relative;
  z-index: 2;
  background: #05100c;
  color: white;
  padding: 85px 6.5% 26px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 55px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-top p {
  font: 500 27px/1.2 Space Grotesk;
  color: rgba(255, 255, 255, 0.52);
  text-align: right;
  margin: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 0.7fr 1.4fr;
  gap: 45px;
  padding: 55px 0;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-grid small {
  font-size: 7px;
  letter-spacing: 0.17em;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 10px;
}
.footer-grid a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 11px;
}
.newsletter p {
  font: 500 18px Space Grotesk;
  margin: 0;
}
.newsletter form {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.newsletter input {
  flex: 1;
  background: none;
  border: 0;
  outline: none;
  color: white;
  padding: 16px 0;
}
.newsletter button {
  background: none;
  border: 0;
  color: var(--lime);
  font-size: 20px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 8px;
  color: rgba(255, 255, 255, 0.34);
}
.footer-bottom a {
  color: inherit;
  text-decoration: none;
}
.toast {
  position: fixed;
  z-index: 400;
  left: 50%;
  bottom: 25px;
  transform: translate(-50%, 120px);
  padding: 14px 20px;
  border-radius: 12px;
  background: #0b2118;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 10px;
  transition: 0.35s;
}
.toast.show {
  transform: translate(-50%, 0);
}
.journey-modal {
  position: fixed;
  z-index: 500;
  inset: 0;
  background: rgba(4, 15, 11, 0.96);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
}
.journey-modal.open {
  opacity: 1;
  visibility: visible;
}
.journey-modal > button:first-child {
  position: absolute;
  right: 30px;
  top: 25px;
  border: 0;
  background: none;
  color: white;
  font-size: 38px;
}
.journey-modal small {
  font-size: 8px;
  letter-spacing: 0.18em;
  color: var(--lime);
}
.journey-modal h2 {
  font: 600 clamp(55px, 8vw, 110px) / 0.92 Space Grotesk;
  letter-spacing: -0.06em;
  max-width: 950px;
  margin: 30px 0 20px;
}
.journey-modal p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.8;
}
.modal-progress {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 90px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
}
.modal-progress i {
  display: block;
  height: 100%;
  width: 25%;
  background: var(--lime);
  transition: 0.35s;
}
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@keyframes pulse {
  50% {
    opacity: 0.35;
    transform: scale(0.75);
  }
}
@keyframes sweep {
  0%,
  28% {
    transform: translateX(-120%);
  }
  70%,
  100% {
    transform: translateX(120%);
  }
}
@keyframes nozzle {
  0%,
  20% {
    transform: translate(-40px, -28px) rotate(-30deg);
  }
  38%,
  82% {
    transform: translate(0, 0) rotate(-10deg);
  }
  100% {
    transform: translate(-40px, -28px) rotate(-30deg);
  }
}
@keyframes energy {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    transform: translate(90px, -6px);
    opacity: 0;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes steam {
  0% {
    transform: translateY(20px) scaleX(1);
    opacity: 0;
  }
  45% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-30px) scaleX(2.5);
    opacity: 0;
  }
}
@keyframes rain {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(120px);
    opacity: 0;
  }
}
@keyframes pinPulse {
  80% {
    box-shadow: 0 0 0 20px rgba(201, 255, 62, 0);
  }
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 1100px) {
  .desktop-nav,
  .quiet-link {
    display: none;
  }
  .menu-toggle {
    display: block;
    width: 38px;
  }
  .menu-toggle span {
    display: block;
    height: 1px;
    background: white;
    margin: 7px;
  }
  .mobile-menu {
    position: fixed;
    z-index: 190;
    inset: 0;
    background: #06130f;
    padding: 130px 8%;
    flex-direction: column;
    gap: 25px;
  }
  .mobile-menu.open {
    display: flex;
  }
  .mobile-menu .menu-label {
    font-size: 8px;
    letter-spacing: 0.16em;
    color: var(--lime);
  }
  .mobile-menu a {
    font: 600 42px Space Grotesk;
    color: white;
    text-decoration: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 140px;
  }
  .journey-stage {
    height: 570px;
  }
  .hero-bottom {
    display: none;
  }
  .section-head {
    grid-template-columns: 1fr;
  }
  .experience-cards {
    grid-template-columns: 1fr 1fr;
  }
  .experience-card {
    grid-column: auto;
  }
  /* Energy and Vehicle Care go full width so Food and Convenience pair up on
     their own row — otherwise Vehicle Care wraps and leaves an empty cell. */
  .card-energy,
  .card-care {
    grid-column: span 2;
  }
  .network {
    grid-template-columns: 1fr;
    padding: 100px 6.5%;
  }
  .impact {
    grid-template-columns: 1fr;
  }
  .impact-copy {
    max-width: 760px;
  }
  .timeline {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 70px;
  }
  .story {
    display: block;
    padding-top: 150px;
  }
  .careers-grid {
    grid-template-columns: 1fr;
  }
  .career-action {
    justify-content: flex-start;
  }
}
@media (max-width: 720px) {
  .cursor-orb {
    display: none;
  }
  .site-header {
    left: 12px;
    right: 12px;
    top: 12px;
  }
  .header-cta {
    display: none;
  }
  .hero {
    padding: 125px 22px 60px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 61px;
  }
  .hero-copy > p {
    font-size: 13px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .journey-stage {
    height: 430px;
    margin-top: 20px;
    transform: scale(0.72);
    transform-origin: center top;
  }
  .station {
    left: 45%;
  }
  .metric-rail {
    grid-template-columns: 1fr 1fr;
    padding: 30px 22px;
  }
  .metric-rail article {
    padding: 12px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .section {
    padding: 95px 22px;
  }
  .section h2,
  .network h2,
  .story h2 {
    font-size: 49px;
  }
  .experience-cards {
    display: flex;
    flex-direction: column;
    margin-top: 55px;
  }
  .experience-card {
    min-height: 470px;
  }
  .card-care {
    min-height: 560px;
  }
  .wash-scene {
    width: 460px;
    right: -35%;
    top: 38%;
  }
  .network {
    padding: 85px 22px;
  }
  .map-world {
    min-height: 540px;
  }
  .selected-site {
    left: 14px;
    right: 14px;
    width: auto;
    bottom: 14px;
  }
  .map-radar {
    width: 100px;
    height: 100px;
    right: 14px;
    top: 14px;
  }
  .impact-visual {
    height: 380px;
  }
  .solar-globe {
    width: 288px;
    height: 288px;
  }
  .solar-globe strong {
    font-size: 34px;
  }
  /* Stack the labels clear of the circle instead of beside it. */
  .orbit-copy-a {
    left: 0;
    top: 6px;
  }
  .orbit-copy-b {
    right: 0;
    bottom: 6px;
  }
  .impact-stats {
    gap: 30px;
  }
  .story {
    min-height: 900px;
    padding: 110px 22px;
  }
  .timeline {
    flex-direction: column;
  }
  .timeline article {
    width: 100%;
    padding-bottom: 16px;
  }
  .marquee {
    font-size: 58px;
    margin-bottom: 65px;
  }
  .career-action {
    align-items: center;
    gap: 20px;
  }
  .round-cta {
    flex-basis: 125px;
    width: 125px;
    height: 125px;
  }
  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 40px;
  }
  .footer-top p {
    text-align: left;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .newsletter {
    grid-column: span 2;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }
  .journey-modal h2 {
    font-size: 54px;
  }
}

/* Our Partners */
.partners {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--paper) 0%, #eef3ec 100%);
}
.partners:before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  right: -260px;
  top: 30px;
  background: radial-gradient(
    circle,
    rgba(201, 255, 62, 0.24),
    rgba(201, 255, 62, 0) 68%
  );
  pointer-events: none;
}
.partners-head {
  position: relative;
  z-index: 1;
}
.partner-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 76px;
}
.partner-card {
  position: relative;
  min-height: 250px;
  border: 1px solid rgba(7, 19, 15, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease,
    border-color 0.45s ease;
}
.partner-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.72),
    rgba(255, 255, 255, 0.08)
  );
  pointer-events: none;
}
.partner-card:after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  right: -95px;
  bottom: -105px;
  background: var(--lime);
  opacity: 0.18;
  transition: 0.45s;
}
.partner-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 28px 65px rgba(6, 28, 18, 0.13);
  border-color: rgba(18, 58, 40, 0.24);
}
.partner-card:hover:after {
  transform: scale(1.45);
  opacity: 0.28;
}
.partner-card img {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 76%;
  max-height: 145px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(7, 19, 15, 0.09));
  transition: transform 0.45s ease;
}
.partner-card:hover img {
  transform: scale(1.06);
}
.partner-card span {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 20px;
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
}
.partner-bp,
.partner-shell,
.partner-spar {
  grid-column: span 4;
}
.partner-tango,
.partner-subway {
  grid-column: span 4;
  min-height: 285px;
}
.partner-costa {
  grid-column: span 4;
  min-height: 285px;
}
.partner-tango img,
.partner-subway img {
  max-width: 90%;
  max-height: 175px;
}
.partner-statement {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.partner-statement span {
  font: 700 10px Space Grotesk;
  letter-spacing: 0.17em;
  color: var(--green);
}
.partner-statement p {
  margin: 0;
  max-width: 530px;
  font-size: 12px;
  line-height: 1.75;
  color: var(--muted);
  text-align: right;
}
@media (max-width: 900px) {
  .partner-card {
    grid-column: span 6;
    min-height: 230px;
  }
  .partner-costa {
    grid-column: span 12;
  }
  .partner-statement {
    flex-direction: column;
  }
  .partner-statement p {
    text-align: left;
  }
}
@media (max-width: 560px) {
  .partner-showcase {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }
  .partner-card,
  .partner-bp,
  .partner-shell,
  .partner-spar,
  .partner-tango,
  .partner-subway,
  .partner-costa {
    grid-column: auto;
    min-height: 220px;
  }
  .partner-card img {
    max-height: 130px;
  }
  .partner-tango img,
  .partner-subway img {
    max-height: 145px;
  }
  .partner-statement {
    margin-top: 18px;
  }
}

/* Official Valli identity */
.official-brand {
  display: flex;
  align-items: center;
  min-width: 156px;
}
.official-brand img {
  display: block;
  width: 156px;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(1.35);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.official-brand:hover img {
  transform: translateY(-1px);
  opacity: 0.88;
}
.footer-brand img {
  width: 230px;
  max-height: 80px;
}

/* Delivery partners */
.delivery-partners {
  position: relative;
  padding-top: 130px;
  padding-bottom: 0;
  background: #06140f;
  color: #fff;
  overflow: hidden;
}
.delivery-partners:before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(
    circle,
    rgba(201, 255, 62, 0.13),
    transparent 62%
  );
  pointer-events: none;
}
.delivery-partners:after {
  content: "";
  position: absolute;
  right: -20%;
  bottom: -40%;
  width: 65vw;
  height: 65vw;
  border: 1px solid rgba(201, 255, 62, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(201, 255, 62, 0.025),
    0 0 0 180px rgba(201, 255, 62, 0.018);
  pointer-events: none;
}
.delivery-shell {
  position: relative;
  z-index: 1;
}
.delivery-head h2,
.delivery-head em {
  color: #fff;
}
.delivery-head p {
  color: rgba(255, 255, 255, 0.55);
}
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 78px;
}
.delivery-card {
  position: relative;
  min-height: 430px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.025)
  );
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  transition: transform 0.45s ease, border-color 0.45s ease,
    background 0.45s ease;
}
.delivery-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 255, 62, 0.45);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.13),
    rgba(255, 255, 255, 0.04)
  );
}
.delivery-card-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -150px;
  top: -160px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 255, 62, 0.28),
    transparent 65%
  );
  transition: 0.5s;
}
.delivery-card:hover .delivery-card-glow {
  transform: scale(1.35);
  right: -100px;
  top: -110px;
}
.delivery-number {
  position: relative;
  z-index: 1;
  font: 700 10px Space Grotesk;
  letter-spacing: 0.16em;
  color: var(--lime);
}
.delivery-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 150px;
  object-fit: contain;
  object-position:  center;
  margin: auto 0;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.35));
  transform-origin: left center;
  transition: transform 0.45s ease;
}
/* Padding trims the shared logo band so the square marks sit optically level
   with the Uber Eats wordmark, which is limited by card width instead. */
/* .delivery-card[data-delivery="Deliveroo"] img {
  padding: 12px 0;
}
.delivery-card[data-delivery="Just Eat"] img {
  padding: 18px 0;
} */
.delivery-card:hover img {
  transform: scale(1.06);
}
.delivery-card p {
  position: relative;
  z-index: 1;
  max-width: 310px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.75;
}
.delivery-card a {
  position: relative;
  z-index: 1;
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding-bottom: 7px;
}
.delivery-card a b {
  color: var(--lime);
  margin-left: 7px;
}
.delivery-ticker {
  margin: 100px -7vw 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px 0;
  overflow: hidden;
  transform: rotate(-1deg);
}
.delivery-ticker > div {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  white-space: nowrap;
  animation: deliveryTicker 26s linear infinite;
  font: 600 22px Space Grotesk;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.28);
}
.delivery-ticker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(201, 255, 62, 0.8);
}
@keyframes deliveryTicker {
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 900px) {
  .delivery-grid {
    grid-template-columns: 1fr;
  }
  .delivery-card {
    min-height: 330px;
  }
  .delivery-card img {
    height: 132px;
    margin: 48px 0;
  }
  .official-brand img {
    width: 135px;
  }
}
@media (max-width: 560px) {
  .delivery-partners {
    padding-top: 95px;
  }
  .delivery-grid {
    margin-top: 50px;
  }
  .delivery-card {
    min-height: 310px;
    padding: 28px;
  }
  .delivery-card img {
    height: 116px;
    margin: 40px 0;
  }
  .delivery-ticker {
    margin-top: 65px;
  }
  .footer-brand img {
    width: 190px;
  }
}

/* Three.js network map */
.three-network {
  min-height: 850px;
}
.three-map-shell {
  position: relative;
  min-height: 720px;
  border-radius: 34px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 42%, #153f30, #04100c 70%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}
#threeMap {
  display: block;
  width: 100%;
  height: 720px;
  cursor: grab;
}
#threeMap:active {
  cursor: grabbing;
}
.map-overlay-top {
  position: absolute;
  left: 25px;
  right: 25px;
  top: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.6);
  font-size: 8px;
  letter-spacing: 0.16em;
}
.map-overlay-top span i {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--lime);
  margin-right: 7px;
}
.three-site-panel {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(360px, calc(100% - 48px));
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(4, 16, 12, 0.8);
  backdrop-filter: blur(15px);
  border-radius: 19px;
  color: white;
}
.three-site-panel small {
  display: block;
  color: var(--lime);
  font-size: 8px;
  letter-spacing: 0.15em;
}
.three-site-panel strong {
  display: block;
  font: 650 22px "Space Grotesk";
  margin: 11px 0 6px;
}
.three-site-panel span {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.53);
}
.three-site-panel a {
  display: inline-block;
  color: white;
  text-decoration: none;
  font-size: 10px;
  font-weight: 800;
  margin-top: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 5px;
}
.map-legend {
  position: absolute;
  right: 24px;
  bottom: 25px;
  display: flex;
  gap: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
}
.map-legend i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 5px;
}
.bp-dot {
  background: #79d540;
}
.shell-dot {
  background: #ffd21a;
}
.network-all-link {
  display: inline-flex;
  color: white;
  text-decoration: none;
  margin-top: 32px;
  font-size: 11px;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 7px;
}
.network-all-link span {
  color: var(--lime);
  margin-left: 8px;
}
@media (max-width: 720px) {
  .three-map-shell {
    min-height: 570px;
  }
  .three-map-shell #threeMap {
    height: 570px;
  }
  .map-legend {
    display: none;
  }
}

/* =========================================================
   Stability fixes
   ========================================================= */

html {
  scroll-behavior: smooth;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-15px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.journey-modal {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.journey-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.toast {
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, 20px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.three-map-shell {
  position: relative;
  min-height: 620px;
}

#threeMap {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
}

.three-map-shell.map-fallback #threeMap {
  display: none;
}

.three-map-shell.map-fallback::before {
  content: "Interactive map unavailable. Use the location search or view all locations.";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  background: radial-gradient(
      circle at center,
      rgba(76, 255, 156, 0.12),
      transparent 55%
    ),
    #09231c;
}

.site-header.scrolled {
  background: rgba(5, 20, 16, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .three-map-shell,
  #threeMap {
    min-height: 500px;
  }
}

/* =========================================================
   Carbon Footprint Page
   ========================================================= */

.carbon-page {
  --carbon-dark: #061b15;
  --carbon-deep: #09271e;
  --carbon-surface: #0d3025;
  --carbon-surface-light: #123b2e;
  --carbon-green: #73f6a7;
  --carbon-green-bright: #b2ffca;
  --carbon-text: #f4faf6;
  --carbon-muted: rgba(230, 247, 236, 0.67);
  --carbon-line: rgba(155, 255, 192, 0.15);

  background: var(--carbon-dark);
  color: var(--carbon-text);
}

.carbon-page img {
  max-width: 100%;
}

.carbon-page .section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.carbon-page .section-kicker,
.carbon-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--carbon-green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.carbon-page .section-kicker::before,
.carbon-eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

.carbon-page h1,
.carbon-page h2,
.carbon-page h3,
.carbon-page strong {
  font-family: "Manrope", sans-serif;
}

.carbon-page p {
  line-height: 1.8;
}

.carbon-page .desktop-nav a.active {
  color: var(--carbon-green);
}

/* Hero */

.carbon-hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  padding: 190px max(24px, calc((100vw - 1180px) / 2)) 100px;
  isolation: isolate;
}

.carbon-hero-background,
.carbon-hero-overlay {
  position: absolute;
  inset: 0;
}

.carbon-hero-background {
  z-index: -4;
}

.carbon-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(0.85) brightness(0.62);
}

.carbon-hero-overlay {
  z-index: -3;
  background: linear-gradient(
      90deg,
      rgba(3, 20, 14, 0.98) 0%,
      rgba(3, 20, 14, 0.83) 43%,
      rgba(3, 20, 14, 0.24) 78%,
      rgba(3, 20, 14, 0.48) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 20, 14, 0.15) 0%,
      rgba(3, 20, 14, 0.4) 70%,
      var(--carbon-dark) 100%
    );
}

.carbon-orb {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.carbon-orb-one {
  top: 18%;
  right: 13%;
  width: 260px;
  height: 260px;
  background: rgba(91, 255, 157, 0.13);
  box-shadow: 0 0 80px rgba(91, 255, 157, 0.2),
    inset 0 0 70px rgba(91, 255, 157, 0.12);
}

.carbon-orb-two {
  right: 38%;
  bottom: 12%;
  width: 110px;
  height: 110px;
  background: rgba(203, 255, 221, 0.12);
}

.carbon-hero-content {
  max-width: 790px;
}

.carbon-hero h1 {
  max-width: 850px;
  margin: 0 0 28px;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.carbon-hero h1 span {
  display: block;
  color: var(--carbon-green);
}

.carbon-hero-content > p {
  max-width: 670px;
  margin: 0;
  color: rgba(239, 249, 242, 0.76);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.carbon-hero-actions,
.carbon-closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.carbon-page .button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease,
    border-color 180ms ease;
}

.carbon-page .button:hover {
  transform: translateY(-3px);
}

.carbon-page .button-primary {
  background: var(--carbon-green);
  color: #042014;
}

.carbon-page .button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
  color: white;
  backdrop-filter: blur(12px);
}

.carbon-hero-stat {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 104px;
  display: flex;
  width: 260px;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(177, 255, 205, 0.18);
  border-radius: 20px;
  background: rgba(5, 34, 24, 0.62);
  backdrop-filter: blur(18px);
}

.carbon-stat-pulse {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--carbon-green);
  box-shadow: 0 0 0 8px rgba(115, 246, 167, 0.11);
}

.carbon-hero-stat small,
.carbon-hero-stat span {
  display: block;
  color: var(--carbon-muted);
}

.carbon-hero-stat strong {
  display: block;
  margin: 3px 0;
  color: var(--carbon-green-bright);
  font-size: 2rem;
}

/* Introduction */

.carbon-intro {
  display: grid;
  grid-template-columns: 80px minmax(0, 1.1fr) minmax(320px, 0.75fr);
  gap: 50px;
  padding-top: 150px;
  padding-bottom: 150px;
}

.carbon-section-number {
  color: rgba(157, 255, 192, 0.36);
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

.carbon-intro-heading h2,
.carbon-impact-heading h2,
.carbon-story-content h2,
.carbon-video-copy h2,
.carbon-investment-content h2,
.carbon-closing h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.7vw, 4.6rem);
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.carbon-intro-copy p {
  margin: 0 0 26px;
  color: var(--carbon-muted);
}

/* Metrics */

.carbon-impact-section {
  padding: 130px 0;
  border-top: 1px solid var(--carbon-line);
  border-bottom: 1px solid var(--carbon-line);
  background: radial-gradient(
      circle at 50% 10%,
      rgba(87, 255, 153, 0.1),
      transparent 36%
    ),
    var(--carbon-deep);
}

.carbon-impact-heading {
  display: grid;
  grid-template-columns: 1fr 390px;
  align-items: end;
  gap: 80px;
  margin-bottom: 66px;
}

.carbon-impact-heading p {
  margin: 0;
  color: var(--carbon-muted);
}

.carbon-impact-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  gap: 18px;
}

.carbon-metric-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--carbon-line);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.012)
  );
}

.carbon-metric-featured {
  background: radial-gradient(
      circle at 70% 20%,
      rgba(134, 255, 178, 0.18),
      transparent 34%
    ),
    linear-gradient(145deg, #164535, #0c2d23);
}

.metric-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 80px;
  place-items: center;
  border: 1px solid rgba(149, 255, 188, 0.22);
  border-radius: 50%;
  color: var(--carbon-green);
}

.carbon-metric-card small {
  display: block;
  margin-bottom: 13px;
  color: var(--carbon-muted);
}

.metric-value {
  display: flex;
  align-items: flex-end;
  gap: 9px;
}

.metric-value strong {
  font-size: clamp(3.8rem, 6vw, 6rem);
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.metric-value span {
  margin-bottom: 8px;
  color: var(--carbon-green);
  font-weight: 700;
}

.metric-value-large strong {
  font-size: clamp(2.65rem, 4.7vw, 4.6rem);
}

.carbon-metric-card p {
  max-width: 330px;
  margin: 22px 0 0;
  color: var(--carbon-muted);
}

.metric-lines {
  position: absolute;
  right: 28px;
  bottom: 30px;
  left: 28px;
  display: flex;
  height: 44px;
  align-items: flex-end;
  gap: 7px;
  opacity: 0.4;
}

.metric-lines span {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: var(--carbon-green);
}

.metric-lines span:nth-child(1) {
  height: 24%;
}

.metric-lines span:nth-child(2) {
  height: 42%;
}

.metric-lines span:nth-child(3) {
  height: 55%;
}

.metric-lines span:nth-child(4) {
  height: 75%;
}

.metric-lines span:nth-child(5) {
  height: 100%;
}

/* Story */

.carbon-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.88fr);
  align-items: center;
  gap: 90px;
  padding-top: 150px;
  padding-bottom: 150px;
}

.carbon-story-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 34px;
}

.carbon-story-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  filter: saturate(0.8);
  transition: transform 800ms ease;
}

.carbon-story-image:hover img {
  transform: scale(1.04);
}

.image-data-card {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: min(260px, calc(100% - 52px));
  padding: 24px;
  border: 1px solid rgba(182, 255, 208, 0.2);
  border-radius: 20px;
  background: rgba(5, 28, 21, 0.76);
  backdrop-filter: blur(16px);
}

.image-data-card small,
.image-data-card strong {
  display: block;
}

.image-data-card small {
  color: var(--carbon-muted);
}

.image-data-card strong {
  margin-top: 5px;
  color: var(--carbon-green);
  font-size: 2rem;
}

.carbon-story-content > p {
  color: var(--carbon-muted);
}

.carbon-progress-group {
  display: grid;
  gap: 28px;
  margin-top: 45px;
}

.carbon-progress-label {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 11px;
}

.carbon-progress-label span {
  color: var(--carbon-muted);
}

.carbon-progress-label strong {
  color: var(--carbon-green);
}

.carbon-progress-track {
  height: 4px;
  overflow: hidden;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
}

.carbon-progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    var(--carbon-green),
    var(--carbon-green-bright)
  );
}

/* Equivalencies */

.carbon-equivalent-section {
  padding: 130px 0;
  background: #eff7f1;
  color: #09251b;
}

.carbon-equivalent-section .section-kicker {
  color: #15884c;
}

.carbon-equivalent-heading {
  max-width: 810px;
  margin-bottom: 60px;
}

.carbon-equivalent-heading h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.carbon-equivalent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.carbon-equivalent-card {
  position: relative;
  min-height: 420px;
  padding: 32px;
  border: 1px solid rgba(7, 50, 33, 0.11);
  border-radius: 28px;
  background: white;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.carbon-equivalent-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(10, 53, 35, 0.12);
}

.equivalent-index {
  color: rgba(7, 50, 33, 0.34);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.equivalent-symbol {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 70px 0 32px;
  place-items: center;
  border-radius: 50%;
  background: #e0f9e8;
  color: #08723b;
  font-size: 1.7rem;
}

.carbon-equivalent-card > strong {
  display: block;
  font-size: clamp(3rem, 5vw, 5rem);
  letter-spacing: -0.065em;
  line-height: 1;
}

.carbon-equivalent-card h3 {
  margin: 13px 0;
  font-size: 1.2rem;
}

.carbon-equivalent-card p {
  margin: 0;
  color: rgba(7, 42, 29, 0.6);
}

/* Video */

.carbon-video-section {
  display: grid;
  grid-template-columns: 0.72fr 1.55fr;
  align-items: center;
  gap: 70px;
  padding-top: 150px;
  padding-bottom: 150px;
}

.carbon-video-copy p {
  color: var(--carbon-muted);
}

.carbon-video-wrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--carbon-line);
  border-radius: 32px;
  background: black;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
  aspect-ratio: 16 / 9;
}

.carbon-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-corner {
  position: absolute;
  width: 74px;
  height: 74px;
  pointer-events: none;
}

.video-corner-top {
  top: 18px;
  left: 18px;
  border-top: 1px solid var(--carbon-green);
  border-left: 1px solid var(--carbon-green);
}

.video-corner-bottom {
  right: 18px;
  bottom: 18px;
  border-right: 1px solid var(--carbon-green);
  border-bottom: 1px solid var(--carbon-green);
}

/* Investment */

.carbon-investment-section {
  padding: 150px 0;
  border-top: 1px solid var(--carbon-line);
  background: radial-gradient(
      circle at 80% 30%,
      rgba(104, 255, 162, 0.09),
      transparent 35%
    ),
    var(--carbon-deep);
}

.carbon-investment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1fr);
  align-items: center;
  gap: 100px;
}

.carbon-investment-content > p {
  color: var(--carbon-muted);
}

.carbon-investment-list {
  display: grid;
  margin-top: 50px;
  border-top: 1px solid var(--carbon-line);
}

.investment-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--carbon-line);
}

.investment-number {
  color: var(--carbon-green);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.investment-item strong {
  display: block;
  margin-bottom: 5px;
}

.investment-item p {
  margin: 0;
  color: var(--carbon-muted);
  font-size: 0.94rem;
}

.carbon-investment-visual {
  position: relative;
  min-height: 700px;
}

.carbon-investment-visual > img {
  width: 100%;
  height: 700px;
  border-radius: 36px;
  object-fit: cover;
  filter: saturate(0.8);
}

.carbon-floating-card {
  position: absolute;
  min-width: 220px;
  padding: 22px;
  border: 1px solid rgba(178, 255, 205, 0.18);
  border-radius: 19px;
  background: rgba(5, 31, 23, 0.77);
  backdrop-filter: blur(18px);
}

.carbon-floating-card-top {
  top: 32px;
  left: -45px;
}

.carbon-floating-card-bottom {
  right: -34px;
  bottom: 38px;
}

.carbon-floating-card small,
.carbon-floating-card strong,
.carbon-floating-card span {
  display: block;
}

.carbon-floating-card small,
.carbon-floating-card span {
  color: var(--carbon-muted);
}

.carbon-floating-card strong {
  margin: 5px 0;
  color: var(--carbon-green);
  font-size: 1.5rem;
}

/* Closing */

.carbon-closing {
  padding-top: 130px;
  padding-bottom: 130px;
}

.carbon-closing-inner {
  padding: 80px;
  border: 1px solid var(--carbon-line);
  border-radius: 38px;
  background: radial-gradient(
      circle at 85% 30%,
      rgba(111, 255, 165, 0.17),
      transparent 28%
    ),
    linear-gradient(140deg, #113e30, #0a281f);
}

.carbon-closing-inner > p {
  max-width: 670px;
  color: var(--carbon-muted);
}

/* Responsive */

@media (max-width: 1080px) {
  .carbon-hero-stat {
    display: none;
  }

  .carbon-intro {
    grid-template-columns: 60px 1fr;
  }

  .carbon-intro-copy {
    grid-column: 2;
  }

  .carbon-impact-heading,
  .carbon-video-section {
    grid-template-columns: 1fr;
  }

  .carbon-impact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .carbon-metric-featured {
    grid-column: 1 / -1;
  }

  .carbon-story,
  .carbon-investment-layout {
    gap: 55px;
  }

  .carbon-floating-card-top {
    left: 20px;
  }

  .carbon-floating-card-bottom {
    right: 20px;
  }
}

@media (max-width: 820px) {
  .carbon-page .section-shell {
    width: min(100% - 32px, 1180px);
  }

  .carbon-hero {
    min-height: 850px;
    padding: 160px 24px 75px;
  }

  .carbon-hero h1 {
    font-size: clamp(3.3rem, 15vw, 5.4rem);
  }

  .carbon-intro {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .carbon-intro-copy {
    grid-column: auto;
  }

  .carbon-impact-section,
  .carbon-investment-section {
    padding: 100px 0;
  }

  .carbon-impact-grid,
  .carbon-story,
  .carbon-equivalent-grid,
  .carbon-investment-layout {
    grid-template-columns: 1fr;
  }

  .carbon-story {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .carbon-story-image,
  .carbon-story-image img {
    min-height: 500px;
  }

  .carbon-equivalent-section {
    padding: 100px 0;
  }

  .carbon-video-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .carbon-investment-visual,
  .carbon-investment-visual > img {
    min-height: 530px;
    height: 530px;
  }

  .carbon-closing-inner {
    padding: 50px 30px;
  }
}

@media (max-width: 560px) {
  .carbon-hero {
    min-height: 760px;
    padding-top: 140px;
  }

  .carbon-hero-actions,
  .carbon-closing-actions {
    display: grid;
  }

  .carbon-page .button {
    width: 100%;
  }

  .carbon-impact-grid {
    grid-template-columns: 1fr;
  }

  .carbon-metric-featured {
    grid-column: auto;
  }

  .carbon-metric-card {
    min-height: 350px;
    padding: 26px;
  }

  .metric-icon {
    margin-bottom: 54px;
  }

  .carbon-equivalent-card {
    min-height: 380px;
  }

  .equivalent-symbol {
    margin-top: 55px;
  }

  .carbon-floating-card {
    min-width: 185px;
    padding: 17px;
  }

  .carbon-floating-card-top {
    top: 18px;
    left: 15px;
  }

  .carbon-floating-card-bottom {
    right: 15px;
    bottom: 18px;
  }
}
/* =========================================================
   Legal and compliance pages
   ========================================================= */

.legal-page {
  --legal-bg: #061b15;
  --legal-surface: #0b2b21;
  --legal-card: rgba(255, 255, 255, 0.045);
  --legal-border: rgba(155, 255, 192, 0.14);
  --legal-green: #7af5a8;
  --legal-text: #f3faf5;
  --legal-muted: rgba(235, 248, 239, 0.68);

  min-height: 100vh;
  overflow: hidden;
  background: radial-gradient(
      circle at 80% 5%,
      rgba(95, 255, 157, 0.1),
      transparent 28%
    ),
    var(--legal-bg);
  color: var(--legal-text);
}

.legal-page *,
.legal-page *::before,
.legal-page *::after {
  box-sizing: border-box;
}

.legal-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.legal-hero {
  position: relative;
  display: flex;
  min-height: 620px;
  align-items: flex-end;
  overflow: hidden;
  padding: 190px 0 85px;
  border-bottom: 1px solid var(--legal-border);
}

.legal-hero::before {
  position: absolute;
  top: 110px;
  right: -150px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(122, 245, 168, 0.11);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 100px rgba(122, 245, 168, 0.08),
    inset 0 0 100px rgba(122, 245, 168, 0.05);
}

.legal-hero::after {
  position: absolute;
  top: 190px;
  right: -70px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(122, 245, 168, 0.16);
  border-radius: 50%;
  content: "";
}

.legal-hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.legal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--legal-green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.legal-eyebrow::before {
  width: 30px;
  height: 1px;
  content: "";
  background: currentColor;
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.legal-hero p {
  max-width: 690px;
  margin: 30px 0 0;
  color: var(--legal-muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.legal-meta span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--legal-border);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--legal-muted);
  font-size: 0.85rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  align-items: start;
  gap: 80px;
  padding-top: 100px;
  padding-bottom: 140px;
}

.legal-sidebar {
  position: sticky;
  top: 130px;
}

.legal-sidebar-label {
  display: block;
  margin-bottom: 20px;
  color: var(--legal-green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-sidebar nav {
  display: grid;
  border-top: 1px solid var(--legal-border);
}

.legal-sidebar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--legal-border);
  color: var(--legal-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 180ms ease, padding-left 180ms ease;
}

.legal-sidebar a:hover {
  padding-left: 8px;
  color: var(--legal-green);
}

.legal-content {
  min-width: 0;
}

.legal-summary {
  margin-bottom: 60px;
  padding: 34px;
  border: 1px solid var(--legal-border);
  border-radius: 26px;
  background: linear-gradient(
    145deg,
    rgba(122, 245, 168, 0.08),
    rgba(255, 255, 255, 0.025)
  );
}

.legal-summary h2 {
  margin: 0 0 20px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.04em;
}

.legal-summary p,
.legal-summary li {
  color: var(--legal-muted);
}

.legal-section {
  padding: 55px 0;
  border-top: 1px solid var(--legal-border);
  scroll-margin-top: 130px;
}

.legal-section:first-child {
  border-top: 0;
}

.legal-section-number {
  display: block;
  margin-bottom: 15px;
  color: var(--legal-green);
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.legal-section h2 {
  margin: 0 0 25px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.legal-section h3 {
  margin: 32px 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
}

.legal-section p,
.legal-section li {
  color: var(--legal-muted);
  line-height: 1.85;
}

.legal-section p {
  margin: 0 0 20px;
}

.legal-section ul,
.legal-section ol {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  padding-left: 22px;
}

.legal-section a {
  color: var(--legal-green);
}

.legal-highlight {
  margin: 30px 0;
  padding: 25px;
  border-left: 3px solid var(--legal-green);
  border-radius: 0 16px 16px 0;
  background: rgba(122, 245, 168, 0.055);
}

.legal-highlight p:last-child {
  margin-bottom: 0;
}

.legal-contact-card {
  margin-top: 30px;
  padding: 28px;
  border: 1px solid var(--legal-border);
  border-radius: 20px;
  background: var(--legal-card);
}

.legal-contact-card strong,
.legal-contact-card span {
  display: block;
}

.legal-contact-card strong {
  margin-bottom: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
}

.legal-contact-card span {
  margin-bottom: 4px;
  color: var(--legal-muted);
}

.report-viewer {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  border: 1px solid var(--legal-border);
  border-radius: 28px;
  background: #ffffff;
  min-height: 850px;
}

.report-viewer iframe {
  display: block;
  width: 100%;
  height: 850px;
  border: 0;
}

.report-download {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  padding: 0 23px;
  border-radius: 100px;
  background: var(--legal-green);
  color: #062217;
  font-weight: 700;
  text-decoration: none;
}

.report-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.report-stat {
  padding: 26px;
  border: 1px solid var(--legal-border);
  border-radius: 20px;
  background: var(--legal-card);
}

.report-stat small,
.report-stat strong,
.report-stat span {
  display: block;
}

.report-stat small,
.report-stat span {
  color: var(--legal-muted);
}

.report-stat strong {
  margin: 10px 0 5px;
  color: var(--legal-green);
  font-family: "Manrope", sans-serif;
  font-size: 2.6rem;
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .legal-sidebar {
    position: static;
  }

  .legal-sidebar nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
  }

  .report-stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .legal-shell {
    width: min(100% - 32px, 1180px);
  }

  .legal-hero {
    min-height: 570px;
    padding-top: 150px;
    padding-bottom: 65px;
  }

  .legal-hero h1 {
    font-size: clamp(3.2rem, 16vw, 5.2rem);
  }

  .legal-layout {
    padding-top: 70px;
    padding-bottom: 100px;
  }

  .legal-sidebar nav {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    padding: 25px;
  }

  .legal-section {
    padding: 42px 0;
  }

  .report-viewer,
  .report-viewer iframe {
    min-height: 600px;
    height: 600px;
  }
}

/* =========================================================
   About Us Page
   ========================================================= */

.about-page {
  --about-dark: #061b15;
  --about-deep: #09271e;
  --about-surface: #0e3126;
  --about-green: #78f5aa;
  --about-green-light: #bcffd2;
  --about-text: #f3faf5;
  --about-muted: rgba(231, 247, 237, 0.68);
  --about-line: rgba(151, 255, 190, 0.14);

  overflow: hidden;
  background: var(--about-dark);
  color: var(--about-text);
}

.about-page *,
.about-page *::before,
.about-page *::after {
  box-sizing: border-box;
}

.about-page img {
  display: block;
  max-width: 100%;
}

.about-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.about-kicker,
.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: var(--about-green);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.about-kicker::before,
.about-eyebrow::before {
  width: 30px;
  height: 1px;
  content: "";
  background: currentColor;
}

/* Hero */

.about-hero {
  position: relative;
  display: flex;
  min-height: 920px;
  align-items: flex-end;
  overflow: hidden;
  padding: 190px 0 105px;
  background: radial-gradient(
      circle at 78% 28%,
      rgba(110, 255, 168, 0.2),
      transparent 23%
    ),
    radial-gradient(
      circle at 90% 70%,
      rgba(110, 255, 168, 0.08),
      transparent 30%
    ),
    linear-gradient(140deg, #061b15, #0b3427);
  isolation: isolate;
}

.about-hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.22;
  background-image: linear-gradient(
      rgba(122, 245, 170, 0.09) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(122, 245, 170, 0.09) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, transparent, black 35%, black 100%);
}

.about-hero::before {
  position: absolute;
  top: 160px;
  right: 8%;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(130, 255, 177, 0.15);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 90px rgba(114, 255, 166, 0.08),
    inset 0 0 90px rgba(114, 255, 166, 0.05);
}

.about-hero::after {
  position: absolute;
  top: 235px;
  right: 13%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(130, 255, 177, 0.24);
  border-radius: 50%;
  content: "";
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  max-width: 930px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.about-hero h1 span {
  display: block;
  color: var(--about-green);
}

.about-hero-content > p {
  max-width: 690px;
  margin: 34px 0 0;
  color: var(--about-muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-hero-actions,
.about-closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.about-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease,
    border-color 180ms ease;
}

.about-button:hover {
  transform: translateY(-3px);
}

.about-button-primary {
  background: var(--about-green);
  color: #052016;
}

.about-button-primary:hover {
  background: var(--about-green-light);
}

.about-button-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  backdrop-filter: blur(13px);
}

.about-hero-stat {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 110px;
  width: 250px;
  padding: 24px;
  border: 1px solid var(--about-line);
  border-radius: 22px;
  background: rgba(6, 31, 22, 0.68);
  backdrop-filter: blur(18px);
}

.about-hero-stat small,
.about-hero-stat strong,
.about-hero-stat span {
  display: block;
}

.about-hero-stat small,
.about-hero-stat span {
  color: var(--about-muted);
}

.about-hero-stat strong {
  margin: 5px 0;
  color: var(--about-green);
  font-family: "Manrope", sans-serif;
  font-size: 3rem;
  letter-spacing: -0.05em;
}

/* Introduction */

.about-intro {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 55px;
  padding-top: 145px;
  padding-bottom: 145px;
}

.about-section-number {
  color: rgba(132, 255, 178, 0.35);
  font-size: 0.74rem;
  letter-spacing: 0.15em;
}

.about-intro-heading h2,
.about-story-content h2,
.about-leadership-heading h2,
.about-values-heading h2,
.about-closing h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.about-intro-copy p,
.about-story-content p,
.about-leadership-heading p,
.about-closing p {
  color: var(--about-muted);
  line-height: 1.85;
}

/* Story */

.about-story-section {
  padding: 140px 0;
  border-top: 1px solid var(--about-line);
  border-bottom: 1px solid var(--about-line);
  background: radial-gradient(
      circle at 80% 20%,
      rgba(115, 255, 169, 0.08),
      transparent 30%
    ),
    var(--about-deep);
}

.about-story-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: center;
  gap: 110px;
}

.about-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: var(--about-green);
  font-weight: 700;
  text-decoration: none;
}

.about-timeline {
  position: relative;
  display: grid;
}

.about-timeline::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 61px;
  width: 1px;
  content: "";
  background: var(--about-line);
}

.about-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--about-line);
}

.about-timeline-item > span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid var(--about-line);
  border-radius: 50%;
  background: var(--about-deep);
  color: var(--about-green);
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
}

.about-timeline-item strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
}

.about-timeline-item p {
  margin: 8px 0 0;
  color: var(--about-muted);
  line-height: 1.7;
}

/* Team */

.about-leadership-section {
  padding: 150px 0;
}

.about-leadership-heading {
  display: grid;
  grid-template-columns: 1fr 390px;
  align-items: end;
  gap: 80px;
  margin-bottom: 65px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-team-card {
  overflow: hidden;
  border: 1px solid var(--about-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
}

.about-team-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4.7;
  background: radial-gradient(
      circle at 50% 30%,
      rgba(132, 255, 180, 0.2),
      transparent 38%
    ),
    #0d3327;
}

.about-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.78);
  transition: transform 600ms ease, filter 600ms ease;
}

.about-team-card:hover .about-team-photo img {
  transform: scale(1.045);
  filter: saturate(1);
}

.about-team-placeholder {
  display: grid;
  place-items: center;
}

.about-team-placeholder > span {
  color: rgba(187, 255, 211, 0.8);
  font-family: "Manrope", sans-serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.08em;
}

.about-team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(5, 25, 18, 0.72) 100%
  );
}

.about-team-card-content {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 17px;
  padding: 27px;
}

.about-team-number {
  color: var(--about-green);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.about-team-card h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
}

.about-team-card p {
  margin: 7px 0 0;
  color: var(--about-muted);
  line-height: 1.55;
}

/* Values */

.about-values-section {
  padding: 140px 0;
  background: #eef7f1;
  color: #09251a;
}

.about-values-section .about-kicker {
  color: #168749;
}

.about-values-heading {
  max-width: 850px;
  margin-bottom: 65px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-value-card {
  min-height: 300px;
  padding: 35px;
  border: 1px solid rgba(9, 54, 35, 0.1);
  border-radius: 26px;
  background: #ffffff;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.about-value-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 65px rgba(13, 63, 41, 0.1);
}

.about-value-index {
  color: #168749;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
}

.about-value-card h3 {
  max-width: 360px;
  margin: 90px 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: 1.7rem;
}

.about-value-card p {
  max-width: 470px;
  margin: 0;
  color: rgba(7, 43, 28, 0.63);
  line-height: 1.75;
}

/* Statistics */

.about-stats-section {
  padding: 115px 0;
  background: var(--about-green);
  color: #052016;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-stat-card {
  padding: 20px 35px;
  border-right: 1px solid rgba(3, 43, 26, 0.17);
}

.about-stat-card:last-child {
  border-right: 0;
}

.about-stat-card strong,
.about-stat-card span {
  display: block;
}

.about-stat-card strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.9rem, 5vw, 5rem);
  letter-spacing: -0.07em;
  line-height: 1;
}

.about-stat-card span {
  margin-top: 14px;
  color: rgba(5, 32, 22, 0.68);
}

/* Closing */

.about-closing {
  padding-top: 130px;
  padding-bottom: 130px;
}

.about-closing-inner {
  padding: 80px;
  border: 1px solid var(--about-line);
  border-radius: 38px;
  background: radial-gradient(
      circle at 85% 25%,
      rgba(120, 255, 174, 0.17),
      transparent 29%
    ),
    linear-gradient(140deg, #123d30, #09271e);
}

.about-closing-inner > p {
  max-width: 700px;
}

/* Responsive */

@media (max-width: 1050px) {
  .about-hero-stat {
    display: none;
  }

  .about-intro {
    grid-template-columns: 60px 1fr;
  }

  .about-intro-copy {
    grid-column: 2;
  }

  .about-story-layout {
    gap: 60px;
  }

  .about-leadership-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 0;
  }
}

@media (max-width: 780px) {
  .about-shell {
    width: min(100% - 32px, 1180px);
  }

  .about-hero {
    min-height: 800px;
    padding-top: 150px;
    padding-bottom: 75px;
  }

  .about-hero h1 {
    font-size: clamp(3.5rem, 15vw, 6rem);
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .about-intro-copy {
    grid-column: auto;
  }

  .about-story-section,
  .about-leadership-section,
  .about-values-section {
    padding: 100px 0;
  }

  .about-story-layout,
  .about-team-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-timeline::before {
    left: 51px;
  }

  .about-timeline-item {
    grid-template-columns: 80px 1fr;
  }

  .about-team-photo {
    aspect-ratio: 4 / 4.3;
  }

  .about-stats-section {
    padding: 85px 0;
  }

  .about-closing-inner {
    padding: 50px 30px;
  }
}

@media (max-width: 520px) {
  .about-hero-actions,
  .about-closing-actions {
    display: grid;
  }

  .about-button {
    width: 100%;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .about-stat-card {
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(3, 43, 26, 0.17);
  }

  .about-stat-card:last-child {
    border-bottom: 0;
  }

  .about-value-card {
    min-height: 270px;
    padding: 28px;
  }

  .about-value-card h3 {
    margin-top: 65px;
  }
}

/* =========================================================
   Services Page
   ========================================================= */

.services-page {
  --services-dark: #061b15;
  --services-deep: #09271e;
  --services-surface: #0d3025;
  --services-green: #78f5aa;
  --services-green-light: #c3ffd7;
  --services-text: #f5fbf7;
  --services-muted: rgba(232, 248, 238, 0.68);
  --services-line: rgba(153, 255, 191, 0.14);

  overflow: hidden;
  background: var(--services-dark);
  color: var(--services-text);
}

.services-page *,
.services-page *::before,
.services-page *::after {
  box-sizing: border-box;
}

.services-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.services-kicker,
.services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: var(--services-green);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.services-kicker::before,
.services-eyebrow::before {
  width: 30px;
  height: 1px;
  content: "";
  background: currentColor;
}

/* Hero */

.services-hero {
  position: relative;
  display: flex;
  min-height: 900px;
  align-items: flex-end;
  overflow: hidden;
  padding: 190px 0 105px;
  background: radial-gradient(
      circle at 80% 25%,
      rgba(115, 255, 170, 0.17),
      transparent 26%
    ),
    radial-gradient(
      circle at 68% 80%,
      rgba(115, 255, 170, 0.08),
      transparent 30%
    ),
    linear-gradient(140deg, #061b15, #0d392b);
  isolation: isolate;
}

.services-hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(
      rgba(122, 245, 170, 0.09) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(122, 245, 170, 0.09) 1px, transparent 1px);
  background-size: 72px 72px;
}

.services-hero-content {
  position: relative;
  z-index: 2;
}

.services-hero h1 {
  max-width: 930px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.services-hero h1 span {
  display: block;
  color: var(--services-green);
}

.services-hero-content > p {
  max-width: 720px;
  margin: 34px 0 0;
  color: var(--services-muted);
  font-size: 1.08rem;
  line-height: 1.82;
}

.services-hero-actions,
.services-closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.services-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease,
    border-color 180ms ease;
}

.services-button:hover {
  transform: translateY(-3px);
}

.services-button-primary {
  background: var(--services-green);
  color: #052016;
}

.services-button-primary:hover {
  background: var(--services-green-light);
}

.services-button-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  backdrop-filter: blur(13px);
}

.services-hero-panel {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 110px;
  width: 290px;
  padding: 25px;
  border: 1px solid var(--services-line);
  border-radius: 22px;
  background: rgba(6, 31, 22, 0.68);
  backdrop-filter: blur(18px);
}

.services-hero-panel small,
.services-hero-panel strong,
.services-hero-panel span {
  display: block;
}

.services-hero-panel small,
.services-hero-panel span {
  color: var(--services-muted);
}

.services-hero-panel strong {
  margin: 9px 0;
  color: var(--services-green);
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  line-height: 1.45;
}

/* Intro */

.services-intro {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 55px;
  padding-top: 145px;
  padding-bottom: 145px;
}

.services-section-number {
  color: rgba(132, 255, 178, 0.35);
  font-size: 0.74rem;
  letter-spacing: 0.15em;
}

.services-intro-heading h2,
.services-section-heading h2,
.services-feature-content h2,
.services-driver-heading h2,
.services-closing h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.services-intro-copy p,
.services-section-heading p,
.services-feature-content p,
.services-driver-heading p,
.services-closing p {
  color: var(--services-muted);
  line-height: 1.85;
}

/* Cluster cards */

.services-clusters-section {
  padding: 140px 0;
  border-top: 1px solid var(--services-line);
  border-bottom: 1px solid var(--services-line);
  background: var(--services-deep);
}

.services-section-heading {
  display: grid;
  grid-template-columns: 1fr 390px;
  align-items: end;
  gap: 80px;
  margin-bottom: 65px;
}

.services-cluster-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.services-cluster-card {
  min-height: 280px;
  padding: 27px;
  border: 1px solid var(--services-line);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.018)
  );
  transition: transform 220ms ease, background-color 220ms ease;
}

.services-cluster-card:hover {
  transform: translateY(-7px);
  background-color: rgba(122, 245, 170, 0.06);
}

.services-cluster-index {
  color: rgba(160, 255, 196, 0.42);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
}

/* Photograph band, bled to the card edges through the 27px padding. */
.services-cluster-image {
  display: block;
  width: calc(100% + 54px);
  height: 170px;
  margin: 20px -27px 22px;
  object-fit: cover;
  border-top: 1px solid var(--services-line);
  border-bottom: 1px solid var(--services-line);
}

.services-cluster-card h3 {
  margin: 0 0 11px;
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
}

.services-cluster-card p {
  margin: 0;
  color: var(--services-muted);
  line-height: 1.7;
}

/* Feature sections */

.services-feature-section {
  padding: 145px 0;
}

.services-feature-section-alt {
  border-top: 1px solid var(--services-line);
  border-bottom: 1px solid var(--services-line);
  background: var(--services-deep);
}

.services-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 100px;
}

.services-feature-layout-reverse {
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.12fr);
}

.services-feature-visual {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  border: 1px solid var(--services-line);
  border-radius: 34px;
}

.services-feature-fuel {
  /* Anchored left so the totem sign stays whole when the panel narrows into a
     portrait box — a centred crop slices the BP and Shell panels in half. */
  background: #071f18 url("assets/services/feature-fuel.webp") left center /
    cover no-repeat;
}

/* Both feature panels are photographic, so the abstract rings that decorated
   the old gradients are suppressed. */
.services-feature-fuel::before,
.services-feature-fuel::after,
.services-feature-retail::before,
.services-feature-retail::after {
  display: none;
}

.services-feature-retail {
  background: #071f18 url("assets/services/feature-convenience.webp") center /
    cover no-repeat;
}

.services-feature-visual::before {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(145, 255, 184, 0.13);
  border-radius: 50%;
  content: "";
}

.services-feature-visual::after {
  position: absolute;
  inset: 25%;
  border: 1px solid rgba(145, 255, 184, 0.18);
  border-radius: 50%;
  content: "";
}

.services-feature-label {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 24px;
  border: 1px solid var(--services-line);
  border-radius: 20px;
  background: rgba(4, 27, 19, 0.72);
  backdrop-filter: blur(16px);
}

.services-feature-label small,
.services-feature-label strong {
  display: block;
}

.services-feature-label small {
  color: var(--services-muted);
}

.services-feature-label strong {
  margin-top: 7px;
  color: var(--services-green);
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
}

.services-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: var(--services-green);
  font-weight: 700;
  text-decoration: none;
}

/* Food */

.services-food-section {
  padding: 145px 0;
  background: #edf7f0;
  color: #09251a;
}

.services-food-section .services-kicker {
  color: #168749;
}

.services-food-section .services-section-heading p {
  color: rgba(8, 45, 29, 0.62);
}

.services-food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.services-food-card {
  overflow: hidden;
  border: 1px solid rgba(9, 54, 35, 0.1);
  border-radius: 28px;
  background: #ffffff;
}

.services-food-visual {
  display: grid;
  min-height: 310px;
  place-items: center;
}

.services-food-coffee {
  background: #25130c url("assets/services/food-coffee.webp") center / cover
    no-repeat;
}

.services-food-subway {
  background: #083b21 url("assets/services/food-subway.webp") center / cover
    no-repeat;
}

.services-food-delivery {
  background: #071e16 url("assets/services/food-delivery.webp") center / cover
    no-repeat;
}

/* The COFFEE / FOOD TO GO / DELIVERY captions were labelling a blank gradient.
   The card below already carries them, so they go once a photograph is in. */
.services-food-visual span {
  display: none;
}

.services-food-content {
  padding: 28px;
}

.services-food-content small {
  color: #168749;
  font-weight: 700;
  text-transform: uppercase;
}

.services-food-content h3 {
  margin: 12px 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
}

.services-food-content p {
  margin: 0;
  color: rgba(8, 45, 29, 0.62);
  line-height: 1.75;
}

/* Driver support */

.services-driver-section {
  padding: 145px 0;
}

.services-driver-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.1fr;
  gap: 100px;
}

.services-driver-list {
  display: grid;
}

.services-driver-item {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--services-line);
}

.services-driver-item:first-child {
  border-top: 1px solid var(--services-line);
}

.services-driver-item > span {
  color: var(--services-green);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.services-driver-item h3 {
  margin: 0 0 9px;
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
}

.services-driver-item p {
  margin: 0;
  color: var(--services-muted);
  line-height: 1.75;
}

/* Partners */

.services-partners-section {
  padding: 135px 0;
  border-top: 1px solid var(--services-line);
  border-bottom: 1px solid var(--services-line);
  background: var(--services-deep);
}

.services-partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.services-partner-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid var(--services-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
}

/* Light plate behind each mark. The partner logos are supplied in their full
   brand colours, and Costa's maroon is unreadable straight on the dark green
   section, so every logo sits on the same pale panel instead. */
.services-partner-logo {
  display: flex;
  width: 100%;
  height: 86px;
  flex: none;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  padding: 15px 18px;
  border-radius: 16px;
  background: #f5fbf7;
}

/* Capped in pixels, not percentages — the logos are supplied at differing
   intrinsic sizes and a percentage cap resolves against the image itself. */
.services-partner-logo img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}

.services-partner-card strong {
  margin-top: 22px;
  color: var(--services-green);
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
}

.services-partner-card span {
  margin-top: 8px;
  color: var(--services-muted);
}

/* Network */

.services-network-section {
  padding: 145px 0;
}

.services-location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.services-location-card {
  min-height: 400px;
  padding: 30px;
  border: 1px solid var(--services-line);
  border-radius: 27px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.015)
  );
}

.services-location-card small {
  color: var(--services-green);
  text-transform: uppercase;
}

.services-location-card h3 {
  margin: 14px 0 28px;
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
}

.services-location-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-location-card li {
  padding-bottom: 9px;
  border-bottom: 1px solid var(--services-line);
  color: var(--services-muted);
}

.services-location-card a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 35px;
  color: var(--services-green);
  font-weight: 700;
  text-decoration: none;
}

.services-network-action {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

/* Closing */

.services-closing {
  padding-bottom: 130px;
}

.services-closing-inner {
  padding: 80px;
  border: 1px solid var(--services-line);
  border-radius: 38px;
  background: radial-gradient(
      circle at 85% 25%,
      rgba(120, 255, 174, 0.17),
      transparent 29%
    ),
    linear-gradient(140deg, #123d30, #09271e);
}

.services-closing-inner > p {
  max-width: 700px;
}

/* Responsive */

@media (max-width: 1080px) {
  .services-hero-panel {
    display: none;
  }

  .services-intro {
    grid-template-columns: 60px 1fr;
  }

  .services-intro-copy {
    grid-column: 2;
  }

  .services-cluster-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-feature-layout,
  .services-feature-layout-reverse,
  .services-driver-layout {
    gap: 55px;
  }

  .services-partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .services-shell {
    width: min(100% - 32px, 1180px);
  }

  .services-hero {
    min-height: 790px;
    padding-top: 150px;
    padding-bottom: 75px;
  }

  .services-hero h1 {
    font-size: clamp(3.5rem, 15vw, 6rem);
  }

  .services-intro {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .services-intro-copy {
    grid-column: auto;
  }

  .services-clusters-section,
  .services-feature-section,
  .services-food-section,
  .services-driver-section,
  .services-partners-section,
  .services-network-section {
    padding: 100px 0;
  }

  .services-section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .services-cluster-grid,
  .services-food-grid,
  .services-location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-feature-layout,
  .services-feature-layout-reverse,
  .services-driver-layout {
    grid-template-columns: 1fr;
  }

  .services-feature-layout-reverse .services-feature-content {
    order: 2;
  }

  .services-feature-layout-reverse .services-feature-visual {
    order: 1;
  }

  .services-partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-closing-inner {
    padding: 50px 30px;
  }
}

@media (max-width: 560px) {
  .services-hero-actions,
  .services-closing-actions {
    display: grid;
  }

  .services-button {
    width: 100%;
  }

  .services-cluster-grid,
  .services-food-grid,
  .services-partner-grid,
  .services-location-grid {
    grid-template-columns: 1fr;
  }

  .services-feature-visual {
    min-height: 460px;
  }

  .services-driver-item {
    grid-template-columns: 40px 1fr;
  }

  .services-closing-inner {
    padding: 42px 24px;
  }
}
