:root{
  /* Brand */
  --green: #014401;
  --gold:  #c7b273;
  --mint:  #f6fbf5;
  --white: #fffffd;
  --black: #050605;

  /* Natural variants */
  --bg: #070b07;
  --bg2: #0d1c0d;

  /* belt-ish gold */
  --goldDark: #a88d49;

  --text: rgba(255,255,253,0.93);
  --muted: rgba(246,251,245,0.78);
  --muted2: rgba(246,251,245,0.62);

  --stroke: rgba(255,255,253,0.10);

  --panel: rgba(255,255,253,0.06);
  --panel2: rgba(255,255,253,0.09);

  --shadow: 0 18px 55px rgba(0,0,0,0.55);
}

*{ box-sizing: border-box; }
html, body { margin:0; padding:0; }

body{
  font-family: Arial, Helvetica, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 600px at 20% 0%, rgba(168,141,73,0.10), transparent 62%),
    radial-gradient(900px 650px at 80% 15%, rgba(1,68,1,0.22), transparent 62%),
    radial-gradient(900px 700px at 50% 110%, rgba(246,251,245,0.10), transparent 60%),
    linear-gradient(180deg, var(--black), var(--bg));
}

.container{
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

/* NAV: “full potential” */
.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,6,5,0.58);
  border-bottom: 1px solid rgba(168,141,73,0.16);
  backdrop-filter: blur(14px);
}

/* Wider than content + bigger padding = real corner feel */
.nav__inner{
  width: 100%;
  max-width: 1680px;    /* let it stretch */
  margin: 0 auto;
  padding: 18px 44px;   /* use the space */
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 14px;
  text-decoration:none;
  color: var(--text);
  min-width: 260px;
}

.brand__logo{
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.45));
}

.brand__stack{ line-height: 1.05; }
.brand__name{
  font-weight: 900;
  letter-spacing: 0.2px;
  font-size: 16px;
}
.brand__tag{
  margin-top: 4px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(246,251,245,0.74);
}

.nav__actions{
  display:flex;
  align-items:center;
  gap: 22px;            /* spaced */
  flex-wrap: wrap;
}

.nav__link{
  text-decoration:none;
  color: rgba(246,251,245,0.84);
  font-weight: 900;
  letter-spacing: 0.2px;
}
.nav__link:hover{ color: var(--white); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,253,0.10);
  text-decoration:none;
  font-weight: 900;
  color: var(--text);
  background: rgba(255,255,253,0.06);
  transition: transform .12s ease, filter .12s ease, background .12s ease, border-color .12s ease;
}

.btn--lg{ padding: 12px 20px; }

.btn--primary{
  background: linear-gradient(180deg, var(--gold), var(--goldDark));
  color: rgba(5,6,5,0.94);
  border-color: rgba(168,141,73,0.50);
  box-shadow: 0 14px 34px rgba(0,0,0,0.30);
}
.btn--primary:hover{ filter: brightness(1.04); transform: translateY(-1px); }

.btn--ghost{
  background: rgba(255,255,253,0.05);
  border-color: rgba(168,141,73,0.28);
}
.btn--ghost:hover{
  background: rgba(255,255,253,0.09);
  transform: translateY(-1px);
  border-color: rgba(168,141,73,0.36);
}

/* HERO */
.hero{
  position: relative;
  min-height: calc(100vh - 78px);
  display:flex;
  align-items:center;
  padding: 92px 0;
  overflow:hidden;
}

/* One image only */
.hero__bg{
  position:absolute;
  inset:0;
  background-image:
    url("/static/img/hero.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.03);
}

/* Brand color “visibility” layers on top of image */
.hero__tint{
  position:absolute;
  inset:-140px;
  pointer-events:none;
  filter: blur(24px);
  opacity: 1;
}

.hero__tint--green{
  background:
    radial-gradient(820px 520px at 22% 30%, rgba(1,68,1,0.48), transparent 62%),
    radial-gradient(760px 520px at 75% 65%, rgba(1,68,1,0.28), transparent 64%);
}

.hero__tint--gold{
  background:
    radial-gradient(740px 480px at 60% 25%, rgba(168,141,73,0.28), transparent 62%),
    radial-gradient(650px 450px at 35% 80%, rgba(199,178,115,0.18), transparent 62%);
}

/* Overlay to keep text readable BUT let hero show */
.hero__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(5,6,5,0.32),
    rgba(7,11,7,0.55)
  );
}

/* Content */
.hero__content{
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  text-align:center;
}

.badge{
  display:inline-block;
  padding: 12px 22px;
  background: rgba(5,6,5,0.34);
  border: 1px solid rgba(168,141,73,0.46);
  color: rgba(246,251,245,0.96);
  font-weight: 900;
  letter-spacing: 0.9px;
  margin-bottom: 18px;
  font-size: 15px;
  clip-path: polygon(10% 0%, 90% 0%, 100% 25%, 100% 75%, 90% 100%, 10% 100%, 0% 75%, 0% 25%);
}

.hero__title{
  margin: 0 0 14px;
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 900;
  line-height: 1.06;
  text-shadow: 0 18px 45px rgba(0,0,0,0.55);
}

.hero__sub{
  margin: 0 auto 26px;
  max-width: 680px;
  color: rgba(246,251,245,0.86);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 800;
}

.hero__actions{
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__watermark{
  position:absolute;
  right: 26px;
  bottom: 22px;
  width: 110px;
  height: auto;
  opacity: 0.14;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.45));
  z-index: 2;
  pointer-events: none;
}

/* FEATURES */
.features{
  padding: 92px 0;
  background:
    radial-gradient(900px 540px at 30% 10%, rgba(168,141,73,0.10), transparent 60%),
    radial-gradient(900px 650px at 70% 35%, rgba(1,68,1,0.22), transparent 62%),
    linear-gradient(180deg, var(--bg2), rgba(5,6,5,0.98));
}

.sectionTitle{
  margin: 0;
  font-size: 30px;
  font-weight: 900;
}

.sectionSub{
  margin: 12px 0 32px;
  color: var(--muted2);
  font-weight: 800;
  line-height: 1.5;
}

.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card{
  padding: 28px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid rgba(168,141,73,0.18);
  box-shadow: var(--shadow);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  position: relative;
  overflow: hidden;
}

.card::before{
  content:"";
  position:absolute;
  left: 18px;
  top: 14px;
  width: 96px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(199,178,115,0.95), rgba(168,141,73,0.10));
}

.card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,253,0.10);
  border-color: rgba(168,141,73,0.30);
}

.card h3{
  margin: 18px 0 10px;
  font-size: 19px;
  font-weight: 900;
  color: rgba(246,251,245,0.95);
}

.card p{
  margin: 0;
  color: rgba(246,251,245,0.74);
  line-height: 1.6;
  font-weight: 800;
  font-size: 14px;
}

/* CTA */
.cta{
  padding: 78px 0;
  background:
    radial-gradient(900px 520px at 50% 0%, rgba(168,141,73,0.10), transparent 60%),
    linear-gradient(180deg, rgba(5,6,5,0.98), rgba(11,28,11,0.96));
  border-top: 1px solid rgba(168,141,73,0.16);
  border-bottom: 1px solid rgba(168,141,73,0.16);
}

.cta__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.cta__title{
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 900;
}

.cta__sub{
  margin: 0;
  color: rgba(246,251,245,0.74);
  font-weight: 800;
}

.cta__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Footer */
.footer{
  padding: 22px 0;
  background: rgba(5,6,5,0.92);
}

.footer__inner{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  color: rgba(255,255,253,0.68);
  font-weight: 800;
  font-size: 13px;
  align-items:center;
}

.footer__link{
  color: rgba(246,251,245,0.78);
  text-decoration:none;
  font-weight: 900;
}
.footer__link:hover{ color: var(--white); }

/* Responsive */
@media (max-width: 820px){
  .grid{ grid-template-columns: 1fr; }
  .footer__inner{ flex-direction: column; align-items:center; }
  .nav__inner{ padding: 16px 18px; }
}
