:root{
  /* Core palette */
  --bg:#0b0e0d;
  --surface:#101615;
  --surface2:#0e1413;
  --text:#f5f7f6;
  --muted:#c7cfcb;         /* silver */
  --muted2:#9aa7a0;        /* darker silver */
  --line:rgba(255,255,255,.08);
  --line2:rgba(43,122,86,.35);

  --forest:#1f5a3f;        /* forest green */
  --forest2:#2b7a56;       /* brighter green */
  --mint:#86c7a3;          /* soft highlight */

  --shadow: 0 18px 60px rgba(0,0,0,.42);
  --shadow2: 0 10px 30px rgba(0,0,0,.38);
  --radius:18px;
  --radius2:24px;
  --max:1140px;

  --ease:cubic-bezier(.2,.8,.2,1);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1100px 680px at 18% 8%, rgba(43,122,86,.22), transparent 60%),
    radial-gradient(900px 680px at 85% 0%, rgba(134,199,163,.14), transparent 55%),
    radial-gradient(700px 520px at 58% 98%, rgba(31,90,63,.10), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{color:inherit;text-decoration:none}
a:hover{color:var(--mint)}
p{margin:0 0 16px}
h1,h2,h3{margin:0 0 12px; letter-spacing:-0.02em}
h1{font-size:46px; line-height:1.06}
h2{font-size:28px; line-height:1.2; margin-top:26px}
h3{font-size:18px; line-height:1.25; margin-top:18px}
small{color:var(--muted2)}

.container{max-width:var(--max); margin:0 auto; padding:0 22px}
.section{padding:44px 0}
.section.tight{padding:30px 0}
.hr{
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
  border:0;
  margin:26px 0;
}

.kicker{
  color:var(--mint);
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  font-size:12px;
}

/* Top nav */
.nav{
  position: sticky;
  top:0;
  z-index:50;
  background: rgba(11,14,13,.62);
  border-bottom:1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  overflow: visible;
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:80px;
  padding:0;
  gap:8px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 210px;
}
.brand img{
  width:260px;
  height:200px;
  object-fit:contain;
  margin: -60px 0;
  display:block;
}
.brand .sub{
  font-size:12px;
  color:var(--muted2);
  font-weight:600;
  letter-spacing:0.02em;
  display:none;
}
@media (min-width: 980px){
  .brand .sub{display:block}
}

.menu{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.menu a{
  padding:8px 10px;
  border-radius:999px;
  color:var(--muted);
  border:1px solid transparent;
  transition: transform .15s var(--ease), background .15s var(--ease), border-color .15s var(--ease), color .15s var(--ease);
}
.menu a:hover{
  color:var(--text);
  background: rgba(134,199,163,.08);
  border-color: rgba(134,199,163,.20);
  transform: translateY(-1px);
}
.menu a[aria-current="page"]{
  color:var(--text);
  background: rgba(43,122,86,.12);
  border-color: rgba(43,122,86,.45);
}

.nav-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(16,22,21,.45);
  color:var(--text);
  gap:4px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  background: rgba(255,255,255,.78);
  border-radius:999px;
  transition: transform .2s var(--ease), opacity .2s var(--ease), background .2s var(--ease);
}
.nav-toggle.open span:nth-child(1){
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2){
  opacity:0;
}
.nav-toggle.open span:nth-child(3){
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 720px){
  .nav-inner{
    height:auto;
    padding:10px 0 12px;
    flex-wrap:wrap;
  }
  .brand{
    min-width:0;
  }
  .brand img{
    width:190px;
    height:140px;
    margin:-40px 0;
  }
  .menu{
    width:100%;
    flex-direction:column;
    align-items:center;
    gap:8px;
    overflow:hidden;
    max-height:0;
    opacity:0;
    transform: translateY(-6px);
    pointer-events:none;
    transition: max-height .25s var(--ease), opacity .2s var(--ease), transform .2s var(--ease);
  }
  .menu a{
    padding:7px 9px;
    font-size:13px;
    width:100%;
    text-align:center;
  }
  .menu.open{
    max-height:420px;
    opacity:1;
    transform: translateY(0);
    pointer-events:auto;
  }
  .nav-toggle{
    display:inline-flex;
  }
}

/* Cards */
.card{
  background: linear-gradient(180deg, rgba(16,22,21,.82), rgba(12,17,16,.72));
  border:1px solid rgba(255,255,255,.08);
  border-radius: var(--radius2);
  padding: 24px;
  box-shadow: var(--shadow2);
  backdrop-filter: blur(12px);
}
.card.soft{
  background: linear-gradient(180deg, rgba(16,22,21,.72), rgba(12,17,16,.62));
}

.grid{
  display:grid;
  gap:16px;
}
.grid.two{grid-template-columns: 1.35fr .65fr}
.grid.twoEven{grid-template-columns: 1fr 1fr}
.grid.three{grid-template-columns: 1fr 1fr 1fr}

@media (max-width: 980px){
  h1{font-size:38px}
  .grid.two, .grid.twoEven, .grid.three{grid-template-columns:1fr}
}

/* Hero */
.hero{
  padding:64px 0 30px;
}
.hero p{color:var(--muted); font-size:16px; max-width: 68ch}
.hero-panel{
  max-width: 820px;
  padding: 28px 30px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(16,22,21,.88), rgba(12,17,16,.70));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.hero-panel .kicker{margin-bottom:8px}
.hero-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.logo-hero{
  display:flex;
  align-items:center;
  gap:12px;
}
.logo-hero img{
  height:46px;
  width:auto;
  opacity:.95;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 12px;
  border-radius: 999px;
  border:1px solid rgba(134,199,163,.20);
  background: rgba(134,199,163,.08);
  color:var(--muted);
  font-size:13px;
}
.badge strong{color:var(--text); font-weight:700}
.hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 16px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(16,22,21,.45);
  color:var(--text);
  font-weight:700;
  letter-spacing:0.01em;
  transition: transform .16s var(--ease), background .16s var(--ease), border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.btn:hover{
  transform: translateY(-2px);
  background: rgba(134,199,163,.10);
  border-color: rgba(134,199,163,.26);
  box-shadow: 0 12px 34px rgba(0,0,0,.34);
}
.btn:active{transform: translateY(0)}
.btn.primary{
  background: linear-gradient(180deg, rgba(43,122,86,.24), rgba(31,90,63,.18));
  border-color: rgba(43,122,86,.55);
  box-shadow: 0 18px 44px rgba(31,90,63,.16);
}
.btn.primary:hover{
  background: linear-gradient(180deg, rgba(43,122,86,.32), rgba(31,90,63,.22));
  border-color: rgba(134,199,163,.34);
}
.btn.ghost{
  background: transparent;
  border-color: rgba(255,255,255,.16);
}
.btn.small{
  padding:9px 12px;
  font-size:13px;
}

/* Focus states */
:focus-visible{
  outline: 3px solid rgba(134,199,163,.40);
  outline-offset: 3px;
  border-radius: 12px;
}

/* Key-value tiles */
.kv{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.kv .tile{
  border:1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding:12px 14px;
  background: rgba(16,22,21,.42);
  transition: transform .14s var(--ease), border-color .14s var(--ease), background .14s var(--ease);
}
.kv .tile:hover{
  transform: translateY(-2px);
  border-color: rgba(134,199,163,.20);
  background: rgba(134,199,163,.06);
}
.kv .label{color:var(--muted2); font-size:12px; letter-spacing:0.02em}
.kv .value{font-size:16px; font-weight:800; margin-top:3px}
@media (max-width: 980px){
  .kv{grid-template-columns:1fr}
}

/* Lists */
.list{margin:0;padding-left:18px;color:var(--muted)}
.list li{margin:9px 0}
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}
.chip{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(16,22,21,.38);
  color:var(--muted);
  font-size:13px;
}

/* FAQ accordion */
.faq details{
  border:1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding:12px 14px;
  background: rgba(16,22,21,.42);
  transition: border-color .14s var(--ease), background .14s var(--ease);
}
.faq details + details{margin-top:10px}
.faq details[open]{border-color: rgba(134,199,163,.24); background: rgba(134,199,163,.06)}
.faq summary{
  cursor:pointer;
  font-weight:800;
  color:var(--text);
  list-style:none;
}
.faq summary::-webkit-details-marker{display:none}
.faq .answer{color:var(--muted); margin-top:10px}

/* Forms */
.form{display:grid; gap:12px; margin-top:12px}
.field{display:grid; gap:6px}
label{font-size:12px; color:var(--muted2); font-weight:700; letter-spacing:0.02em}
input, textarea, select{
  width:100%;
  padding:11px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(16,22,21,.40);
  color: var(--text);
  font-size:14px;
  transition: border-color .14s var(--ease), background .14s var(--ease), transform .14s var(--ease);
}
input:hover, textarea:hover, select:hover{
  border-color: rgba(134,199,163,.22);
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(134,199,163,.36);
  background: rgba(134,199,163,.06);
  outline: none;
}
textarea{min-height:130px; resize:vertical}
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width: 980px){
  .split{grid-template-columns:1fr}
}

/* Footer */
.footer{
  border-top:1px solid rgba(255,255,255,.06);
  margin-top:44px;
  padding:20px 0 28px;
  color:var(--muted2);
  font-size:12px;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.note{
  border-left: 3px solid rgba(43,122,86,.55);
  padding:10px 12px;
  background: rgba(43,122,86,.08);
  color:var(--muted);
  border-radius: 14px;
}
