@font-face { font-family: ibmplexsans; src: url('fonts/IBMPlexSans-Regular.ttf'); }
@font-face { font-family: ibmplexsanslight; src: url('fonts/IBMPlexSans-LightItalic.ttf'); }

:root{
  --forest: #003300;
  --forest-2: #014d24;
  --forest-3: #001f14;
  --fog: #99CFAB;
  --breeze: #D1F7E5;
  --night-black: #000000;
  --light-the-way: #33FF99;
  --text: var(--#0B1B0F);
  --muted: rgba(11,27,15,0.70);

  --radius-lg: 18px;
  --radius-md: 12px;

  --shadow: 0 10px 30px rgba(0,0,0,0.14);
  --shadow-strong: 0 10px 24px rgba(0,0,0,0.18);

  --container: 1120px;

  /* Simple top-to-bottom gradients instead of flat fills */
  --grad-forest: linear-gradient(180deg, var(--forest-2) 0%, var(--forest) 52%, var(--forest-3) 100%);
}

*{ box-sizing: border-box; margin:0; padding:0; font-family: ibmplexsans, sans-serif; }
html, body{ height:100%; }
body{ background: var(--breeze); color: var(--text); }
a{ color: inherit; text-decoration: none; }

.container{ max-width: var(--container); margin: 0 auto; padding: 0px 30px 0px; }

/* NAV */
.nav{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 50;
  background: var(--forest);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.nav-inner{
  height: 64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}
.brand img{ height: 32px; display:block; }
.nav-right{ display:flex; align-items:center; gap: 18px; }
.nav-links{ display:flex; align-items:center; gap: 18px; }
.nav-links a{
  color: rgba(255,255,255,0.80);
  font-size: 14px;
  letter-spacing: 0.2px;
}
/*.nav-links a.active{ color: var(--light-the-way); }*/

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  cursor: pointer;
  user-select:none;
  white-space: nowrap;
}
.btn-primary{
  background: var(--fog);
  border-color: transparent;
  color: var(--text);
}

.lang-wrap{ position: relative; }
.lang-toggle{
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.90);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 14px;
  cursor: pointer;
  transition: background 140ms ease, border-color 140ms ease;
}
.lang-toggle:hover{
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.26);
}

.menu-toggle{
  display:none;
  border:none;
  background: transparent;
  color: rgba(255,255,255,0.92);
  font-size: 28px;
  line-height: 1;
  cursor:pointer;
  padding: 8px 10px;
  border-radius: 10px;
}
@media (max-width: 860px){
  .menu-toggle{ display:inline-flex; }
  .nav-links{
    display:none;
    position:absolute;
    right: 18px;
    top: 64px;
    background: var(--forest);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    padding: 10px;
    min-width: 210px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding: 10px 10px; border-radius: 10px; }
  .nav-links a:hover{ background: rgba(255,255,255,0.06); }
}

.page-top-spacer{ height: 64px; }

/* WAVES */
.wave{ display:block; width: 100%; height: 100px; shape-rendering: crispEdges; }
.wave.bottom{ margin-top: -1px; margin-bottom: -2px; }
.wave.top{ margin-top: -2px; margin-bottom: -1px; }
@media (max-width: 860px){
  .wave.bottom{ margin-bottom: -8px; }
  .wave.top{ margin-top: -8px; }
}
.wave-fill-bg{ fill: var(--breeze); }
.wave-fill-forest{ fill: var(--forest); }
.wave-fill-forest-2{ fill: var(--forest-2); }
.wave-stroke-fog{ stroke: var(--fog); stroke-width: 7; fill: none; }
.wave-stroke-forest{ stroke: var(--forest); stroke-width: 10; fill: none; }
.wave-stroke-light{ stroke: var(--light-the-way); stroke-width: 10; fill: none; }
.wave.wave-tall { height: clamp(220px, 45vw, 800px); }

/* WAVES v2 (clip-path test — om-oss.html only, for now) */
.wave-clip{ display:block; width:100%; height:100px; }
.wave-clip.bottom{ margin-top:-1px; margin-bottom:-2px; }
.wave-clip.top{ margin-top:-2px; margin-bottom:-1px; }
@media (max-width:860px){
  .wave-clip.bottom{ margin-bottom:-8px; }
  .wave-clip.top{ margin-top:-8px; }
}
.wave-clip-hero-bottom{
  background: var(--breeze);
  clip-path: polygon(0.0% 0.0%, 11.98% 12.78%, 22.95% 23.68%, 32.95% 32.81%, 42.03% 40.28%, 50.24% 46.18%, 57.62% 50.62%, 64.21% 53.72%, 70.06% 55.56%, 75.22% 56.25%, 79.73% 55.9%, 83.63% 54.62%, 86.98% 52.5%, 89.81% 49.65%, 92.18% 46.18%, 94.12% 42.19%, 95.68% 37.78%, 96.91% 33.06%, 97.85% 28.12%, 98.55% 23.09%, 99.05% 18.06%, 99.41% 13.12%, 99.65% 8.4%, 99.83% 3.99%, 100.0% 0.0%, 100.0% 100.0%, 0.0% 100.0%);
}
.wave-clip-section2-bottom{
  background: var(--forest-2);
  clip-path: polygon(0.0% 100.0%, 6.04% 88.02%, 11.68% 77.08%, 16.94% 67.19%, 21.88% 58.33%, 26.5% 50.52%, 30.86% 43.75%, 34.98% 38.02%, 38.89% 33.33%, 42.63% 29.69%, 46.22% 27.08%, 49.71% 25.52%, 53.12% 25.0%, 56.49% 25.52%, 59.85% 27.08%, 63.23% 29.69%, 66.67% 33.33%, 70.19% 38.02%, 73.83% 43.75%, 77.62% 50.52%, 81.6% 58.33%, 85.79% 67.19%, 90.23% 77.08%, 94.96% 88.02%, 100.0% 100.0%, 100.0% 100.0%, 0.0% 100.0%);
}
.wave-clip-quoteband-bottom{
  background: var(--breeze);
  clip-path: polygon(0.0% 0.0%, 9.48% 12.78%, 18.17% 23.68%, 26.11% 32.81%, 33.35% 40.28%, 39.93% 46.18%, 45.9% 50.62%, 51.3% 53.72%, 56.17% 55.56%, 60.57% 56.25%, 64.54% 55.9%, 68.12% 54.62%, 71.35% 52.5%, 74.3% 49.65%, 76.98% 46.18%, 79.47% 42.19%, 81.79% 37.78%, 84.0% 33.06%, 86.13% 28.12%, 88.24% 23.09%, 90.37% 18.06%, 92.57% 13.12%, 94.88% 8.4%, 97.34% 3.99%, 100.0% 0.0%, 100.0% 100.0%, 0.0% 100.0%);
}
.wave-clip-cta-top{
  background: var(--forest);
  clip-path: polygon(0.0% 100.0%, 7.7% 88.02%, 14.86% 77.08%, 21.5% 67.19%, 27.66% 58.33%, 33.37% 50.52%, 38.67% 43.75%, 43.59% 38.02%, 48.15% 33.33%, 52.39% 29.69%, 56.35% 27.08%, 60.06% 25.52%, 63.54% 25.0%, 66.84% 25.52%, 69.98% 27.08%, 73.0% 29.69%, 75.93% 33.33%, 78.8% 38.02%, 81.64% 43.75%, 84.49% 50.52%, 87.38% 58.33%, 90.35% 67.19%, 93.42% 77.08%, 96.62% 88.02%, 100.0% 100.0%, 100.0% 100.0%, 0.0% 100.0%);
}

.wave-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 45%;
  width: 100%;
  height: 300px;
  z-index: 2;
  pointer-events: none;
}

/* HERO */
.hero{
  background: var(--grad-forest);
  padding: 42px 0px 0px;
  position: relative;
  overflow: hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 1.25fr;
  gap: 26px;
  align-items: center;
  padding: 26px 10px 30px;
}
.hero h1{
  font-family: ibmplexsanslight, ibmplexsans, sans-serif;
  font-size: 64px;
  line-height: 0.95;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}
.hero p{
  color: rgba(255,255,255,0.76);
  font-size: 16px;
  line-height: 1.6;
  max-width: 38ch;
  margin-bottom: 18px;
}
.hero-actions{ display:flex; gap: 10px; flex-wrap: wrap; }
.hero-card{
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  /*min-height: 260px;*/
}
.hero-card img{ width:100%; height:100%; object-fit: cover; display:block; }

@media (max-width: 980px){
  .hero h1{ font-size: 54px; }
}
@media (max-width: 860px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero h1{ font-size: 52px; }
  .hero p{ max-width: none; }
}

/* COMMON SECTIONS */
.section{ padding: 0px 0; }
.kicker{ font-size: 16px; color: var(--muted); margin-bottom: 26px; }
.h2{
  font-family: ibmplexsanslight, ibmplexsans, sans-serif;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
  color: rgba(11,27,15,0.92);
  overflow-wrap: break-word;
}
.lead{ color: rgba(11,27,15,0.70); line-height:1.7; max-width: 80ch; }
@media (max-width: 860px){ .h2{ font-size: 46px; } }

/* DARK PANEL (teaser band) */
.panel-dark{ background: var(--grad-forest); padding: 18px 0px 0px; }
.teaser{
  display:grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 24px;
  align-items: center;
  padding: 12px 20px 28px;
}
.teaser-card{
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  min-height: 220px;
}
.teaser-card img{ width:100%; height:100%; object-fit: cover; display:block; }
.teaser h2{
  font-family: ibmplexsanslight, ibmplexsans, sans-serif;
  color: var(--light-the-way);
  font-size: 44px;
  line-height: 1.0;
  margin-bottom: 8px;
}
.teaser p{
  color: rgba(255,255,255,0.76);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 14px;
}

@media (max-width: 860px){
  .teaser{ grid-template-columns: 1fr; }
  .teaser h2{ font-size: 40px; }
}

/* TARGETS */
.targets{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
  text-align:center;
}
.target{
  padding: 18px 14px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,1.00);
  border: 1px solid rgba(0,0,0,0.06);
}
.target svg{ width: 78px; height: 78px; margin-bottom: 10px; }
.target img{ width: 78px; height: auto; margin-bottom: 10px; }
.target .title{ font-size: 16px; color: rgba(11,27,15,0.85); }
.target .title span{ display:inline-block; margin-left: 6px; opacity: 0.6; }
@media (max-width: 860px){
  .targets{
    display:flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 10px;
  }
  .target{
    flex: 0 0 clamp(220px, 78%, 300px);
    scroll-snap-align: start;
  }
}
/* NEWS */
.news-wrap{ background: var(--grad-forest); padding: 0px 0px 0px; position: relative; }
.news-title{
  color: rgba(255,255,255,0.92);
  font-family: ibmplexsanslight, ibmplexsans, sans-serif;
  font-size: 44px;
  margin-bottom: 18px;
}
.cards{
  display:flex;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  gap: 16px;
  padding-bottom: 28px;
}
.card{
  flex: 0 0 clamp(260px, 31%, 360px);
  scroll-snap-align: start;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-md);
  overflow:hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(0,0,0,0.06);
}
.card img{ width:100%; height: 150px; object-fit: cover; display:block; }
.card-body{ padding: 14px 14px 16px; }
.card h3{ font-size: 14px; margin-bottom: 6px; color: rgba(11,27,15,0.92); }
.meta{ font-size: 11px; color: rgba(11,27,15,0.55); margin-bottom: 8px; }
.card p{ font-size: 12.5px; line-height: 1.55; color: rgba(11,27,15,0.78); }
/*
@media (max-width: 980px){
  .cards{ grid-template-columns: 1fr; }
  .card img{ height: 190px; }
}
*/

/* PARTNERS */
.partners{ padding: 32px 0 10px; text-align:center; }
.partners h3{ font-size: 16px; color: rgba(11,27,15,0.60); margin-bottom: 18px; font-weight: 400; }
.partner-logos{ display:flex; gap: 26px; flex-wrap: wrap; justify-content:center; align-items:center; }
/*.partner-logos img{ height: 100px; opacity: 0.92; filter: grayscale(100%); }*/
.partner-logos img{ height: 100px; padding: 10px; opacity: 1.00; }

/* CTA */
.cta{ padding: 44px 0px 0px; }
.cta h2{
  font-family: ibmplexsanslight, ibmplexsans, sans-serif;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.6px;
  color: rgba(11,27,15,0.92);
  margin-bottom: 10px;
  overflow-wrap: break-word;
}
.cta p{ color: rgba(11,27,15,0.70); max-width: 52ch; line-height: 1.6; margin-bottom: 18px; }
@media (max-width: 860px){ .cta h2{ font-size: 46px; } }

/* TEAM */
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.person{
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  overflow:hidden;
}
.person .photo{
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display:block;
}
.person .body{ padding: 14px; }
.person .name{ font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.person .role{ font-size: 12px; color: rgba(11,27,15,0.70); margin-bottom: 10px; }
.person .desc{ font-size: 12.5px; color: rgba(11,27,15,0.78); line-height: 1.55; }
.person .contact{
  margin-top: 12px;
  font-size: 12.5px;
  color: rgba(11,27,15,0.78);
}
.person .contact a{ text-decoration: none; text-underline-offset: 3px; }
/*
@media (max-width: 980px){ .team-grid{ grid-template-columns:1fr; } }
*/

/* CONTACT PAGE */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
/*
@media (max-width: 980px){ .contact-grid{ grid-template-columns:1fr; } }
*/

.form{
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  padding: 16px;
}
.form label{
  display:block;
  font-size: 12px;
  color: rgba(11,27,15,0.75);
  margin: 10px 0 6px;
}
.form input, .form textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.85);
  outline: none;
  font-size: 14px;
}
.form textarea{ min-height: 130px; resize: vertical; }
.form .submit{
  margin-top: 12px;
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--fog);
  color: var(--text);
  cursor: pointer;
  font-size: 14px;
}

/* QUOTE BAND */
.quote-band{
  background: var(--grad-forest);
  padding: 30px 0px 0px;
  position: relative;
}
.quote{
  text-align:center;
  color: rgba(255,255,255,0.86);
  font-family: ibmplexsanslight, ibmplexsans, sans-serif;
  font-size: 22px;
  line-height: 1.7;
  max-width: 60ch;
  margin: 0 auto;
}
.quote .who{
  display:block;
  margin-top: 10px;
  color: rgba(255,255,255,0.70);
  font-size: 14px;
  font-family: ibmplexsans, sans-serif;
}

/* FOOTER */
footer{
  background: var(--forest);
  color: rgba(255,255,255,0.80);
  padding: 42px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.5fr 1.0fr 0.75fr;
  gap: 26px;
  padding-bottom: 26px;
}
.footer-brand img{ height: 28px; margin-bottom: 12px; }
footer p{ color: rgba(255,255,255,0.72); font-size: 12.5px; line-height: 1.6; }
footer h4{ font-size: 12.5px; color: rgba(255,255,255,0.92); margin-bottom: 10px; font-weight: 600; }
footer a{ color: rgba(255,255,255,0.80); text-decoration: none; text-underline-offset: 3px; }
.footer-bottom{
  background: var(--fog);
  color: rgba(11,27,15,0.75);
  text-align:center;
  padding: 10px 0;
  font-size: 12px;
}
@media (max-width: 980px){
  .footer-grid{ grid-template-columns: 1fr; }
}
