:root{
  --green:#53A232;
  --green-2:#558320;
  --green-dark:#405F1C;
  --brown:#382916;
  --cream:#E3D9B7;
  --panel:rgba(5,18,16,.62);
  --border:rgba(255,255,255,.12);
  --text:#f5f5f0;
  --muted:rgba(255,255,255,.78);
  --glow:0 0 28px rgba(83,162,50,.16);
  --glow-strong:0 16px 40px rgba(83,162,50,.18);
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Aileron, Arial, sans-serif;
  color:var(--text);
  line-height:1.6;
  background:
    linear-gradient(rgba(2,8,8,.68),rgba(2,8,8,.78)),
    url("background.jpg") center/cover fixed no-repeat;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(1120px,calc(100% - 40px));
  margin:auto;
}

section{
  padding:72px 0;
}

h1,h2,h3,h4{
  margin-top:0;
}

p{
  margin-top:0;
}

/* HEADER */

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(3,10,10,.84);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand-logo{
  width:54px;
  height:54px;
  object-fit:contain;
  filter:drop-shadow(0 0 14px rgba(83,162,50,.12));
}

.brand-text{
  font-weight:700;
  letter-spacing:.2px;
}

.nav-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.nav-links a{
  color:#fff;
  text-decoration:none;
  padding:8px 12px;
  border-radius:8px;
  font-weight:600;
  transition:.25s ease;
}

.nav-links a:hover{
  background:rgba(255,255,255,.08);
}

/* HERO */

.hero{
  min-height:calc(100vh - 82px);
  display:flex;
  align-items:center;
  padding:74px 0 54px;
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:auto auto 15% 50%;
  width:700px;
  height:700px;
  transform:translateX(-50%);
  background:
    radial-gradient(circle, rgba(83,162,50,.20) 0%, rgba(83,162,50,.09) 28%, rgba(83,162,50,0) 70%);
  filter:blur(30px);
  animation:heroGlow 8s ease-in-out infinite alternate;
  pointer-events:none;
}

.hero::after{
  content:"";
  position:absolute;
  top:12%;
  left:8%;
  width:220px;
  height:220px;
  background:radial-gradient(circle, rgba(227,217,183,.10), rgba(227,217,183,0) 70%);
  filter:blur(12px);
  animation:floatGlow 10s ease-in-out infinite alternate;
  pointer-events:none;
}

@keyframes heroGlow{
  0%{transform:translateX(-52%) scale(1)}
  100%{transform:translateX(-48%) scale(1.08)}
}

@keyframes floatGlow{
  0%{transform:translateY(0) translateX(0)}
  100%{transform:translateY(20px) translateX(10px)}
}

.hero-grid{
  display:flex;
  justify-content:center;
  position:relative;
  z-index:1;
}

.hero-copy{
  max-width:920px;
  width:100%;
  text-align:center;
}

.hero h1{
  margin:0 0 16px;
  font-size:clamp(2.6rem,4.8vw,4.9rem);
  line-height:1.02;
  text-shadow:0 6px 24px rgba(0,0,0,.28);
}

.hero p{
  margin:0 auto 26px;
  max-width:720px;
  color:var(--muted);
  font-size:1.08rem;
}

.hero-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:24px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  transition:.25s ease;
}

.btn-primary{
  background:linear-gradient(135deg,var(--green),var(--green-dark));
  color:#fff;
  box-shadow:var(--glow);
  border:none;
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:var(--glow-strong);
}

.btn-secondary{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.15);
  color:#fff;
}

.btn-secondary:hover{
  background:rgba(255,255,255,.10);
  transform:translateY(-2px);
}

.hero-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  max-width:760px;
  margin:30px auto 0;
  text-align:center;
}

.hero-point{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  padding:16px;
  border-radius:14px;
  backdrop-filter:blur(8px);
  text-align:center;
  transition:.25s ease;
}

.hero-point:hover{
  transform:translateY(-4px);
  background:rgba(255,255,255,.08);
  box-shadow:0 12px 35px rgba(0,0,0,.28);
}

.hero-point strong{
  display:block;
  margin-bottom:6px;
  font-size:18px;
  color:var(--cream);
}

/* PANELS */

.section-shell{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:26px;
  padding:34px;
  backdrop-filter:blur(10px);
  box-shadow:0 18px 48px rgba(0,0,0,.20);
}

.section-title{
  text-align:center;
  margin-bottom:28px;
}

.section-title h2{
  margin:0 0 10px;
}

.section-title p{
  margin:0 auto;
  max-width:720px;
  color:var(--muted);
}

/* ABOUT */

.about-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:28px;
  align-items:center;
}

.about-copy p{
  color:var(--muted);
}

.mission{
  margin-top:18px;
  font-weight:600;
  color:var(--cream) !important;
}

.about-photo{
  min-height:280px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:var(--muted);
  padding:22px;
}

.about-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:18px;
}

/* SHARED CARD LOOK */

.who-card,
.card,
.trust-item,
.contact-card,
.code-box{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:22px;
  transition:all .25s ease;
}

.who-card:hover,
.card:hover,
.trust-item:hover,
.contact-card:hover,
.code-box:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 35px rgba(0,0,0,.35), 0 0 24px rgba(83,162,50,.08);
  background:rgba(255,255,255,.07);
}

/* WHO WE SUPPORT */

.who-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.who-card{
  text-align:center;
}

.who-card h3,
.card h3{
  color:var(--cream);
}

.who-card p,
.card p,
.contact-card p,
.code-box{
  color:var(--muted);
  margin-bottom:0;
}

/* TRUST */

.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  align-items:stretch;
}

.trust-item{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  font-weight:600;
  min-height:170px;
  padding:24px 20px;
}

.trust-item img{
  max-height:70px;
  width:auto;
  margin:0 0 12px 0;
}

.trust-item strong{
  display:block;
  margin-bottom:6px;
  font-size:18px;
  color:var(--cream);
  line-height:1.2;
}

/* SERVICES */

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

/* SUPPORT + CAPABILITY */

.split{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  align-items:stretch;
}

.split-title{
  margin-top:0;
}

.split-copy{
  color:var(--muted);
}

.code-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:18px;
}

.code-box{
  border-left:4px solid var(--green);
  padding:14px;
}

.capability-panel{
  background:linear-gradient(145deg,rgba(64,95,28,.85),rgba(4,74,55,.85));
  border-radius:22px;
  padding:32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  box-shadow:var(--glow);
  border:1px solid rgba(255,255,255,.10);
  transition:.25s ease;
}

.capability-panel:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(0,0,0,.28), 0 0 28px rgba(83,162,50,.14);
}

.capability-panel h2{
  margin-top:0;
  color:#fff;
}

.capability-panel p{
  color:rgba(255,255,255,.86);
}

/* CONTACT */

.contact-shell{
  position:relative;
  overflow:hidden;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  align-items:stretch;
  position:relative;
  z-index:1;
}

.contact-card{
  min-height:100%;
}

.contact-center{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  gap:18px;
}

.contact-title{
  margin:24px 0 6px 0;
  width:100%;
  text-align:center;
}

.contact-description{
  max-width:650px;
  margin:0 auto;
  text-align:center;
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.7;
}

.contact-email{
  width:100%;
  margin:0 auto 4px auto;
  text-align:center;
  font-size:1.2rem;
  font-weight:600;
  letter-spacing:.3px;
}

.contact-email a,
.contact-email a:link,
.contact-email a:visited,
.contact-email a:hover,
.contact-email a:active{
  color:var(--green) !important;
  text-decoration:none;
}

.contact-email a:hover{
  text-decoration:underline;
}

.social-links{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  margin-top:6px;
}

.social-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  padding:10px 16px;
  border-radius:10px;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  transition:.25s ease;
}

.social-btn:hover{
  background:rgba(83,162,50,.18);
  border-color:rgba(83,162,50,.5);
  transform:translateY(-2px);
}

.connect-image{
  position:absolute;
  right:24px;
  bottom:18px;
  width:240px;
  max-width:32%;
  opacity:.18;
  z-index:0;
  pointer-events:none;
  filter:drop-shadow(0 0 18px rgba(83,162,50,.10));
}

/* FORM */

.form{
  display:grid;
  gap:12px;
}

input,textarea{
  width:100%;
  padding:12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:#fff;
  font:inherit;
  transition:.2s ease;
}

input::placeholder,
textarea::placeholder{
  color:rgba(255,255,255,.5);
}

input:focus,
textarea:focus{
  outline:none;
  border-color:rgba(83,162,50,.65);
  box-shadow:0 0 0 3px rgba(83,162,50,.10);
}

textarea{
  min-height:130px;
}

/* FOOTER */

/*.site-footer{
margin-top:80px;
padding:30px 0;
border-top:1px solid rgba(255,255,255,.08);
background:rgba(3,10,10,.8);
backdrop-filter:blur(10px);
}

.footer-container{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:10px;
color:rgba(255,255,255,.7);
font-size:.95rem;
}

.footer-left{
display:flex;
align-items:center;
}

.footer-right{
display:flex;
gap:12px;
}*/

.site-footer{
    padding:20px 0;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-right a{
    font-size:18px;
    color:#9f00ff;
    text-decoration:none;
}

.footer-right a:hover{
    opacity:.7;
}

.social{
color:white;
font-size:18px;
transition:.25s;
}

.social:hover{
color:#53A232;
transform:translateY(-2px);
}

/* RESPONSIVE */

@media (max-width:980px){
  .about-grid,
  .who-grid,
  .trust-grid,
  .services-grid,
  .split,
  .contact-grid,
  .hero-points,
  .code-grid{
    grid-template-columns:1fr;
  }

  .nav-wrap{
    flex-direction:column;
    align-items:flex-start;
  }

  .connect-image{
    display:none;
  }
}