
:root{
  --bg:#0B0B0B;
  --fg:#F2F2F2;
  --acid:#C8FF00;
  --muted:rgba(242,242,242,.70);
  --muted2:rgba(242,242,242,.55);
  --line:rgba(242,242,242,.18);
  --max:1120px;
  --r:18px;
}

*{box-sizing:border-box}
html,body{
  margin:0;padding:0;
  background:var(--bg);
  color:var(--fg);
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.wrap{max-width:var(--max);margin:0 auto;padding:24px 18px 90px}

/* NAV */
.nav{
  position:sticky;top:0;z-index:20;
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  padding:14px 0;
  background:linear-gradient(to bottom, rgba(11,11,11,.92), rgba(11,11,11,.75));
  backdrop-filter: blur(10px);
}
.brand{
  display:flex;align-items:center;gap:12px;
  letter-spacing:.14em;text-transform:uppercase;font-weight:800
}
.logo{
  width:38px;height:38px;border-radius:12px;overflow:hidden;
  border:1px solid var(--line)
}
.logo img{width:100%;height:100%;object-fit:cover;filter:grayscale(1) contrast(1.1)}

.menu{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}

/* SIMPLE PILLS */
.pill{
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:transparent;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--fg);
}

/* LANGUAGE TOGGLE PILL (acid) */
.pill.acid{
  background:var(--acid);
  color:var(--bg);
  border:2px solid var(--acid);
  font-weight:800;
}
.pill.acid:hover{ filter:brightness(0.95); }

/* HERO */
.hero{padding:56px 0 28px;display:grid;gap:16px}
.kicker{color:var(--muted2);letter-spacing:.18em;text-transform:uppercase;font-size:12px}
h1{margin:0;font-size:clamp(40px,6.5vw,72px);line-height:1.02}
.sub{max-width:74ch;color:var(--muted);font-size:16px;line-height:1.65}

/* === SIMPLE GREEN BUTTONS === */
.btn,
.btn.primary{
  display:inline-block;
  padding:12px 18px;
  border-radius:14px;
  background:var(--acid);
  color:var(--bg);
  border:2px solid var(--acid);
  font-weight:800;
  letter-spacing:.04em;
  text-shadow:none;
}
.btn:hover,
.btn.primary:hover{
  filter:brightness(0.95);
}

/* SECTIONS */
.divider{
  height:1px;
  background:linear-gradient(90deg, rgba(242,242,242,.14), rgba(200,255,0,.35), rgba(242,242,242,.10));
  margin:26px 0
}

.section{padding:18px 0}

.h2{
  display:flex;justify-content:space-between;align-items:baseline;gap:12px
}
.h2 h2{margin:0;font-size:14px;letter-spacing:.18em;text-transform:uppercase}
.h2 .note{font-size:12px;color:var(--muted2)}

/* FILTERS */
.filters{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.chip{cursor:pointer}

/* GRID */
.grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:12px
}

/* CARDS */
.card{
  grid-column:span 6;
  border:1px solid var(--line);
  border-radius:var(--r);
  overflow:hidden;
  background:rgba(255,255,255,.02);
}
.thumb{aspect-ratio:16/10;background:#111}
.thumb img{width:100%;height:100%;object-fit:cover}
.body{padding:14px 14px 16px}
.tagline{
  display:flex;align-items:center;gap:10px;
  font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:var(--muted)
}
.dot{width:8px;height:8px;border-radius:99px;background:var(--acid)}
.title{margin:10px 0 0;font-size:20px;font-weight:800}
.desc{margin:10px 0 0;color:var(--muted);line-height:1.55;font-size:14px}
.tags{margin-top:12px;display:flex;gap:8px;flex-wrap:wrap}
.mini{
  font-size:12px;color:var(--muted2);
  border:1px solid var(--line);
  border-radius:999px;padding:6px 10px
}

/* PERSONAL */
.personal .card{grid-column:span 3}
.personal .thumb{aspect-ratio:1/1}
.personal .title{font-size:16px}
.personal .desc{font-size:13px}

/* ABOUT */
.about{
  display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:14px
}
.panel{
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:14px
}

.lang{display:none}
.lang.active{display:inline}

.small{font-size:12px;color:var(--muted2);margin-top:10px}

.footer{padding-top:26px}

@media (max-width:920px){
  .card{grid-column:span 12}
  .personal .card{grid-column:span 6}
  .about{grid-template-columns:1fr}
}
