:root{
  --brand-green:#0f9f5f;
  --brand-green-dark:#063f35;
  --brand-green-deep:#06251f;
  --brand-green-soft:#e7f8ef;
  --brand-bg:#f4fbf7;
  --brand-blue:#0b7fab;
  --brand-gold:#f2b84b;
  --text:#102a27;
  --muted:#5c6f69;
  --white:#ffffff;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Outfit',sans-serif;
  background:
    radial-gradient(circle at top left, rgba(15,159,95,.10), transparent 26%),
    radial-gradient(circle at bottom right, rgba(6,63,53,.10), transparent 32%),
    var(--brand-bg);
  color:var(--text);
  overflow-x:hidden;
}

/* NAV */

.nav{
  width:92%;
  height:88px;
  padding:0 28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(255,255,255,.86);
  box-shadow:0 18px 45px rgba(6,63,53,.10);
  border:1px solid rgba(255,255,255,.75);
  backdrop-filter:blur(18px);
  position:sticky;
  top:18px;
  margin:18px auto 0;
  z-index:50;
  border-radius:999px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand img{
  width:60px;
  height:60px;
  object-fit:contain;
}

.brand h2{
  font-size:28px;
  color:var(--brand-green-dark);
  line-height:1;
}

.brand p{
  font-size:13px;
  font-weight:900;
  color:var(--brand-green);
}

nav{
  display:flex;
  gap:24px;
  align-items:center;
}

nav a{
  color:var(--brand-green-deep);
  text-decoration:none;
  font-weight:800;
  position:relative;
}

nav a:not(.play-btn)::after{
  content:"";
  width:0;
  height:3px;
  background:var(--brand-green);
  position:absolute;
  left:0;
  bottom:-8px;
  border-radius:999px;
  transition:.25s;
}

nav a:not(.play-btn):hover::after{
  width:100%;
}

.play-btn{
  background:linear-gradient(135deg,var(--brand-green),var(--brand-green-dark));
  color:white!important;
  padding:13px 22px;
  border-radius:999px;
  box-shadow:0 14px 30px rgba(15,159,95,.28);
}

/* HERO */

.hero{
  min-height:92vh;
  padding:100px 6%;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:50px;
  align-items:center;
  background:
    linear-gradient(
      90deg,
      rgba(244,251,247,.98) 0%,
      rgba(244,251,247,.95) 42%,
      rgba(244,251,247,.38) 100%
    ),
    url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?q=80&w=1600");
  background-size:cover;
  background-position:center right;
  position:relative;
}

.hero::before{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  background:radial-gradient(circle, rgba(15,159,95,.20), transparent 70%);
  top:-120px;
  right:-120px;
  border-radius:50%;
  filter:blur(35px);
  z-index:0;
}

.hero-left,
.hero-card{
  position:relative;
  z-index:1;
}

.quest-badge{
  display:inline-flex;
  background:rgba(231,248,239,.9);
  color:#087647;
  padding:11px 18px;
  border-radius:999px;
  font-weight:900;
  margin-bottom:22px;
  border:1px solid rgba(15,159,95,.18);
  box-shadow:0 12px 25px rgba(15,159,95,.10);
}

.hero h1{
  font-size:68px;
  line-height:1.02;
  letter-spacing:-2.5px;
  color:var(--brand-green-deep);
  max-width:820px;
}

.hero h1 span{
  display:block;
  background:linear-gradient(135deg,var(--brand-green),var(--brand-blue));
  -webkit-background-clip:text;
  color:transparent;
}

.hero p{
  font-size:20px;
  line-height:1.85;
  color:var(--muted);
  max-width:700px;
  margin:28px 0 34px;
}

.hero-actions,
.contact-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  padding:15px 26px;
  border-radius:999px;
  font-weight:900;
  text-decoration:none;
  transition:.28s ease;
}

.btn:hover{
  transform:translateY(-4px);
}

.green{
  background:linear-gradient(135deg,var(--brand-green),var(--brand-green-dark));
  color:white;
  box-shadow:0 16px 35px rgba(15,159,95,.28);
}

.dark{
  background:white;
  color:var(--brand-green-dark);
  border:1px solid #d9e8e0;
}

/* HERO CARD */

.hero-card{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(255,255,255,.75);
  border-radius:36px;
  padding:34px;
  box-shadow:
    0 30px 75px rgba(6,63,53,.16),
    inset 0 1px 1px rgba(255,255,255,.7);
  backdrop-filter:blur(18px);
}

.level{
  display:inline-block;
  background:var(--brand-green-soft);
  color:#087647;
  padding:8px 14px;
  border-radius:999px;
  font-weight:1000;
  margin-bottom:16px;
}

.hero-card h3{
  font-size:34px;
  color:var(--brand-green-dark);
}

.hero-card p{
  color:#60736d;
  margin:8px 0 20px;
}

.zone{
  display:block;
  padding:16px 17px;
  border-radius:18px;
  margin:11px 0;
  font-weight:900;
  text-decoration:none;
  transition:.28s ease;
}

.zone small{
  display:block;
  margin-top:4px;
  font-size:12px;
  opacity:.75;
}

.zone:hover{
  transform:translateX(8px);
}

.zone.active{
  background:rgba(231,248,239,.95);
  color:#087647;
  border:1px solid rgba(15,159,95,.15);
}

.zone.pending{
  background:#f8fafc;
  color:#64748b;
  border:1px dashed #cbd5e1;
}

/* STATS */

.stats{
  width:88%;
  margin:-45px auto 70px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  position:relative;
  z-index:2;
}

.stats div{
  background:rgba(255,255,255,.86);
  padding:28px;
  border-radius:28px;
  box-shadow:0 18px 48px rgba(6,63,53,.09);
  border:1px solid rgba(255,255,255,.75);
  backdrop-filter:blur(14px);
  transition:.28s ease;
}

.stats div:hover{
  transform:translateY(-8px);
}

.stats h3{
  font-size:36px;
  color:var(--brand-green);
}

.stats p{
  font-weight:800;
  color:#5a6d67;
  margin-top:7px;
}

/* GENERAL SECTIONS */

section{
  padding:80px 6%;
  position:relative;
}

section::after{
  content:"";
  position:absolute;
  inset:auto 8% -10px 8%;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(15,159,95,.18),transparent);
}

.section-title{
  text-align:center;
  max-width:850px;
  margin:0 auto 44px;
}

.section-title span{
  color:var(--brand-green);
  font-weight:1000;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:13px;
}

.section-title h2{
  font-size:48px;
  color:var(--brand-green-dark);
  margin:12px 0;
  letter-spacing:-1px;
}

.section-title p{
  color:var(--muted);
  font-size:18px;
  line-height:1.8;
}

/* MINDCHECK */

.launch-card{
  max-width:940px;
  margin:auto;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:24px;
  align-items:center;
  background:linear-gradient(135deg,#ffffff,#effff5);
  color:var(--brand-green-dark);
  text-decoration:none;
  border-radius:34px;
  padding:34px;
  border:1px solid rgba(15,159,95,.12);
  box-shadow:0 25px 65px rgba(6,63,53,.12);
  transition:.3s ease;
}

.launch-card:hover{
  transform:translateY(-10px) scale(1.01);
  box-shadow:0 34px 80px rgba(15,159,95,.20);
}

.launch-icon{
  width:80px;
  height:80px;
  border-radius:26px;
  display:grid;
  place-items:center;
  background:var(--brand-green-soft);
  font-size:40px;
  box-shadow:inset 0 1px 1px rgba(255,255,255,.8);
}

.launch-card h3{
  font-size:32px;
}

.launch-card p{
  color:var(--muted);
  margin-top:6px;
}

/* CARDS */

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.card{
  background:rgba(255,255,255,.76);
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.75);
  border-radius:32px;
  padding:32px;
  box-shadow:
    0 12px 38px rgba(6,63,53,.07),
    inset 0 1px 1px rgba(255,255,255,.75);
  transition:.35s ease;
  position:relative;
  overflow:hidden;
}

.card::before{
  content:"";
  position:absolute;
  width:130px;
  height:130px;
  right:-45px;
  bottom:-45px;
  background:var(--brand-green);
  opacity:.09;
  filter:blur(35px);
  border-radius:50%;
}

.card:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:0 28px 65px rgba(15,159,95,.18);
}

.icon{
  width:62px;
  height:62px;
  border-radius:22px;
  display:grid;
  place-items:center;
  background:var(--brand-green-soft);
  font-size:32px;
  margin-bottom:20px;
}

.card h3{
  font-size:24px;
  color:var(--brand-green-dark);
  margin-bottom:12px;
}

.card p{
  color:var(--muted);
  line-height:1.75;
}

/* NETWORK */

.network-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
}

.network-card{
  display:block;
  background:rgba(255,255,255,.86);
  color:var(--brand-green-dark);
  padding:42px;
  border-radius:34px;
  box-shadow:0 24px 60px rgba(6,63,53,.12);
  border:1px solid rgba(255,255,255,.75);
  text-decoration:none;
  transition:.3s ease;
  backdrop-filter:blur(14px);
}

.network-card:hover{
  transform:translateY(-10px) scale(1.01);
}

.network-card.ambassador{
  background:linear-gradient(135deg,var(--brand-green),var(--brand-green-dark));
  color:white;
}

.network-card h3{
  font-size:34px;
  margin-bottom:14px;
}

.network-card p{
  line-height:1.8;
  font-size:18px;
  margin-bottom:22px;
}

.network-card small{
  font-weight:1000;
  background:rgba(15,159,95,.12);
  padding:10px 15px;
  border-radius:999px;
}

.ambassador small{
  background:rgba(255,255,255,.18);
}

/* LOCATIONS */

.map-board{
  max-width:1080px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.map-item{
  display:block;
  background:rgba(255,255,255,.84);
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.75);
  padding:25px;
  border-radius:28px;
  font-size:21px;
  font-weight:1000;
  box-shadow:0 16px 40px rgba(6,63,53,.08);
  transition:.3s ease;
  text-decoration:none;
}

.map-item:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:0 28px 60px rgba(15,159,95,.17);
}

.map-item small{
  display:block;
  font-size:13px;
  margin-top:7px;
  color:#60736d;
}

.live{
  color:#087647;
}

.next{
  color:#a16207;
}

.future{
  color:#0f766e;
}

/* CONTACT */

.contact{
  margin:70px 6%;
  border-radius:42px;
  background:
    radial-gradient(circle at top right,rgba(255,255,255,.22),transparent 30%),
    linear-gradient(135deg,var(--brand-green-dark),var(--brand-green));
  color:white;
  text-align:center;
  box-shadow:0 30px 78px rgba(6,63,53,.25);
  overflow:hidden;
}

.contact h2{
  font-size:44px;
  max-width:950px;
  margin:auto;
  letter-spacing:-1px;
}

.contact p{
  max-width:780px;
  margin:18px auto 30px;
  font-size:18px;
  line-height:1.8;
  color:#e7fff3;
}

.white-btn{
  background:white;
  color:var(--brand-green-dark);
}

.outline-btn{
  color:white;
  border:1px solid rgba(255,255,255,.38);
}

/* FOOTER */

footer{
  padding:30px;
  text-align:center;
  color:#5c6f69;
  background:white;
}

/* RESPONSIVE */

@media(max-width:1050px){
  nav{
    display:none;
  }

  .nav{
    border-radius:28px;
  }

  .hero{
    grid-template-columns:1fr;
    background:
      linear-gradient(rgba(244,251,247,.96),rgba(244,251,247,.96)),
      url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?q=80&w=1600");
    background-size:cover;
    background-position:center;
  }

  .hero h1{
    font-size:48px;
  }

  .hero p{
    font-size:18px;
  }

  .stats,
  .cards,
  .network-grid,
  .map-board{
    grid-template-columns:1fr;
  }

  .launch-card{
    grid-template-columns:1fr;
    text-align:center;
  }

  .launch-icon{
    margin:auto;
  }
}

@media(max-width:600px){
  .nav{
    width:94%;
    height:auto;
    padding:16px;
    align-items:center;
  }

  .brand img{
    width:50px;
    height:50px;
  }

  .brand h2{
    font-size:22px;
  }

  .brand p{
    font-size:11px;
  }

  .hero{
    padding:70px 6%;
  }

  .hero h1{
    font-size:39px;
    letter-spacing:-1px;
  }

  .section-title h2,
  .contact h2{
    font-size:34px;
  }

  .stats{
    margin-top:-20px;
  }

  .hero-card,
  .card,
  .network-card,
  .launch-card{
    border-radius:26px;
  }
}
