:root {
  --ink: #153946;
  --muted: #60747b;
  --paper: #f4f8f0;
  --white: #ffffff;
  --line: #d8e4d3;
  --green: #72b43f;
  --green-dark: #153946;
  --green-mid: #4f8f39;
  --yellow: #cfa43b;
  --blue: #60747b;
  --shadow: 0 22px 60px rgba(21, 57, 70, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(244, 248, 240, 0.94);
  box-shadow: 0 1px 0 rgba(21, 57, 70, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(244, 248, 240, 0.52);
  border-radius: 8px;
  padding: 7px 9px;
  background: rgba(244, 248, 240, 0.82);
  box-shadow: 0 10px 26px rgba(21, 57, 70, 0.1);
  backdrop-filter: blur(10px);
  min-width: 0;
  text-decoration: none;
}

.brand-logo-img {
  display: block;
  width: min(168px, 46vw);
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  z-index: -2;
  object-fit: cover;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(21, 57, 70, 0.88) 0%, rgba(21, 57, 70, 0.62) 42%, rgba(21, 57, 70, 0.08) 100%),
    linear-gradient(0deg, rgba(21, 57, 70, 0.45) 0%, rgba(21, 57, 70, 0) 34%);
}

.hero-content {
  align-self: end;
  max-width: 760px;
  padding: 170px clamp(18px, 7vw, 96px) 96px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.2;
}

.hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.button.primary:hover {
  background: var(--green-dark);
}

.button.primary.alt {
  background: var(--green-dark);
}

.button.primary.alt:hover {
  background: var(--green-mid);
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-block: 1px solid var(--line);
  background: var(--white);
}

.stats div {
  min-height: 132px;
  padding: 28px clamp(16px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

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

.stats strong {
  display: block;
  color: var(--green);
  font-size: 36px;
  line-height: 1;
}

.country-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: baseline;
  padding: 16px clamp(18px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: #fbfdf8;
}

.country-strip strong {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.country-strip span {
  color: var(--muted);
  font-size: 14px;
}

.stats span,
.section-heading p,
.split p,
.visual-card h3,
.product-grid p,
.timeline p,
.markets p,
.market-list span,
.edge-grid p,
.signal-callout p,
.contact-panel p {
  color: var(--muted);
}

.section {
  padding: 92px clamp(18px, 7vw, 96px);
}

.service-options {
  background: #ffffff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-grid a {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  background: #fbfdf8;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(21, 57, 70, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-grid a:hover {
  border-color: rgba(114, 180, 63, 0.42);
  box-shadow: 0 18px 42px rgba(21, 57, 70, 0.11);
  transform: translateY(-3px);
}

.service-grid span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-dark);
  font-weight: 900;
}

.service-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
}

.visual-story {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 14px;
  padding: 18px clamp(18px, 7vw, 96px) 0;
  background: var(--paper);
}

.visual-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  isolation: isolate;
  box-shadow: 0 16px 44px rgba(21, 57, 70, 0.14);
}

.visual-card.large {
  grid-row: span 2;
  min-height: 620px;
}

.visual-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.visual-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(0deg, rgba(21, 57, 70, 0.74) 0%, rgba(21, 57, 70, 0.2) 56%, rgba(21, 57, 70, 0.06) 100%),
    linear-gradient(90deg, rgba(21, 57, 70, 0.35), rgba(21, 57, 70, 0));
}

.visual-card:hover img {
  transform: scale(1.045);
}

.visual-card div {
  position: absolute;
  inset: auto 0 0;
  padding: clamp(22px, 4vw, 38px);
}

.visual-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-card h2,
.visual-card h3 {
  max-width: 620px;
  margin: 0;
}

.visual-card h2 {
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.05;
}

.visual-card h3 {
  color: rgba(255, 255, 255, 0.88);
  font-size: 23px;
}

.split,
.section-heading,
.markets-inner,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.section-heading {
  margin-bottom: 34px;
  align-items: end;
}

.section-heading p {
  max-width: 520px;
  font-size: 18px;
}

.intro {
  background: var(--paper);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.product-grid article {
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(21, 57, 70, 0.05);
}

.product-grid article:first-child {
  border-color: rgba(31, 122, 76, 0.34);
  box-shadow: 0 18px 45px rgba(21, 57, 70, 0.11);
}

.product-grid article img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-grid article h3,
.product-grid article p {
  padding-inline: 24px;
}

.product-grid article h3 {
  margin-top: 0;
}

.product-grid article p {
  padding-bottom: 24px;
}

.product-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin: -24px 24px 18px;
  position: relative;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.process {
  background: #e7f0e2;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  min-height: 250px;
  padding: 24px;
  border-top: 3px solid var(--green);
  border-right: 1px solid rgba(21, 57, 70, 0.16);
  background: rgba(255, 255, 255, 0.54);
}

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

.timeline span {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 46px;
  color: var(--green);
  font-weight: 900;
}

.timeline b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(21, 57, 70, 0.1);
  font-size: 20px;
  font-style: normal;
}

.markets {
  padding: 96px clamp(18px, 7vw, 96px);
  color: var(--white);
  background: var(--green-dark);
}

.markets p,
.markets .section-kicker,
.market-list span {
  color: rgba(255, 255, 255, 0.76);
}

.market-list {
  display: grid;
  gap: 14px;
}

.market-list div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

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

.markets-footnote {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.edge {
  background: #eef6ea;
}

.edge .section-heading {
  grid-template-columns: 1fr;
}

.edge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.edge-grid article {
  min-height: 310px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.edge-grid span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-dark);
  font-weight: 900;
}

.signal-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(114, 180, 63, 0.28);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: var(--white);
}

.signal-callout strong {
  font-size: 21px;
  line-height: 1.2;
}

.signal-callout p {
  margin: 0;
}

.signal-callout a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 16px;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

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

.pulse-card {
  max-width: 980px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  padding: 26px;
  background: #fbfdf8;
  box-shadow: 0 18px 42px rgba(21, 57, 70, 0.08);
}

.lme-card {
  max-width: 980px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #f7faf3;
  box-shadow: 0 14px 34px rgba(21, 57, 70, 0.06);
}

.pulse-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.pulse-meta span {
  color: var(--green-dark);
}

.pulse-numbers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.lme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.lme-grid div {
  min-height: 124px;
  padding: 20px;
  border: 1px solid rgba(35, 63, 72, 0.16);
  border-radius: 8px;
  background: var(--white);
}

.pulse-numbers div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.pulse-numbers strong,
.pulse-numbers span,
.lme-grid strong,
.lme-grid span {
  display: block;
}

.pulse-numbers strong,
.lme-grid strong {
  color: var(--green-dark);
  font-size: 28px;
  line-height: 1;
}

.lme-grid strong {
  font-size: 18px;
  line-height: 1.2;
}

.pulse-numbers span,
.lme-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.lme-grid .lme-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
}

.lme-grid .lme-price-row b {
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}

.lme-grid .lme-price-row em {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 6px;
  padding: 4px 9px;
  color: var(--white);
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.lme-grid .lme-price-row em.is-up {
  background: #2e7d5a;
}

.lme-grid .lme-price-row em.is-down {
  background: #9a3151;
}

.lme-grid .lme-price-row em.is-flat {
  background: #273f5c;
}

.lme-grid small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pulse-card p,
.lme-card p {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.35;
}

.pulse-source-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.pulse-source-list li {
  color: var(--muted);
  font-size: 13px;
}

.pulse-source-list a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.lme-source {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.trade-paths {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  background: #e7f0e2;
}

.trade-path {
  min-height: 320px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.trade-path span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.trade-path p {
  color: var(--muted);
}

.trade-path a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border-radius: 6px;
  padding: 0 16px;
  color: var(--white);
  background: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

.quote-form,
.contact-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-form {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

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

textarea {
  resize: vertical;
}

.contact-panel a {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.contact-panel hr {
  margin: 24px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 7vw, 96px);
  color: rgba(255, 255, 255, 0.75);
  background: #102f39;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.045) translate3d(-1.2%, -0.8%, 0);
  }
}

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

  .hero img,
  .visual-card img,
  .reveal {
    animation: none;
    transition: none;
    transform: none;
  }

  .reveal {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .visual-story {
    grid-template-columns: 1fr;
  }

  .visual-card.large {
    min-height: 460px;
  }

  .stats,
  .service-grid,
  .product-grid,
  .timeline,
  .edge-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .section-heading,
  .markets-inner,
  .contact-layout,
  .signal-callout,
  .trade-paths {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo-img {
    width: min(148px, 46vw);
    max-height: 38px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 70px 16px auto;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: 86vh;
  }

  .visual-story {
    padding-inline: 18px;
  }

  .visual-card,
  .visual-card.large {
    min-height: 360px;
  }

  .hero-content {
    padding: 130px 18px 64px;
  }

  .hero p {
    font-size: 17px;
  }

  .pulse-card p {
    font-size: 18px;
  }

  .pulse-numbers,
  .lme-grid {
    grid-template-columns: 1fr;
  }

  .stats,
  .service-grid,
  .product-grid,
  .timeline,
  .edge-grid {
    grid-template-columns: 1fr;
  }

  .stats div,
  .timeline li {
    border-right: 0;
  }

  .section,
  .markets {
    padding-block: 68px;
  }

  .site-footer {
    display: grid;
  }

  .edge-note {
    display: grid;
  }
}
