
:root {
  --slate-900: #0F1E2B;
  --slate-850: #122436;
  --slate-800: #162A3D;
  --slate-750: #21384E;
  --slate-700: #31415A;
  --surface: #FFFFFF;
  --surface-alt: #F5F6F4;
  --surface-soft: #EEF1EE;
  --surface-tint: #EAF1EB;
  --text: #102229;
  --text-muted: #5F6F76;
  --text-soft: #6B7B82;
  --border: #CFD8D4;
  --border-dark: rgba(255,255,255,.12);
  --white-muted: rgba(255,255,255,.76);
  --white-soft: rgba(255,255,255,.62);
  --white-faint: rgba(255,255,255,.46);
  --accent: #548B5B;
  --accent-strong: #548B5B;
  --accent-soft: #7EAA84;
  --accent-tint: #E5EEE6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface-alt);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 16px; top: 16px; z-index: 999;
  background: #fff; padding: 10px 14px; border-radius: 8px;
}

.site-header {
  position: fixed; z-index: 100; inset: 0 0 auto 0;
  background: rgba(49, 65, 90, .95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap {
  height: 92px; display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; }
.brand-logo { width: 250px; height: auto; display: block; }
.logo-word { font: 600 31px Arial, sans-serif; fill: #fff; letter-spacing: .2px; }
.logo-tag { font: 400 12px Arial, sans-serif; fill: #fff; letter-spacing: 1.7px; }
.site-nav {
  display: flex; align-items: center; gap: 25px;
  font-size: 14px; font-weight: 520; color: #fff;
}
.site-nav > a:not(.nav-cta) { opacity: .84; }
.site-nav > a:hover { opacity: 1; }
.nav-cta {
  border: 1px solid rgba(255,255,255,.34);
  padding: 10px 16px; border-radius: 999px;
}
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span:not(.sr-only) {
  display: block; width: 24px; height: 2px; background: #fff; margin: 5px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.hero {
  position: relative; min-height: 820px; overflow: hidden;
  padding: 205px 0 90px;
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-850) 58%, #173044 100%);
  color: #fff;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.orb {
  position: absolute; border-radius: 50%; opacity: .72; filter: blur(2px);
}
.orb-a {
  width: 440px; height: 440px; right: -120px; top: 120px;
  background: radial-gradient(circle at 35% 35%, rgba(84,139,91,.42), rgba(84,139,91,.10) 58%, transparent 72%);
}
.orb-b {
  width: 320px; height: 320px; right: 210px; bottom: -150px;
  background: radial-gradient(circle, rgba(126,170,132,.14), transparent 68%);
}
.hero-inner { position: relative; z-index: 2; }
.eyebrow, .section-kicker {
  text-transform: uppercase; letter-spacing: .16em; font-weight: 720; font-size: 12px;
}
.eyebrow { color: var(--accent-soft); margin-bottom: 30px; }
.hero h1 {
  margin: 0; max-width: 960px;
  font-weight: 600; font-size: clamp(58px, 7vw, 96px);
  line-height: .98; letter-spacing: -.052em;
}
.hero h1 span { color: var(--accent-soft); }
.hero-copy {
  max-width: 720px; margin: 34px 0 36px;
  font-size: 20px; line-height: 1.65; color: var(--white-muted);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 20px; border-radius: 999px; font-weight: 680; font-size: 14px;
  transition: transform .2s ease, opacity .2s ease, background-color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--accent); color: #fff; }
.button.ghost { border: 1px solid rgba(255,255,255,.3); color: #fff; }
.hero-proof {
  margin-top: 100px; padding-top: 28px; max-width: 820px;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 30px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-proof div { display: flex; flex-direction: column; gap: 5px; }
.hero-proof strong { font-size: 15px; }
.hero-proof span { font-size: 13px; color: var(--white-faint); }

.section { padding: 110px 0; }
.section-kicker, .section-kicker.light-green, .section-kicker.light { color: var(--accent-strong); margin-bottom: 22px; }

.vision-section { background: var(--surface); }
.vision-grid {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start;
}
.vision-section h2,
.experience-section h2,
.contact-section h2,
.why-section h2,
.esg-section h2 {
  margin: 0;
  font-size: clamp(40px, 4.4vw, 64px); line-height: 1.04; letter-spacing: -.045em; font-weight: 600;
}
.vision-copy {
  max-width: 690px; font-size: 19px; color: var(--text-muted);
}
.vision-copy p { margin: 0 0 24px; line-height: 1.8; }

.solutions-section {
  background: var(--slate-850);
  color: #fff;
}
.solutions-heading {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: end; margin-bottom: 48px;
}
.solutions-heading h2 {
  margin: 0; font-size: clamp(48px, 5.5vw, 76px); line-height: 1.02; letter-spacing: -.045em; font-weight: 520;
}
.solutions-heading h2 span { color: var(--accent-strong); }
.solutions-intro { color: var(--white-soft); font-size: 17px; line-height: 1.7; }
.role-note { border-left: 3px solid var(--accent); padding-left: 18px; margin-top: 22px; }
.solution-tabs {
  display: grid; grid-template-columns: repeat(6,1fr);
  border-bottom: 1px solid rgba(255,255,255,.12); overflow-x: auto;
}
.solution-tab {
  min-width: 165px; cursor: pointer;
  background: none; border: 0; border-top: 1px solid transparent;
  color: rgba(255,255,255,.66); padding: 16px 14px 18px; text-align: left; font-size: 14px;
}
.solution-tab span {
  display: block; margin-bottom: 8px;
  color: var(--accent); font-size: 10px; letter-spacing: .12em;
}
.solution-tab.active {
  color: #fff; border: 1px solid rgba(255,255,255,.12); border-bottom-color: #13263a; border-radius: 12px 12px 0 0;
}
.solution-panel {
  display: none; grid-template-columns: 1.15fr .85fr; gap: 80px;
  padding: 48px; border: 1px solid rgba(255,255,255,.12); border-top: 0; border-radius: 0 0 18px 18px;
}
.solution-panel.active { display: grid; }
.solution-panel h3 {
  margin: 10px 0 18px; font-size: 44px; letter-spacing: -.035em; font-weight: 520;
}
.solution-panel p { color: var(--white-soft); line-height: 1.7; }
.solution-lead { font-size: 18px; color: var(--white-muted) !important; }
.text-link { display: inline-block; color: var(--accent-soft); font-weight: 620; margin-top: 16px; }
.capability-box {
  align-self: start; background: rgba(5,12,21,.55); padding: 32px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.06);
}
.capability-box ul { list-style: none; padding: 0; margin: 24px 0; }
.capability-box li {
  position: relative; padding: 12px 0 12px 30px; color: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.capability-box li::before {
  content: ""; position: absolute; left: 0; top: 23px; width: 16px; height: 1px; background: var(--accent);
}
.capability-note {
  padding: 18px; border-radius: 9px; font-size: 13px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); color: var(--white-soft);
}

.approach-section {
  background: var(--slate-900);
  color: #fff;
}
.light-heading {
  margin: 0 0 70px; font-size: clamp(44px, 5vw, 70px);
  line-height: 1.02; letter-spacing: -.045em; font-weight: 560;
}
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.12); }
.steps article { min-height: 280px; background: var(--slate-900); padding: 30px 26px 40px; }
.steps span { display: block; color: var(--accent-soft); font-size: 12px; margin-bottom: 80px; }
.steps h3 { font-size: 22px; margin: 0 0 12px; }
.steps p { margin: 0; color: var(--white-soft); font-size: 14px; line-height: 1.65; }

.experience-section { background: var(--surface-alt); }
.experience-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.experience-copy { margin-top: 28px; max-width: 520px; font-size: 18px; color: var(--text-muted); line-height: 1.7; }
.experience-list { border-top: 1px solid var(--border); }
.experience-list > div {
  display: grid; grid-template-columns: 60px 1fr; column-gap: 10px;
  padding: 27px 0; border-bottom: 1px solid var(--border);
}
.experience-list span { grid-row: 1 / 3; color: #7a8c85; font-size: 12px; }
.experience-list strong { font-size: 18px; }
.experience-list p { margin: 7px 0 0; color: var(--text-soft); font-size: 14px; }

.leadership-section {
  background: var(--slate-850);
  color: #fff;
}
.leadership-section h2 {
  margin: 0; max-width: 950px;
  font-size: clamp(48px, 5vw, 72px); line-height: 1.02; letter-spacing: -.045em; font-weight: 520;
}
.leadership-intro {
  margin: 28px 0 56px; max-width: 780px;
  color: var(--white-soft); font-size: 18px; line-height: 1.7;
}
.leadership-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.leader-card {
  min-height: 255px; padding: 28px; border-radius: 16px;
  background: var(--slate-800); border: 1px solid rgba(255,255,255,.1);
}
.leader-card h3 { font-size: 20px; margin: 0 0 7px; }
.leader-role {
  margin-bottom: 18px; text-transform: uppercase; letter-spacing: .14em;
  color: var(--accent); font-size: 12px;
}
.leader-card p { color: var(--white-soft); font-size: 14px; line-height: 1.7; }
.leadership-note { color: rgba(255,255,255,.46); font-size: 12px; margin: 26px 0 0; }

.why-section { background: var(--surface-soft); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 52px; }
.why-grid article {
  min-height: 260px; padding: 30px; border-radius: 16px;
  background: var(--surface); border: 1px solid rgba(16,34,41,.08);
}
.why-grid h3 { font-size: 22px; line-height: 1.25; margin: 0 0 24px; }
.why-grid p { margin: 0; color: var(--text-soft); line-height: 1.7; }

.esg-section {
  background: var(--slate-850);
  color: #fff;
}
.esg-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; }
.esg-intro { margin-top: 28px; max-width: 520px; color: var(--white-soft); font-size: 17px; line-height: 1.75; }
.esg-columns { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.esg-columns article {
  min-height: 300px; padding: 26px; border-radius: 16px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
}
.esg-columns span {
  display: inline-grid; place-items: center; width: 38px; height: 38px; margin-bottom: 50px;
  border-radius: 50%; border: 1px solid var(--accent); color: var(--accent); font-weight: 700;
}
.esg-columns h3 { font-size: 20px; margin: 0 0 14px; }
.esg-columns p { margin: 0; color: var(--white-soft); font-size: 14px; line-height: 1.7; }
.esg-note { margin-top: 42px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.esg-note p { max-width: 980px; color: var(--white-soft); line-height: 1.75; }

.statement { padding: 105px 0; background: #EEF3EF; }
.statement p { margin: 0 0 20px; font-size: 12px; font-weight: 700; letter-spacing: .14em; color: var(--accent-strong); }
.statement h2 {
  max-width: 1020px; margin: 0;
  font-size: clamp(38px, 4.4vw, 62px); font-weight: 520; letter-spacing: -.04em; line-height: 1.08;
}
.statement em { font-style: normal; color: var(--accent-strong); }

.contact-section { padding-bottom: 125px; background: var(--surface); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.contact-panel { padding-top: 44px; }
.contact-panel > p { margin: 0 0 30px; font-size: 19px; color: var(--text-muted); line-height: 1.7; }
.contact-details {
  display: grid; gap: 22px; margin: 0 0 32px; padding: 24px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.contact-item { display: grid; grid-template-columns: 120px 1fr; gap: 18px; }
.contact-item > span {
  padding-top: 3px; text-transform: uppercase; letter-spacing: .12em; font-weight: 720; font-size: 11px;
  color: var(--accent-strong);
}
.contact-item a {
  font-size: 18px; font-weight: 650; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px;
}
.contact-item address { font-style: normal; color: var(--text-muted); line-height: 1.7; }
.contact-panel .primary { background: var(--slate-850); color: #fff; }

.site-footer { background: var(--slate-700); color: #fff; padding: 34px 0 22px; }
.footer-top, .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-bottom { padding-top: 20px; margin-top: 20px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.58); font-size: 11px; }
.footer-links > a {
  font-size: 12px; color: rgba(255,255,255,.78); text-decoration: underline; text-underline-offset: 3px;
}
.footer-logo { width: 205px; }

.privacy-hero { padding: 160px 0 70px; background: var(--slate-700); color: #fff; }
.privacy-hero h1 {
  margin: 0 0 18px; font-size: clamp(46px, 6vw, 76px);
  letter-spacing: -.045em; line-height: 1; font-weight: 600;
}
.privacy-hero p { max-width: 720px; color: var(--white-muted); font-size: 18px; }
.privacy-body { padding: 80px 0 110px; background: var(--surface); }
.privacy-content { max-width: 850px; }
.privacy-content h2 { font-size: 28px; margin: 46px 0 14px; letter-spacing: -.025em; }
.privacy-content h2:first-child { margin-top: 0; }
.privacy-content p, .privacy-content li { color: #53656d; line-height: 1.75; }
.privacy-content ul { padding-left: 22px; }
.privacy-callout {
  margin: 28px 0; padding: 18px 20px; border-radius: 0 8px 8px 0;
  background: #eef6f2; border-left: 3px solid var(--accent-strong);
}
.privacy-meta { font-size: 13px; color: #718087; }

@media (max-width: 1000px) {
  .site-nav { gap: 16px; }
  .leadership-grid { grid-template-columns: repeat(2,1fr); }
  .solution-tabs { grid-template-columns: repeat(3,1fr); }
  .solution-panel { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 900px) {
  .site-nav {
    display: none; position: absolute; top: 92px; left: 0; right: 0;
    padding: 26px 24px 30px; background: var(--slate-700);
    flex-direction: column; align-items: flex-start; border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .hero { min-height: auto; padding-top: 175px; }
  .hero-proof { margin-top: 70px; }
  .vision-grid,
  .solutions-heading,
  .experience-grid,
  .contact-grid,
  .esg-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .esg-columns { grid-template-columns: 1fr; }
  .solution-tabs { display: flex; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 30px, 1180px); }
  .nav-wrap { height: 82px; }
  .brand-logo { width: 205px; }
  .site-nav { top: 82px; }
  .hero { padding: 150px 0 70px; }
  .hero h1 { font-size: 52px; }
  .hero-copy { font-size: 17px; }
  .hero-proof { grid-template-columns: 1fr; gap: 17px; }
  .section { padding: 80px 0; }
  .steps, .leadership-grid, .why-grid { grid-template-columns: 1fr; }
  .solution-panel { padding: 28px 20px; }
  .solution-panel h3 { font-size: 36px; }
  .contact-item { grid-template-columns: 1fr; gap: 5px; }
  .footer-top { align-items: flex-start; flex-direction: column; }
  .statement { padding: 80px 0; }
}

.nav-cta:hover{border-color:var(--accent-soft);color:#fff}.solution-tab.active span,.leader-role,.section-kicker,.section-kicker.light-green,.section-kicker.light,.statement p,.statement em,.contact-item>span{color:var(--accent-strong)}
