*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --lime: #d4ff00;
  --coral: #ff4f5e;
  --sky: #00c8ff;
  --violet: #8b5cf6;
  --peach: #ffb347;
  --mint: #00e5a0;
  --ink: #0a0a0f;
  --white: #fffef8;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Nunito", sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--ink);
}
::-webkit-scrollbar-thumb {
  background: var(--lime);
  border-radius: 3px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--ink);
  border-bottom: 2px solid rgba(212, 255, 0, 0.12);
  transition: border-color 0.3s;
}
nav.scrolled {
  border-color: var(--lime);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: "Unbounded", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--lime);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.02em;
}
.logo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  animation: blk 1.4s ease-in-out infinite;
}
@keyframes blk {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.15;
  }
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 0.2rem;
}
.nav-links a {
  font-family: "Unbounded", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  transition: all 0.2s;
  border: 1.5px solid transparent;
}
.nav-links a:hover {
  color: var(--lime);
  border-color: rgba(212, 255, 0, 0.3);
}
.nav-links a.active {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--lime);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── PAGES ── */
.page {
  display: none;
}
.page.active {
  display: block;
}

/* ════════════════════════════════
       HOME — HERO
       Dark + grid + split layout
    ════════════════════════════════ */
.hero {
  background: var(--ink);
  min-height: 100vh;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
/* dot grid background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(212, 255, 0, 0.15) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 80% at 60% 50%, black, transparent);
}
.hero-left {
  padding: 5rem 3rem 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
  width: fit-content;
  animation: fup 0.6s ease both;
}
.pill {
  background: var(--lime);
  color: var(--ink);
  font-family: "Unbounded", sans-serif;
  font-size: 0.55rem;
  font-weight: 900;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  text-transform: uppercase;
}
.hero-eyebrow span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Unbounded", sans-serif;
}
.hero h1 {
  font-family: "Unbounded", sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 .grad {
  background: linear-gradient(90deg, var(--lime), var(--mint), var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.w1 {
  animation: fup 0.6s 0.1s ease both;
}
.w2 {
  animation: fup 0.6s 0.2s ease both;
}
.w3 {
  animation: fup 0.6s 0.3s ease both;
}
@keyframes fup {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: fup 0.6s 0.4s ease both;
}
.hero-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  animation: fup 0.6s 0.5s ease both;
}
.btn-l {
  background: var(--lime);
  color: var(--ink);
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-l:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 255, 0, 0.3);
}
.btn-g {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-g:hover {
  border-color: var(--lime);
  color: var(--lime);
}

/* hero right — stacked photo cards */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 4rem 5rem 2rem;
  z-index: 2;
}
.hero-photo-stack {
  position: relative;
  width: 320px;
  height: 420px;
}
.hcard {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}
.hcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hcard:nth-child(1) {
  width: 200px;
  height: 260px;
  top: 0;
  left: 20px;
  transform: rotate(-6deg);
  animation: fup 0.6s 0.3s ease both;
}
.hcard:nth-child(2) {
  width: 230px;
  height: 290px;
  top: 80px;
  right: 0;
  transform: rotate(4deg);
  animation: fup 0.6s 0.45s ease both;
}
.hcard:nth-child(3) {
  width: 180px;
  height: 220px;
  bottom: 0;
  left: 0;
  transform: rotate(2deg);
  animation: fup 0.6s 0.6s ease both;
}
.hcard:nth-child(1):hover {
  transform: rotate(0) scale(1.05);
  z-index: 10;
}
.hcard:nth-child(2):hover {
  transform: rotate(0) scale(1.05);
  z-index: 10;
}
.hcard:nth-child(3):hover {
  transform: rotate(0) scale(1.05);
  z-index: 10;
}

/* floating badge */
.hero-badge {
  position: absolute;
  bottom: 5rem;
  left: 1rem;
  background: var(--lime);
  color: var(--ink);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  font-family: "Unbounded", sans-serif;
  animation: fup 0.6s 0.7s ease both;
}
.hero-badge .big {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.hero-badge .sm {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
  margin-top: 0.2rem;
}

/* stats bar */
.hero-stats-bar {
  grid-column: 1/-1;
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  padding: 1.5rem 4rem;
  gap: 0;
  animation: fup 0.6s 0.8s ease both;
}
.hstat {
  flex: 1;
  padding: 0 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.hstat:first-child {
  padding-left: 0;
}
.hstat:last-child {
  border-right: none;
}
.hstat-n {
  font-family: "Unbounded", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--lime);
  display: block;
  line-height: 1;
}
.hstat-l {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.2rem;
}

/* ════════════════════════════════
       ABOUT — White + editorial magazine layout
    ════════════════════════════════ */
.about {
  background: var(--white);
  padding: 8rem 2rem;
}
.about-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.about-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 6rem;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 4rem;
}
.about-num {
  font-family: "Unbounded", sans-serif;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.06em;
  opacity: 0.07;
  user-select: none;
}
.about-headline {
}
.stag {
  display: inline-block;
  font-family: "Unbounded", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--lime);
  color: var(--ink);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.about h2 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.about-desc {
  font-size: 1.05rem;
  color: #555;
  max-width: 560px;
  line-height: 1.8;
}
/* 3-col mission */
.about-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}
.about-col {
  border-top: 3px solid var(--ink);
  padding-top: 1.5rem;
}
.about-col .num {
  font-family: "Unbounded", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--lime);
  display: block;
  line-height: 1;
  margin-bottom: 0.75rem;
  -webkit-text-stroke: 2px var(--ink);
}
.about-col h4 {
  font-family: "Unbounded", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.about-col p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.65;
}
/* values horizontal scroll */
.about-values-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.about-values-row::-webkit-scrollbar {
  display: none;
}
.vcard {
  min-width: 220px;
  border-radius: 18px;
  padding: 2rem;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.vc1 {
  background: var(--lime);
  color: var(--ink);
}
.vc2 {
  background: var(--coral);
  color: white;
}
.vc3 {
  background: var(--sky);
  color: var(--ink);
}
.vc4 {
  background: var(--violet);
  color: white;
}
.vcard:hover {
  transform: translateY(-6px) rotate(-2deg);
}
.vcard .ico {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.vcard h4 {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.vcard p {
  font-size: 0.82rem;
  opacity: 0.75;
  line-height: 1.55;
}

/* ════════════════════════════════
       EVENTS — Lime + bold newspaper
    ════════════════════════════════ */
.events {
  background: var(--lime);
  padding: 7rem 2rem;
}
.events-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.ev-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 3px solid var(--ink);
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
}
.ev-header h2 {
  font-family: "Unbounded", sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--ink);
}
.ev-header-right {
  text-align: right;
}
.ev-header-right p {
  font-size: 0.82rem;
  color: rgba(10, 10, 15, 0.6);
  max-width: 200px;
}
/* featured + list layout */
.ev-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.ev-featured {
  background: var(--ink);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  grid-row: 1/3;
}
.ev-feat-img {
  height: 260px;
  position: relative;
  overflow: hidden;
}
.ev-feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ev-feat-img .ev-feat-type {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--lime);
  color: var(--ink);
  font-family: "Unbounded", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}
.ev-feat-body {
  padding: 2rem;
  flex: 1;
}
.ev-feat-date {
  font-family: "Unbounded", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.ev-featured h3 {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.ev-featured .ev-loc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}
.ev-featured p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}
/* small event rows */
.ev-small {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  transition: all 0.25s;
  cursor: default;
}
.ev-small:hover {
  background: var(--ink);
  transform: translateX(4px);
}
.ev-small:hover h4,
.ev-small:hover .ev-sm-loc {
  color: white;
}
.ev-small:hover p {
  color: rgba(255, 255, 255, 0.5);
}
.ev-small:hover .ev-sm-date {
  color: var(--lime);
}
.ev-sm-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.esi1 {
  background: #fce4e6;
}
.esi2 {
  background: #ede9fe;
}
.esi3 {
  background: #e0f2fe;
}
.esi4 {
  background: #dcfce7;
}
.esi5 {
  background: #fef9c3;
}
.ev-sm-body {
  flex: 1;
}
.ev-sm-date {
  font-family: "Unbounded", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}
.ev-small h4 {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}
.ev-small .ev-sm-loc {
  font-size: 0.75rem;
  color: #888;
}

/* ════════════════════════════════
       GALLERY — Dark + masonry editorial
    ════════════════════════════════ */
.gallery {
  background: var(--ink);
  padding: 7rem 2rem;
}
.gallery-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.gal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.gal-header h2 {
  font-family: "Unbounded", sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: white;
  letter-spacing: -0.04em;
}
.gal-header p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 220px;
  text-align: right;
}
/* bento grid */
.gal-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 220px 180px 240px;
  gap: 0.85rem;
}
.gb {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: default;
}
.gb:nth-child(1) {
  grid-column: 1/4;
  grid-row: 1/2;
}
.gb:nth-child(2) {
  grid-column: 4/6;
  grid-row: 1/2;
}
.gb:nth-child(3) {
  grid-column: 6/7;
  grid-row: 1/3;
}
.gb:nth-child(4) {
  grid-column: 1/3;
  grid-row: 2/3;
}
.gb:nth-child(5) {
  grid-column: 3/6;
  grid-row: 2/3;
}
.gb:nth-child(6) {
  grid-column: 1/3;
  grid-row: 3/4;
}
.gb:nth-child(7) {
  grid-column: 3/5;
  grid-row: 3/4;
}
.gb:nth-child(8) {
  grid-column: 5/7;
  grid-row: 3/4;
}

.gb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.gb:hover img {
  transform: scale(1.08);
}
.gb-cap {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 15, 0.9) 0%,
    transparent 55%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gb:hover .gb-cap {
  opacity: 1;
}
.gb-cap h4 {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  margin-bottom: 0.2rem;
  transform: translateY(6px);
  transition: transform 0.3s;
}
.gb-cap span {
  font-size: 0.75rem;
  color: var(--lime);
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  transform: translateY(6px);
  transition: transform 0.3s 0.04s;
  display: block;
}
.gb:hover .gb-cap h4,
.gb:hover .gb-cap span {
  transform: translateY(0);
}

/* ════════════════════════════════
       PROFILE — Split cream/dark + poster feel
    ════════════════════════════════ */
.profile-sec {
  background: #f0ede4;
  padding: 7rem 2rem;
}
.profile-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.profile-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 3rem;
  align-items: start;
}

/* founder poster card */
.founder-poster {
  background: var(--ink);
  border-radius: 24px;
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.founder-photo {
  width: 100%;
  height: 340px;
  position: relative;
  overflow: hidden;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    145deg,
    var(--coral) 0%,
    var(--violet) 60%,
    var(--sky) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}
.founder-photo-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--lime);
  color: var(--ink);
  font-family: "Unbounded", sans-serif;
  font-size: 0.55rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}
.founder-info-box {
  padding: 2rem;
}
.f-name {
  font-family: "Unbounded", sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.f-role {
  font-family: "Unbounded", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0.5rem 0 1rem;
}
.f-bio {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.f-btns {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.fb1 {
  background: var(--lime);
  color: var(--ink);
  font-family: "Unbounded", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.3rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
}
.fb1:hover {
  background: white;
}
.fb2 {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-family: "Unbounded", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.3rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
}
.fb2:hover {
  border-color: var(--lime);
  color: var(--lime);
}

/* right column */
.profile-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pcard {
  background: white;
  border-radius: 20px;
  padding: 2rem;
}
.pcard-title {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
/* stats as big numbers in a row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-big {
  border-radius: 14px;
  padding: 1.25rem 1rem;
  text-align: center;
}
.sb1 {
  background: #f0ffe0;
}
.sb2 {
  background: #fff0f1;
}
.sb3 {
  background: #e8faff;
}
.sb4 {
  background: #fef9c3;
}
.stat-big .n {
  font-family: "Unbounded", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}
.n1 {
  color: #3d7a00;
}
.n2 {
  color: var(--coral);
}
.n3 {
  color: #007aa0;
}
.n4 {
  color: #a07000;
}
.stat-big .l {
  font-size: 0.72rem;
  color: #888;
  font-weight: 600;
  margin-top: 0.3rem;
}
/* info card */
.info-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.info-block h4 {
  font-family: "Unbounded", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #333;
  margin-bottom: 0.6rem;
}
.info-block p,
.info-block ul {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.65;
}
.info-block ul {
  padding-left: 1rem;
}
/* social tiles */
.soc-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.stile {
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.25s;
  background: #f5f4f0;
  border: 2px solid transparent;
}
.stile:hover {
  transform: translateY(-5px) rotate(-2deg);
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}
.stile:hover .stile-h {
  color: rgba(255, 255, 255, 0.45);
}
.stile-ico {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}
.stile-name {
  font-family: "Unbounded", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
}
.stile-h {
  font-size: 0.7rem;
  color: #999;
  margin-top: 0.2rem;
}

/* ════════════════════════════════
       CTA — Full-bleed coral
    ════════════════════════════════ */
.cta {
  background: var(--coral);
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.04) 20px,
    rgba(255, 255, 255, 0.04) 40px
  );
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta h2 {
  font-family: "Unbounded", sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 6rem);
  color: white;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}
.cta h2 em {
  font-style: normal;
  color: var(--lime);
}
.cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn-w {
  background: white;
  color: var(--coral);
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1.1rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s;
}
.cta-btn-w:hover {
  background: var(--lime);
  color: var(--ink);
  transform: scale(1.04);
}
.cta-btn-o {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1.1rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s;
}
.cta-btn-o:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  border-top: 2px solid rgba(212, 255, 0, 0.1);
}
.foot-logo {
  font-family: "Unbounded", sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--lime);
  margin-bottom: 0.6rem;
}
footer p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
  .hero-stats-bar {
    padding: 1.5rem 2rem;
  }
  .about-top {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .about-num {
    display: none;
  }
  .about-cols {
    grid-template-columns: 1fr;
  }
  .ev-layout {
    grid-template-columns: 1fr;
  }
  .ev-featured {
    grid-row: auto;
  }
  .gal-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 200px);
  }
  .gb:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
  .profile-grid {
    grid-template-columns: 1fr;
  }
  .founder-poster {
    position: static;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-3col {
    grid-template-columns: 1fr;
  }
  .soc-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .ham {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.77, 0, 0.18, 1);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    font-size: 0.85rem;
    padding: 0.9rem 2.5rem;
  }
  .hstat-n {
    font-size: 1.5rem;
  }
  .gal-bento {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(8, 180px);
  }
  .about-values-row {
    flex-wrap: nowrap;
  }
  .ev-header h2 {
    font-size: 2.5rem;
  }
  .hero-stats-bar {
    flex-direction: column;
    gap: 1.5rem;
  }
  .hstat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0 0 1.5rem;
  }
  .hstat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
