/* ==========================================================================
   MELS — Design tokens
   ========================================================================== */
:root{
  --bg: #09090d;
  --bg-alt: #0d0d13;
  --panel: #121218;
  --panel-hover: #191922;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.16);
  --text: #f2f2f6;
  --text-dim: #9b9bab;
  --text-dimmer: #6d6d7c;

  --red: #ff3b4e;
  --green: #2fe6a0;
  --blue: #3d8dff;
  --yellow: #ffcc3d;

  --red-glow: rgba(255,59,78,0.35);
  --green-glow: rgba(47,230,160,0.30);
  --blue-glow: rgba(61,141,255,0.32);
  --yellow-glow: rgba(255,204,61,0.30);

  --font-display: "Chakra Petch", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --radius: 18px;
  --radius-sm: 10px;
  --nav-h: 76px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:600;
  letter-spacing:0.01em;
  margin:0;
}
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }

::selection{ background:var(--red); color:#0a0a0a; }

.container{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding:0 24px;
}

.eyebrow{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--text-dimmer);
  display:flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  width:18px; height:2px;
  background:var(--accent, var(--red));
  display:inline-block;
}

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible{
  outline:2px solid var(--blue);
  outline-offset:3px;
  border-radius:4px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

/* ==========================================================================
   Background grid / atmosphere (signature element)
   ========================================================================== */
.grid-bg{
  position:fixed; inset:0;
  z-index:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size:48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 20%, transparent 75%);
}
.glow-orb{
  position:absolute;
  border-radius:50%;
  filter:blur(90px);
  opacity:0.55;
  pointer-events:none;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar{
  position:sticky; top:0; z-index:100;
  height:var(--nav-h);
  display:flex; align-items:center;
  background:rgba(9,9,13,0.55);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid transparent;
  transition:background .3s ease, border-color .3s ease, height .3s ease;
}
.navbar.scrolled{
  height:64px;
  background:rgba(9,9,13,0.85);
  border-bottom-color:var(--border);
}
.navbar .container{
  display:flex; align-items:center; justify-content:space-between;
  gap:24px;
}
.brand{
  font-family:var(--font-display);
  font-size:22px;
  font-weight:700;
  letter-spacing:0.02em;
  display:flex; align-items:center; gap:10px;
}
.brand .dot{
  width:9px; height:9px; border-radius:50%;
  background:var(--red);
  box-shadow:0 0 12px var(--red-glow);
}
.nav-links{
  display:flex; align-items:center; gap:34px;
}
.nav-links a{
  font-size:14.5px;
  color:var(--text-dim);
  position:relative;
  padding:6px 0;
  transition:color .2s ease;
}
.nav-links a:hover, .nav-links a.active{ color:var(--text); }
.nav-links a.active::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-2px;
  height:2px; background:var(--red);
  box-shadow:0 0 8px var(--red-glow);
}
.nav-cta{
  display:inline-flex; align-items:center; gap:8px;
  padding:11px 20px;
  border-radius:100px;
  background:var(--red);
  color:#100405;
  font-weight:700;
  font-size:14px;
  box-shadow:0 0 0 rgba(255,59,78,0);
  transition:box-shadow .25s ease, transform .2s ease, background .2s ease;
  white-space:nowrap;
}
.nav-cta:hover{
  box-shadow:0 0 24px var(--red-glow);
  transform:translateY(-1px);
}
.hamburger{
  display:none;
  width:42px; height:42px;
  border-radius:10px;
  background:var(--panel);
  border:1px solid var(--border);
  align-items:center; justify-content:center;
  flex-direction:column; gap:5px;
}
.hamburger span{
  width:18px; height:2px; background:var(--text);
  transition:transform .25s ease, opacity .2s ease;
}
.hamburger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-menu{
  position:fixed; top:var(--nav-h); left:0; right:0;
  background:rgba(10,10,15,0.98);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
  display:flex; flex-direction:column;
  padding:8px 24px 26px;
  transform:translateY(-12px);
  opacity:0;
  visibility:hidden;
  transition:transform .28s ease, opacity .28s ease, visibility .28s;
  z-index:99;
}
.mobile-menu.open{ transform:translateY(0); opacity:1; visibility:visible; }
.mobile-menu a{
  padding:15px 4px;
  border-bottom:1px solid var(--border);
  font-size:16px;
  color:var(--text-dim);
}
.mobile-menu a:last-of-type{ border-bottom:none; }
.mobile-menu .nav-cta{ margin-top:16px; justify-content:center; }

@media (max-width:900px){
  .nav-links{ display:none; }
  .hamburger{ display:flex; }
  .navbar .nav-cta.desktop-only{ display:none; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 28px;
  border-radius:100px;
  font-weight:700;
  font-size:15px;
  border:1px solid transparent;
  transition:transform .2s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
}
.btn-primary{
  background:var(--red); color:#150506;
}
.btn-primary:hover{ box-shadow:0 0 28px var(--red-glow); transform:translateY(-2px); }
.btn-outline{
  background:transparent; color:var(--text);
  border-color:var(--border-strong);
}
.btn-outline:hover{ border-color:var(--blue); box-shadow:0 0 22px var(--blue-glow); transform:translateY(-2px); }
.btn-block{ width:100%; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative;
  min-height:92vh;
  display:flex; align-items:center;
  padding:60px 0 80px;
  z-index:1;
}
.hero-inner{
  display:grid;
  gap:28px;
  max-width:760px;
}
.hero-tag{
  font-family:var(--font-mono);
  font-size:13px;
  color:var(--green);
  letter-spacing:0.1em;
  text-transform:uppercase;
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 16px;
  border:1px solid rgba(47,230,160,0.35);
  border-radius:100px;
  background:rgba(47,230,160,0.06);
  width:fit-content;
}
.hero-tag .pulse{
  width:7px; height:7px; border-radius:50%;
  background:var(--green);
  box-shadow:0 0 10px var(--green-glow);
  animation:pulse 1.8s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:0.5; transform:scale(0.8); }
}
.hero h1{
  font-size:clamp(38px, 6vw, 68px);
  line-height:1.05;
}
.hero h1 .wave{ display:inline-block; animation:wave 2.4s ease-in-out infinite; transform-origin:70% 70%; }
@keyframes wave{
  0%,100%{ transform:rotate(0deg); }
  15%{ transform:rotate(14deg); }
  30%{ transform:rotate(-8deg); }
  45%{ transform:rotate(14deg); }
  60%{ transform:rotate(0deg); }
}
.hero .lead{
  font-size:clamp(17px, 2vw, 20px);
  color:var(--text-dim);
  max-width:560px;
}
.hero .sub{
  font-size:15.5px;
  color:var(--text-dimmer);
  max-width:520px;
}
.hero-actions{
  display:flex; gap:16px; flex-wrap:wrap;
  margin-top:6px;
}
.hero-interests{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top:10px;
}
.hero-chip{
  font-size:13px;
  font-family:var(--font-mono);
  padding:8px 14px;
  border-radius:100px;
  border:1px solid var(--border);
  color:var(--text-dim);
  background:var(--panel);
}

/* ==========================================================================
   Section shell
   ========================================================================== */
.section{
  position:relative;
  z-index:1;
  padding:110px 0;
}
.section-tight{ padding:70px 0; }
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:24px; margin-bottom:48px;
  flex-wrap:wrap;
}
.section-head h2{
  font-size:clamp(28px, 3.6vw, 42px);
  margin-top:10px;
}
.section-head .desc{ color:var(--text-dim); max-width:480px; font-size:15.5px; }
.section-link{
  font-family:var(--font-mono);
  font-size:14px;
  color:var(--text);
  display:inline-flex; align-items:center; gap:8px;
  padding-bottom:2px;
  border-bottom:1px solid var(--border-strong);
  transition:border-color .2s ease, gap .2s ease, color .2s ease;
}
.section-link:hover{ border-color:var(--red); color:var(--red); gap:12px; }

/* ==========================================================================
   About / interest cards
   ========================================================================== */
.about-grid{
  display:grid;
  grid-template-columns: 1.1fr 1.5fr;
  gap:56px;
  align-items:start;
}
.about-text p{ color:var(--text-dim); font-size:16px; }
.about-text p + p{ margin-top:16px; }

.interest-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}
.interest-card{
  --accent: var(--red);
  position:relative;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  padding:22px 18px;
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
  overflow:hidden;
}
.interest-card::before{
  content:"";
  position:absolute; inset:-1px;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(135deg, var(--accent), transparent 45%);
  opacity:0;
  transition:opacity .25s ease;
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude;
  pointer-events:none;
}
.interest-card:hover{
  transform:translateY(-4px);
  background:var(--panel-hover);
  box-shadow:0 12px 32px -12px var(--accent);
}
.interest-card:hover::before{ opacity:0.9; }
.interest-icon{ font-size:26px; margin-bottom:14px; display:block; }
.interest-card h3{ font-size:16px; margin-bottom:8px; }
.interest-card p{ font-size:13.6px; color:var(--text-dim); }

/* ==========================================================================
   Project cards
   ========================================================================== */
.project-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:26px;
}
.project-card{
  --accent: var(--red);
  position:relative;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  display:flex; flex-direction:column;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.project-card:hover{
  transform:translateY(-6px);
  border-color:var(--border-strong);
  box-shadow:0 24px 46px -20px var(--accent);
}
.project-media{
  position:relative;
  aspect-ratio:4/3;
  overflow:hidden;
  background:#000;
}
.project-media img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .5s ease;
}
.project-card:hover .project-media img{ transform:scale(1.08); }
.project-tag{
  position:absolute; top:14px; left:14px;
  font-family:var(--font-mono);
  font-size:11px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  padding:6px 12px;
  border-radius:100px;
  background:rgba(9,9,13,0.75);
  backdrop-filter:blur(6px);
  border:1px solid var(--border-strong);
  color:var(--accent);
}
.project-corner{
  position:absolute; bottom:12px; right:12px;
  font-family:var(--font-mono);
  font-size:11px;
  color:rgba(255,255,255,0.75);
  background:rgba(9,9,13,0.6);
  padding:4px 9px;
  border-radius:6px;
  border:1px solid var(--border);
}
.project-body{
  padding:22px;
  display:flex; flex-direction:column; gap:12px;
  flex:1;
}
.project-body h3{ font-size:19px; }
.project-body p{ font-size:14px; color:var(--text-dim); flex:1; }
.project-footer{
  display:flex; align-items:center; justify-content:space-between;
  margin-top:4px;
}
.project-view{
  font-family:var(--font-mono);
  font-size:13px;
  display:inline-flex; align-items:center; gap:8px;
  color:var(--accent);
  transition:gap .2s ease;
}
.project-card:hover .project-view{ gap:12px; }

.empty-state{
  grid-column:1/-1;
  text-align:center;
  padding:70px 20px;
  border:1px dashed var(--border-strong);
  border-radius:var(--radius);
  color:var(--text-dimmer);
  font-family:var(--font-mono);
  font-size:14px;
}

/* ==========================================================================
   Filters + search (projecten pagina)
   ========================================================================== */
.projects-toolbar{
  display:flex; align-items:center; justify-content:space-between;
  gap:20px; flex-wrap:wrap;
  margin-bottom:40px;
}
.filter-row{
  display:flex; gap:10px; flex-wrap:wrap;
}
.filter-chip{
  font-family:var(--font-mono);
  font-size:13px;
  padding:10px 18px;
  border-radius:100px;
  border:1px solid var(--border);
  background:var(--panel);
  color:var(--text-dim);
  transition:all .2s ease;
}
.filter-chip:hover{ border-color:var(--border-strong); color:var(--text); }
.filter-chip.active{
  background:var(--text);
  color:#0a0a0a;
  border-color:var(--text);
}
.search-wrap{
  position:relative;
  min-width:230px;
}
.search-wrap input{
  width:100%;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:100px;
  padding:11px 18px 11px 40px;
  color:var(--text);
  font-family:var(--font-body);
  font-size:14px;
}
.search-wrap input::placeholder{ color:var(--text-dimmer); }
.search-wrap .icon{
  position:absolute; left:15px; top:50%; transform:translateY(-50%);
  color:var(--text-dimmer);
  font-size:14px;
}

/* ==========================================================================
   Project detail modal
   ========================================================================== */
.detail-overlay{
  position:fixed; inset:0; z-index:200;
  background:rgba(6,6,9,0.9);
  backdrop-filter:blur(10px);
  display:flex; align-items:flex-start; justify-content:center;
  padding:40px 16px;
  overflow-y:auto;
  opacity:0; visibility:hidden;
  transition:opacity .28s ease, visibility .28s;
}
.detail-overlay.open{ opacity:1; visibility:visible; }
.detail-panel{
  width:100%; max-width:920px;
  background:var(--bg-alt);
  border:1px solid var(--border-strong);
  border-radius:22px;
  overflow:hidden;
  transform:translateY(24px);
  transition:transform .3s ease;
  margin-bottom:40px;
}
.detail-overlay.open .detail-panel{ transform:translateY(0); }
.detail-hero{
  position:relative;
  aspect-ratio:16/8;
  background:#000;
}
.detail-hero img{ width:100%; height:100%; object-fit:cover; cursor:zoom-in; }
.detail-close{
  position:absolute; top:16px; right:16px;
  width:40px; height:40px;
  border-radius:50%;
  background:rgba(6,6,9,0.7);
  border:1px solid var(--border-strong);
  color:var(--text);
  display:flex; align-items:center; justify-content:center;
  font-size:18px;
  z-index:3;
}
.detail-close:hover{ background:var(--red); border-color:var(--red); color:#150506; }
.detail-body{ padding:34px; }
.detail-meta{
  display:flex; gap:12px; flex-wrap:wrap;
  margin-bottom:16px;
}
.detail-meta span{
  font-family:var(--font-mono);
  font-size:12px;
  padding:5px 12px;
  border-radius:100px;
  border:1px solid var(--border);
  color:var(--text-dim);
}
.detail-body h2{ font-size:30px; margin-bottom:16px; }
.detail-body .full-desc{ color:var(--text-dim); font-size:15.5px; margin-bottom:28px; }
.detail-gallery{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(110px, 1fr));
  gap:10px;
}
.detail-gallery img{
  width:100%; aspect-ratio:1; object-fit:cover;
  border-radius:10px;
  cursor:pointer;
  border:1px solid var(--border);
  transition:transform .2s ease, border-color .2s ease;
}
.detail-gallery img:hover{ transform:scale(1.04); border-color:var(--border-strong); }

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox{
  position:fixed; inset:0; z-index:300;
  background:rgba(3,3,5,0.96);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden;
  transition:opacity .25s ease, visibility .25s;
}
.lightbox.open{ opacity:1; visibility:visible; }
.lightbox img{
  max-width:88vw; max-height:82vh;
  object-fit:contain;
  border-radius:10px;
  box-shadow:0 30px 80px rgba(0,0,0,0.6);
  user-select:none;
}
.lightbox-close, .lightbox-prev, .lightbox-next{
  position:absolute;
  width:48px; height:48px;
  border-radius:50%;
  background:rgba(255,255,255,0.06);
  border:1px solid var(--border-strong);
  color:var(--text);
  display:flex; align-items:center; justify-content:center;
  font-size:20px;
}
.lightbox-close{ top:22px; right:22px; }
.lightbox-prev{ left:22px; top:50%; transform:translateY(-50%); }
.lightbox-next{ right:22px; top:50%; transform:translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover{
  background:var(--red); border-color:var(--red);
}
.lightbox-counter{
  position:absolute; bottom:24px; left:50%; transform:translateX(-50%);
  font-family:var(--font-mono);
  font-size:13px;
  color:var(--text-dim);
  background:rgba(255,255,255,0.06);
  padding:6px 14px;
  border-radius:100px;
}

/* ==========================================================================
   YouTube cards
   ========================================================================== */
.yt-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:22px;
}
.yt-card{
  --accent: var(--red);
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
  display:flex; flex-direction:column; gap:16px;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.yt-card:hover{ transform:translateY(-4px); border-color:var(--border-strong); box-shadow:0 20px 40px -20px var(--accent); }
.yt-icon{
  width:54px; height:54px;
  border-radius:14px;
  background:rgba(255,59,78,0.1);
  color:var(--accent);
  display:flex; align-items:center; justify-content:center;
  font-size:24px;
}
.yt-card h3{ font-size:20px; }
.yt-card p{ color:var(--text-dim); font-size:14.5px; }
.yt-thumbstrip{
  display:flex; gap:8px;
  margin-top:2px;
}
.yt-thumb-placeholder{
  flex:1; aspect-ratio:16/9;
  border-radius:8px;
  border:1px dashed var(--border-strong);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono);
  font-size:10px;
  color:var(--text-dimmer);
  text-align:center;
  padding:4px;
}

/* ==========================================================================
   Community / Discord card
   ========================================================================== */
.community-card{
  background:linear-gradient(145deg, var(--panel), var(--bg-alt));
  border:1px solid var(--border);
  border-radius:24px;
  padding:44px;
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:28px;
}
.community-card::after{
  content:"";
  position:absolute; top:-40%; right:-10%;
  width:340px; height:340px;
  background:radial-gradient(circle, var(--blue-glow), transparent 70%);
  filter:blur(10px);
}
.community-icon{
  width:70px; height:70px;
  border-radius:18px;
  background:rgba(61,141,255,0.12);
  color:var(--blue);
  display:flex; align-items:center; justify-content:center;
  font-size:30px;
  position:relative; z-index:1;
}
.community-info{ position:relative; z-index:1; }
.community-info h3{ font-size:24px; margin-bottom:8px; }
.community-info p{ color:var(--text-dim); font-size:15px; }
.community-future{
  margin-top:26px;
  padding:22px;
  border:1px dashed var(--border-strong);
  border-radius:16px;
  color:var(--text-dimmer);
  font-family:var(--font-mono);
  font-size:13px;
  text-align:center;
}

/* ==========================================================================
   Social cards (contact)
   ========================================================================== */
.social-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}
.social-card{
  --accent: var(--red);
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
  display:flex; flex-direction:column; gap:14px;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.social-card:hover{ transform:translateY(-4px); box-shadow:0 20px 40px -20px var(--accent); border-color:var(--border-strong); }
.social-card .icon{
  width:48px; height:48px; border-radius:12px;
  background:color-mix(in srgb, var(--accent) 14%, transparent);
  color:var(--accent);
  display:flex; align-items:center; justify-content:center;
  font-size:22px;
}
.social-card h3{ font-size:18px; }
.social-card .type{
  font-family:var(--font-mono);
  font-size:11.5px;
  color:var(--text-dimmer);
  text-transform:uppercase;
  letter-spacing:0.08em;
}
.social-card p{ color:var(--text-dim); font-size:14px; flex:1; }

/* ==========================================================================
   Page hero (subpages)
   ========================================================================== */
.page-hero{
  padding:150px 0 60px;
  position:relative; z-index:1;
}
.page-hero h1{ font-size:clamp(34px, 5vw, 54px); margin-top:14px; }
.page-hero p{ color:var(--text-dim); font-size:16.5px; max-width:560px; margin-top:14px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer{
  position:relative; z-index:1;
  border-top:1px solid var(--border);
  padding:60px 0 34px;
  background:var(--bg-alt);
}
.footer-top{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:40px;
  padding-bottom:40px;
}
.footer-brand .brand{ margin-bottom:12px; }
.footer-brand p{ color:var(--text-dimmer); font-size:14px; max-width:280px; }
.footer-col h4{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--text-dimmer);
  margin-bottom:16px;
}
.footer-col a{
  display:block;
  color:var(--text-dim);
  font-size:14.5px;
  padding:6px 0;
  transition:color .2s ease;
}
.footer-col a:hover{ color:var(--text); }
.footer-bottom{
  display:flex; align-items:center; justify-content:space-between;
  border-top:1px solid var(--border);
  padding-top:24px;
  color:var(--text-dimmer);
  font-size:13px;
  flex-wrap:wrap;
  gap:12px;
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.in-view{ opacity:1; transform:translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:1024px){
  .about-grid{ grid-template-columns:1fr; }
  .interest-grid{ grid-template-columns:repeat(2, 1fr); }
  .project-grid{ grid-template-columns:repeat(2, 1fr); }
  .footer-top{ grid-template-columns:1fr 1fr; }
}
@media (max-width:760px){
  .interest-grid{ grid-template-columns:1fr 1fr; }
  .project-grid{ grid-template-columns:1fr; }
  .yt-grid{ grid-template-columns:1fr; }
  .social-grid{ grid-template-columns:1fr; }
  .community-card{ grid-template-columns:1fr; text-align:left; }
  .footer-top{ grid-template-columns:1fr; gap:28px; }
  .section{ padding:70px 0; }
  .hero{ min-height:auto; padding:120px 0 60px; }
  .detail-body{ padding:22px; }
  .section-head{ align-items:flex-start; }
}
@media (max-width:480px){
  .interest-grid{ grid-template-columns:1fr; }
}
