:root{
  --bg:#0b1220;
  --panel:#0f1a2e;
  --card:#111f38;
  --text:#e8eefc;
  --muted:#b8c5e6;
  --line:rgba(232,238,252,.14);
  --accent:#7dd3fc;
  --accent2:#a7f3d0;
  --shadow: 0 12px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 700px at 20% 0%, rgba(125,211,252,.10), transparent 55%),
              radial-gradient(900px 600px at 90% 10%, rgba(167,243,208,.10), transparent 50%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}

h1{
  font-size: 40px;
  color: #ffb4b4;
}


a{color:inherit}
.container{max-width:1040px;margin:0 auto;padding:0 18px}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:18px; top:14px; width:auto; height:auto; padding:10px 12px;
  background:var(--card); border:1px solid var(--line); border-radius:10px; z-index:1000;
}

/* HEADER / NAV */

.site-header{
  position:sticky; top:0;
  background: rgba(11,18,32,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none}
.brand-mark{
  width:34px; height:34px; border-radius:12px;
  background: linear-gradient(135deg, rgba(125,211,252,.22), rgba(167,243,208,.18));
  border:1px solid var(--line);
  display:grid; place-items:center;
  font-weight:700;
}
.brand-text{font-weight:650; letter-spacing:.2px}

.nav{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.nav-link{
  text-decoration:none;
  padding:8px 10px;
  border:1px solid transparent;
  border-radius:12px;
  color:var(--muted);
}
.nav-link:hover{border-color:var(--line); color:var(--text)}
.nav-link-active{border-color:var(--line); color:var(--text); background:rgba(255,255,255,.04)}

/* HERO */

.hero{
  padding:32px 0 32px;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(125,211,252,.20), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(167,243,208,.16), transparent 55%),
    var(--bg);
}

.hero-inner{max-width:1040px}

h1{font-size: clamp(30px, 4vw, 44px); line-height:1.15; margin:0 0 12px}
.lead{color:var(--muted); font-size: clamp(16px, 2vw, 18px); margin:0 0 18px}
.note{color: rgba(232,238,252,.7); margin-top:14px; font-size:14px}

.hero-actions{display:flex; gap:12px; flex-wrap:wrap}
.button{
  display:inline-block;
  border-radius:14px;
  padding:10px 14px;
  border:1px solid rgba(125,211,252,.35);
  background: rgba(125,211,252,.12);
  text-decoration:none;
  box-shadow: var(--shadow);
  cursor:pointer;
}
.button:hover{background: rgba(125,211,252,.16)}
.button-ghost{
  border-color: var(--line);
  background: rgba(255,255,255,.04);
  box-shadow:none;
}
.button-small{padding:8px 10px; border-radius:12px; box-shadow:none}

/* HERO SPLIT (if you use image box in hero) */

/* split layout */
.hero-split{
  display:grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap:18px;
  align-items:center;
}

.hero-text{min-width:0}
.hero-visual{min-width:0}

/* the forest image */
.hero-img{
  width:100%;
  max-width:360px;
  max-height:220px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  opacity:0.9;
  margin:0 auto;
}

/* LAYOUT / CARDS */

.grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; padding:22px 0 46px}
.grid-two{display:grid; grid-template-columns: 1fr 1fr; gap:14px}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
}
.card h2{margin:0 0 8px; font-size:18px}
.card p{margin:0}
.card ul{margin:10px 0 0; padding-left:18px}
.card li{margin:6px 0}

.page{padding:26px 0 46px}
.muted{color:rgba(232,238,252,.72)}
.quote{font-size:18px; color:var(--text); margin:10px 0 12px}

.textbox{
  width:100%;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(17,31,56,.65);
  color:var(--text);
  padding:12px 12px;
  resize:vertical;
}

/* ACCORDION */

.accordion{display:grid; gap:10px; margin-top:14px}
.acc-item{
  border:1px solid var(--line);
  border-radius:16px;
  background: rgba(17,31,56,.45);
  overflow:hidden;
}
.acc-item summary{
  list-style:none;
  cursor:pointer;
  padding:12px 14px;
  font-weight:650;
}
.acc-item summary::-webkit-details-marker{display:none}
.acc-body{padding:0 14px 14px; color:var(--muted)}
.acc-body p{margin:10px 0 0}
.acc-body strong{color:var(--text)}

/* FOOTER */

.site-footer{
  border-top:1px solid var(--line);
  padding:18px 0 28px;
  color:rgba(232,238,252,.72);
}
.footer-inner{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}
.footer-links a{color:rgba(232,238,252,.72); margin-left:10px; text-decoration:none}
.footer-links a:hover{color:var(--text); text-decoration:underline}

/* FORMS / PILLS */

.label{display:block; margin:12px 0 6px; color:rgba(232,238,252,.82); font-size:14px}

.pill-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:8px}
.pill{
  border-radius:999px;
  padding:8px 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  cursor:pointer;
}
.pill-active{
  border-color: rgba(167,243,208,.35);
  background: rgba(167,243,208,.10);
  color: var(--text);
}

/* SESSION GRID / SESSION HERO */

.session-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:16px;
}
.session-card{
  display:block;
  text-decoration:none;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background: rgba(17,31,56,.45);
}
.session-card:hover{border-color: rgba(125,211,252,.25)}
.session-img{
  width:100%;
  height:160px;
  object-fit:cover;
  display:block;
  background: rgba(255,255,255,.04);
}
.session-body{padding:12px 14px 14px}
.session-body h2{margin:0 0 6px; font-size:18px}
.session-body p{margin:0; color:var(--muted)}

.page-hero{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
  margin-bottom:14px;
}
.page-hero-img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.page-hero-text h1{margin:0 0 8px}

/* MEDIA QUERIES */

@media (min-width: 1024px){
  .hero{
    padding:40px 0 40px;
    background-position: center 20%;
  }
}

@media (max-width: 860px){
  .grid{grid-template-columns:1fr}
  .grid-two{grid-template-columns:1fr}
  .session-grid{grid-template-columns:1fr}
  .session-img{height:180px}
  .page-hero-img{height:200px}
  .hero-split{grid-template-columns:1fr}
  .hero-img{
    max-width:260px;
    max-height:180px;
  }
}


