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

:root {
  --green: #69b7c8;
  --green-dark: #256371;
  --green-light: #75bdce;
  --green-mid: #458fa0;
  --fnt-light: #09cdf9;
  --bg: #F7F6F2;
  --surface: #FFFFFF;
  --text: #1A1A18;
  --text-muted: #265059;
  --border: rgba(26,26,24,0.1);
  --border-strong: rgba(26,26,24,0.18);
  --accent: #0e86a1;
  --mono: 'DM Mono', monospace;
  --sans: 'DM Sans', sans-serif;
  --display: 'Syne', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,246,242,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.nav-logomark {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 18px; font-weight: 700; color: #fff;
}
.nav-name { font-family: var(--display); font-size: 17px; font-weight: 600; letter-spacing: -0.3px; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 18px; color: var(--text-muted); text-decoration: none;
  font-family: var(--mono); font-weight: 400; letter-spacing: 0.02em;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-family: var(--mono); font-size: 13px; font-weight: 500;
  padding: 8px 18px; border-radius: 8px;
  background: var(--green); color: #fff;
  border: none; cursor: pointer; text-decoration: none;
  letter-spacing: 0.01em; transition: background 0.15s;
}
.nav-cta:hover { background: var(--green-mid); }

/* ── HERO ── */
.hero {
  padding: 1rem 2.5rem 5rem;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -80px; right: -100px;
  /* width: 600px; height: 600px; border-radius: 50%; */
  background: radial-gradient(circle, rgba(29,158,117,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em;
  /* padding: 5px 12px; border-radius: 99px; */
  background: var(--green-light); color: var(--green-mid);
  border: 1px solid rgba(29,158,117,0.2);
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); display: block;
}
.hero h1 {
  font-family: var(--display); font-size: clamp(30px, 5vw, 58px);
  font-weight: 700; line-height: 1.08; letter-spacing: -1.5px;
  margin-bottom: 1.0rem;
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero-desc {
  font-size: 17px; color: var(--text-muted); 
  line-height: 1.75; margin-bottom: 1.5rem; font-weight: 300;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 3.5rem; }
.btn-primary {
  padding: 12px 26px; background: var(--green); color: #fff;
  border: none; border-radius: 10px; font-size: 15px;
  font-family: var(--sans); font-weight: 500; cursor: pointer;
  text-decoration: none; display: inline-block; transition: background 0.15s;
}
.btn-primary:hover { background: var(--green-mid); }
.btn-outline {
  padding: 12px 26px; background: transparent; color: var(--text);
  border: 1px solid var(--border-strong); border-radius: 10px; font-size: 15px;
  font-family: var(--sans); font-weight: 500; cursor: pointer;
  text-decoration: none; display: inline-block; transition: border-color 0.15s, background 0.15s;
}
.btn-outline:hover { background: var(--surface); border-color: var(--text-muted); }
.hero-stats {
  display: flex; gap: 0; flex-wrap: wrap;
  border: 1px solid var(--border); border-radius: 14px;
  background: var(--surface); overflow: hidden;
  max-width: 680px;
}
.stat {
  flex: 1; padding: 1.25rem 1.5rem;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--display); font-size: 24px; font-weight: 700; }
.stat-label { font-size: 12px; color: var(--text-muted); font-family: var(--mono); margin-top: 2px; }

/* ── SECTIONS ── */
section { padding: 2.5rem 2.5rem; }
/* border-bottom: 1px solid var(--border); } */
.section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 1.75rem;
}
.section-header h2 {
  font-family: var(--display); font-size: 22px; font-weight: 600;
  letter-spacing: -0.3px;
}
.see-all {
  font-family: var(--mono); font-size: 16px; color: var(--green);
  text-decoration: none; letter-spacing: 0.04em;
}
.see-all:hover { text-decoration: underline; }

/* ── GALLERY ── */
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 1.5rem; }
.filter-btn {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.03em;
  padding: 5px 14px; border-radius: 99px; cursor: pointer;
  border: 1px solid var(--border-strong); background: transparent;
  color: var(--text-muted); transition: all 0.15s;
}
.filter-btn:hover { border-color: var(--green); color: var(--green); }
.filter-btn.active {
  background: var(--green); color: #fff; border-color: var(--green);
}
.apps-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px;
}
.app-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.5rem;
  transition: border-color 0.15s, transform 0.15s;
  cursor: default;
}
.app-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.app-icon {
  width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 14px;
}
.app-name { font-family: var(--display); font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.app-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.app-tag {
  display: inline-block; margin-top: 12px;
  font-family: var(--mono); font-size: 11px; padding: 3px 10px;
  border-radius: 99px; background: var(--bg); color: var(--text-muted);
  border: 1px solid var(--border);
}


/* ── NEWS GRID ── */
.news-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (max-width: 640px) { .news-grid { grid-template-columns: 1fr; } }
.news-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.25rem 1.5rem;
  display: flex; gap: 16px; align-items: flex-start;
  transition: border-color 0.15s;
}
.news-card:hover { border-color: var(--border-strong); }
.news-info { flex: 1; }
.news-title { font-family: var(--display); font-size: 20px; font-weight: 600; margin-bottom: 4px; }
.news-meta { font-size: 18px; color: var(--text-muted); font-family: var(--mono); }

/* ── EVENTS GRID ── */
.events-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
@media (max-width: 640px) { .events-grid { grid-template-columns: 1fr; } }
.events-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.25rem 1.5rem;
  display: flex; gap: 16px; align-items: flex-start;
  transition: border-color 0.15s;
}
.events-card:hover { border-color: var(--border-strong); }
.events-datebox {
  min-width: 52px; height: 56px; border-radius: 10px;
  background: var(--green-light); border: 1px solid rgba(29,158,117,0.2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.events-datebox .month {
  font-family: var(--mono); font-size: 16px; font-weight: 500;
  color: var(--bg); letter-spacing: 0.08em; text-transform: uppercase;
}
.events-datebox .day {
  font-family: var(--display); font-size: 18px; font-weight: 700;
  color: var(--green-dark); line-height: 1;
}
.events-info { flex: 1; }
.events-title { font-family: var(--display); font-size: 20px; font-weight: 600; margin-bottom: 4px; }
.events-meta { font-size: 18px; color: var(--text-muted); font-family: var(--mono); }
.events-pill {
  display: inline-block; margin-top: 8px;
  font-family: var(--mono); font-size: 16px; padding: 3px 10px; border-radius: 99px;
}
.pill-upcoming { background: var(--green-light); color: var(--bg); }
.pill-past { background: var(--bg); color: var(--green-dark); border: 1px solid var(--border); }


/* ── FOOTER ── */
footer {
  padding: 1.75rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-left { font-family: var(--mono); font-size: 12px; color: var(--text-muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-family: var(--mono); font-size: 12px; color: var(--text-muted);
  text-decoration: none;
}
.footer-links a:hover { color: var(--text); }

/* ── RESPONSIVE NAV ── */
.nav-hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  color: var(--text);
  padding: 4px 10px;
  line-height: 1;
  transition: background 0.15s;
}
.nav-hamburger:hover { background: var(--surface); }

@media (max-width: 768px) {
  nav { padding: 0 1.5rem; position: relative; }
  .nav-hamburger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(247,246,242,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem;
    gap: 1rem;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links a { font-size: 16px; }
  .hero { padding: 1.5rem 1.5rem 3rem; }
  section { padding: 2.5rem 1.5rem; }
  footer { padding: 1.5rem; }
}
