:root {
  --ink: #08110e;
  --ink-soft: #12201a;
  --charcoal: #0f1814;
  --charcoal-raised: #15211c;
  --forest: #4ca242;
  --forest-deep: #2f7d32;
  --lime: #80c84b;
  --sage: #87a583;
  --sun: #f4cf66;
  --mist: #f2f6f1;
  --sand: #d9e3d9;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 30px 90px rgba(6, 12, 10, 0.22);
  --shadow-soft: 0 18px 50px rgba(6, 12, 10, 0.12);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --content-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "IBM Plex Sans", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(128, 200, 75, 0.14), transparent 22%),
    radial-gradient(circle at 100% 12%, rgba(244, 207, 102, 0.08), transparent 16%),
    var(--mist);
  line-height: 1.55;
}

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

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
}

.skip-link:focus {
  left: 1rem;
}

.shell {
  width: min(calc(100% - 2.5rem), var(--content-width));
  margin: 0 auto;
}

.section {
  padding: 5.75rem 0;
}

.section-tight {
  padding-top: 4.8rem;
  padding-bottom: 4.8rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--lime);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2.35rem;
}

.section-heading h2,
.hero h1,
.stage-card h2,
.quote-panel h2,
.principles-panel h2,
.partnership-copy h2,
.contact-copy h2,
.info-card h2 {
  margin: 0;
  font-family: "Saira Condensed", "Arial Narrow", sans-serif;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(2.6rem, 5vw, 4.45rem);
}

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

.split-heading {
  display: grid;
  gap: 1.5rem;
  align-items: end;
  max-width: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  background: rgba(10, 17, 14, 0.36);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(10, 17, 14, 0.88);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(6, 12, 10, 0.16);
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 1.2rem;
  align-items: center;
  padding: 0.95rem 0;
}

.brand img {
  width: min(21rem, 100%);
  filter: brightness(1.08);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

.site-nav a {
  position: relative;
  padding-bottom: 0.3rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--sun));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.45rem;
  justify-content: center;
  min-width: 3rem;
  min-height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.nav-toggle .nav-toggle-label {
  width: auto;
  height: auto;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.45rem;
  border: 0;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-solid {
  background: linear-gradient(135deg, var(--forest), var(--lime));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(76, 162, 66, 0.28);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--white);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: var(--charcoal);
}

.hero-backdrop,
.hero-gridlines,
.hero-orb {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  background:
    linear-gradient(120deg, rgba(8, 17, 14, 0.42), rgba(8, 17, 14, 0.88)),
    url("images/cells1200.jpg") center/cover no-repeat;
}

.hero-gridlines {
  opacity: 0.32;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(255, 255, 255, 0.16) 12.15%, transparent 12.25%, transparent 100%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.12) 0,
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px,
      transparent 102px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 102px
    );
  mix-blend-mode: screen;
}

.hero-orb {
  pointer-events: none;
  filter: blur(4px);
}

.hero-orb-one {
  inset: 6% auto auto 60%;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 207, 102, 0.55), rgba(244, 207, 102, 0.04) 64%, transparent 74%);
}

.hero-orb-two {
  inset: auto auto -8% -8%;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128, 200, 75, 0.24), rgba(128, 200, 75, 0.04) 56%, transparent 72%);
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.9fr);
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 5rem);
  padding-top: 5.5rem;
  padding-bottom: 4rem;
  color: var(--white);
}

.hero-copy {
  max-width: 44rem;
}

.hero-kicker {
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3.6rem, 8vw, 7rem);
}

.hero-lead {
  margin: 1.4rem 0 0;
  max-width: 38rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.9rem;
}

.hero-footnote {
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
}

.hero-leadership {
  margin: 0.8rem 0 0;
  color: var(--sun);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-stage {
  display: grid;
  gap: 1rem;
  transform-style: preserve-3d;
}

.stage-card,
.metric-card,
.service-card,
.country-card,
.quote-panel,
.principles-panel,
.partnership-copy,
.job-card,
.contact-card,
.contact-form {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.stage-card {
  backdrop-filter: blur(16px);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.stage-card::before,
.metric-card::before,
.service-card::before,
.country-card::before,
.job-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--lime), var(--sun));
}

.stage-card-primary {
  padding: 1.5rem;
}

.stage-card-primary::after {
  content: "";
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  border: 1px solid rgba(244, 207, 102, 0.22);
  box-shadow:
    0 0 0 20px rgba(244, 207, 102, 0.05),
    0 0 0 48px rgba(244, 207, 102, 0.03);
}

.stage-card-primary h2 {
  max-width: 15rem;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.panel-label {
  margin: 0 0 0.7rem;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.hero-signal {
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.hero-signal-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.hero-signal-value {
  margin: 0.35rem 0 0;
  font-family: "Saira Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 0.92;
}

.hero-signal-copy {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
}

.stage-card-route {
  padding: 1.1rem 1.2rem;
}

.route-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-step {
  position: relative;
  padding-left: 2.25rem;
}

.route-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0.62rem;
  top: 1.6rem;
  width: 1px;
  height: calc(100% + 0.2rem);
  background: rgba(255, 255, 255, 0.14);
}

.route-step-number {
  position: absolute;
  left: 0;
  top: 0.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--lime));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
}

.route-step-title {
  display: block;
  font-family: "Saira Condensed", "Arial Narrow", sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  text-transform: uppercase;
}

.route-step-copy {
  display: block;
  margin-top: 0.18rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.stage-card-note {
  padding: 1rem 1.2rem;
}

.stage-card-note p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.stage-card {
  animation: float-card 7s ease-in-out infinite;
}

.stage-card-route {
  animation-delay: -1.6s;
}

.stage-card-note {
  animation-delay: -3.1s;
}

.hero-marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 17, 14, 0.72);
}

.hero-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  animation: marquee 22s linear infinite;
}

.hero-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-marquee-track span::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--sun));
}

.overview-section {
  position: relative;
}

.overview-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 12% 26%, rgba(128, 200, 75, 0.16), transparent 20%);
  pointer-events: none;
}

.metric-grid,
.services-grid,
.country-grid,
.principles-grid,
.jobs-grid,
.contact-list {
  display: grid;
  gap: 1.15rem;
}

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

.metric-card {
  padding: 1.55rem;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
}

.metric-label {
  margin: 0;
  color: var(--forest-deep);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-value {
  margin: 0.5rem 0 0.55rem;
  font-family: "Saira Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(3.2rem, 5.4vw, 4.9rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.metric-copy {
  margin: 0;
  max-width: 18rem;
  color: rgba(8, 17, 14, 0.72);
}

.metric-watermark {
  position: absolute;
  right: 1rem;
  bottom: 0.7rem;
  font-family: "Saira Condensed", "Arial Narrow", sans-serif;
  font-size: 4.4rem;
  line-height: 1;
  color: rgba(8, 17, 14, 0.04);
  pointer-events: none;
}

.service-section {
  position: relative;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 16rem;
  padding: 1.45rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3) {
  grid-column: span 4;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 6;
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  background: rgba(76, 162, 66, 0.12);
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3,
.country-card h3,
.principle-card h3,
.job-card h3,
.partnership-point h3,
.contact-card h3 {
  margin: 0;
  font-family: "Saira Condensed", "Arial Narrow", sans-serif;
  font-size: 1.9rem;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.service-card p,
.country-card p,
.principle-card p,
.job-card p,
.partnership-point p,
.contact-card p {
  margin: 0;
  color: rgba(8, 17, 14, 0.74);
}

.service-tail {
  margin-top: auto;
  color: var(--forest-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-contrast {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(10, 16, 14, 0.96), rgba(12, 19, 16, 0.92)),
    url("images/panelgrad4.jpg") center/cover no-repeat;
}

.section-contrast::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(244, 207, 102, 0.12), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, 110px 110px, 110px 110px;
  opacity: 0.45;
  pointer-events: none;
}

.experience-shell {
  position: relative;
}

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

.country-card {
  padding: 1.45rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  color: var(--white);
}

.country-card p {
  color: rgba(255, 255, 255, 0.78);
}

.country-years {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.8rem;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-band {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 14, 11, 0.88), rgba(15, 23, 20, 0.94)),
    url("images/panelgrad4.jpg") center/cover no-repeat;
}

.portfolio-band::before {
  content: "";
  position: absolute;
  inset: -2rem 0 auto;
  height: 5rem;
  background: linear-gradient(135deg, transparent 50%, var(--mist) 50%);
}

.portfolio-band::after {
  content: "380 MW";
  position: absolute;
  right: max(1.5rem, calc((100vw - var(--content-width)) / 2 + 1.5rem));
  bottom: 2rem;
  font-family: "Saira Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(4rem, 14vw, 12rem);
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.portfolio-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
}

.quote-panel,
.principles-panel {
  padding: 1.7rem;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.quote-panel h2,
.principles-panel h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.quote-panel blockquote {
  margin: 1.3rem 0 0;
  padding-left: 1.2rem;
  border-left: 4px solid rgba(128, 200, 75, 0.56);
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.86);
}

.principles-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.25rem;
}

.principle-card {
  padding: 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.principle-card p {
  color: rgba(255, 255, 255, 0.78);
}

.partnership-section {
  overflow: clip;
}

.partnership-shell {
  display: grid;
  grid-template-columns: minmax(18rem, 0.88fr) minmax(0, 1.12fr);
  gap: 1.25rem;
  align-items: stretch;
}

.partnership-media {
  min-height: 34rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(15, 23, 20, 0.16), rgba(15, 23, 20, 0.48)),
    url("images/solar-partner.jpg") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.partnership-copy {
  padding: 1.8rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 0.93));
}

.partnership-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.partnership-point {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(76, 162, 66, 0.12);
  background:
    linear-gradient(135deg, rgba(76, 162, 66, 0.12), rgba(135, 165, 131, 0.05));
}

.info-section {
  position: relative;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.info-card {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 17, 14, 0.05), rgba(8, 17, 14, 0.76) 66%, rgba(8, 17, 14, 0.92));
}

.info-card-site {
  background: url("images/site1.jpg") center/cover no-repeat;
}

.info-card-community {
  background:
    linear-gradient(0deg, rgba(8, 17, 14, 0.18), rgba(8, 17, 14, 0.18)),
    url("images/solar-partner.jpg") center/cover no-repeat;
}

.info-card-copy {
  position: absolute;
  inset: auto 1.4rem 1.4rem 1.4rem;
  max-width: 30rem;
  color: var(--white);
}

.info-card .eyebrow {
  color: var(--sun);
}

.info-card h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.info-card p:last-child {
  color: rgba(255, 255, 255, 0.84);
}

.jobs-section {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(76, 162, 66, 0.94), rgba(47, 125, 50, 0.94));
}

.jobs-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 58px
    );
  opacity: 0.4;
  pointer-events: none;
}

.jobs-section .eyebrow,
.jobs-section .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.84);
}

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

.job-card {
  padding: 1.45rem;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
}

.job-card p {
  color: rgba(255, 255, 255, 0.84);
}

.conversion-section {
  position: relative;
  background:
    radial-gradient(circle at 85% 22%, rgba(244, 207, 102, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.fit-card {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(8, 17, 14, 0.08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
  box-shadow: var(--shadow-soft);
}

.fit-card-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(76, 162, 66, 0.1);
  color: var(--forest-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fit-card h3 {
  margin: 0;
  font-family: "Saira Condensed", "Arial Narrow", sans-serif;
  font-size: 2rem;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.fit-card p {
  margin: 0;
  color: rgba(8, 17, 14, 0.74);
}

.faq-section {
  position: relative;
}

.faq-list {
  display: grid;
  gap: 0.95rem;
}

.faq-item {
  border: 1px solid rgba(8, 17, 14, 0.08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 1.2rem 3.4rem 1.2rem 1.3rem;
  list-style: none;
  cursor: pointer;
  font-family: "Saira Condensed", "Arial Narrow", sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.2rem;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--forest);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.3rem 1.2rem;
  max-width: 56rem;
  color: rgba(8, 17, 14, 0.74);
}

.contact-section {
  position: relative;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.92fr);
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: var(--white);
}

.contact-copy {
  padding: 2rem;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(10, 16, 14, 0.96), rgba(20, 33, 28, 0.92)),
    url("images/panelgrad4.jpg") center/cover no-repeat;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.contact-benefits {
  display: grid;
  gap: 0.7rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-benefits li {
  position: relative;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.84);
}

.contact-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--sun);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-direct {
  min-width: 10rem;
}

.contact-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.contact-card {
  padding: 1.2rem;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.contact-card h3 {
  color: var(--sun);
}

.contact-card p,
.contact-card a {
  color: rgba(255, 255, 255, 0.86);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94));
}

.form-intro {
  margin: 0;
  color: rgba(8, 17, 14, 0.72);
}

.quick-start {
  display: grid;
  gap: 0.75rem;
}

.quick-start-label {
  margin: 0;
  color: var(--forest-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.shortcut-chip {
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(8, 17, 14, 0.1);
  border-radius: 999px;
  background: rgba(76, 162, 66, 0.06);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.shortcut-chip:hover,
.shortcut-chip:focus-visible {
  background: rgba(76, 162, 66, 0.14);
  border-color: rgba(76, 162, 66, 0.28);
  transform: translateY(-1px);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.94rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(8, 17, 14, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
  min-height: 10rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(76, 162, 66, 0.22);
  border-color: var(--forest);
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--forest-deep);
  font-size: 0.94rem;
}

.form-help {
  margin: -0.2rem 0 0;
  color: rgba(8, 17, 14, 0.68);
  font-size: 0.9rem;
}

.site-footer {
  padding: 2.2rem 0 2.6rem;
  color: rgba(255, 255, 255, 0.82);
  background: var(--charcoal);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 2rem;
  align-items: center;
}

.footer-brand {
  display: grid;
  gap: 0.8rem;
}

.footer-brand img {
  width: min(16rem, 100%);
  filter: brightness(1.04);
}

.footer-brand p,
.footer-note {
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-note {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.58);
}

.mobile-cta-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (min-width: 860px) {
  .split-heading {
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.82fr);
  }
}

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

  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
  }

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

@media (max-width: 980px) {
  .header-shell {
    grid-template-columns: auto auto 1fr;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1.25rem;
    right: 1.25rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(10, 17, 14, 0.96);
    box-shadow: var(--shadow-soft);
  }

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

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

  .hero-shell,
  .portfolio-shell,
  .partnership-shell,
  .contact-shell,
  .info-grid,
  .country-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
  }

  .hero-stage {
    max-width: 42rem;
  }

  .portfolio-band::after {
    right: 1.25rem;
  }

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

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 1.25rem), var(--content-width));
  }

  .section,
  .section-tight {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .header-shell {
    grid-template-columns: auto auto;
  }

  .brand {
    grid-column: 1 / -1;
  }

  .brand img {
    width: min(17rem, 100%);
  }

  .header-cta {
    display: none;
  }

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

  .hero-signal-grid,
  .metric-grid,
  .services-grid,
  .country-grid,
  .principles-grid,
  .jobs-grid,
  .contact-list,
  .info-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .hero-marquee-track {
    animation-duration: 28s;
  }

  .partnership-media,
  .info-card {
    min-height: 22rem;
  }

  .contact-copy,
  .contact-form,
  .partnership-copy,
  .quote-panel,
  .principles-panel,
  .hero-stage,
  .metric-card,
  .service-card,
  .country-card,
  .job-card {
    padding: 1.3rem;
  }

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

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

  .mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 17, 14, 0.96);
    backdrop-filter: blur(12px);
  }

  .mobile-cta-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.5rem;
    color: var(--white);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  body {
    padding-bottom: 3.5rem;
  }

  .stage-card,
  .metric-card,
  .service-card,
  .country-card,
  .job-card,
  .contact-card {
    box-shadow: var(--shadow-soft);
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
