:root {
  --accent:  #c9984a;
  --bg:      #0d0d0b;
  --bg2:     #111108;
  --surface: #1a1a16;
  --text:    #ede8df;
  --muted:   #8a7d6e;
  --faint:   #4a4438;
  --cyan:    #7fb3c8;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Figtree', sans-serif;
  overflow-x: hidden;
}

::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(201, 152, 74, 0.3); border-radius: 2px; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible  { opacity: 1; transform: none; }
.reveal.delay-1  { transition-delay: 0.08s; }
.reveal.delay-2  { transition-delay: 0.16s; }

/* nav */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 13, 11, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s;
}

nav.scrolled { background: rgba(13, 13, 11, 0.97); }

.brand {
  font-family: 'Figtree', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  letter-spacing: -0.02em;
}
.brand .accent { color: var(--accent); }

.nav-right { display: flex; align-items: center; gap: 1.8rem; }

nav ul {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

nav ul a {
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}

nav ul a:hover { color: var(--text); }
nav ul a.active { color: var(--accent); }

.nav-labs-link {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 1rem;
  border-radius: 6px;
  background: rgba(201, 152, 74, 0.07);
  border: 1px solid rgba(201, 152, 74, 0.18);
  color: var(--accent);
  font-size: 0.8rem;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-labs-link:hover { background: rgba(201, 152, 74, 0.14); }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.3rem;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1.6rem;
  font-size: 0.87rem;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.22s;
  text-decoration: none;
  border: none;
}

.btn-primary { background: var(--accent); color: #0d0d0b; }
.btn-primary:hover {
  background: #d4a455;
  box-shadow: 0 0 24px rgba(201, 152, 74, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

/* tags */
.tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.66rem;
  padding: 0.17rem 0.55rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted);
}

.tag.green  { border-color: rgba(201, 152, 74, 0.25); color: var(--accent); background: rgba(201, 152, 74, 0.07); }
.tag.cyan   { border-color: rgba(127, 179, 200, 0.25); color: var(--cyan);   background: rgba(127, 179, 200, 0.06); }
.tag.purple { border-color: rgba(192, 132, 252, 0.22); color: #c084fc;       background: rgba(192, 132, 252, 0.05); }

/* hero */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  position: relative;
  z-index: 2;
}

.hero-inner {
  display: grid;
  grid-template-columns: 54% 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

/* terminal */
.term-card {
  background: #0a0a09;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.term-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.term-dot        { width: 10px; height: 10px; border-radius: 50%; }
.term-dot.red    { background: #ff5f57; }
.term-dot.yellow { background: #febc2e; }
.term-dot.grn    { background: #28c840; }

.term-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.67rem;
  color: var(--faint);
  margin-left: 0.3rem;
}

.term-body {
  padding: 1.1rem 1.2rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.79rem;
  line-height: 1.75;
  height: 300px;
  overflow: hidden;
  color: var(--muted);
}

.t-ps  { color: #28c840; }
.t-out { color: var(--muted); }
.t-hi  { color: var(--accent); }
.t-lo  { color: var(--faint); }

.t-cur {
  display: inline-block;
  width: 6px;
  height: 0.9em;
  background: #28c840;
  vertical-align: text-bottom;
  margin-left: 1px;
  animation: blink 1.1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* badge */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
  padding: 0.3rem 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}


h1 {
  font-size: clamp(3.2rem, 6.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

h1 .first { display: block; color: var(--text); }
h1 .last  { display: block; color: var(--accent); }

.hero-role {
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.hero-bio {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 2.2rem;
}

.hero-buttons { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 2rem; }


.social-row { display: flex; gap: 0.65rem; align-items: center; }

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s;
}
.social-icon:hover {
  color: var(--accent);
  border-color: rgba(201, 152, 74, 0.25);
  background: rgba(201, 152, 74, 0.07);
}
.social-icon svg { width: 17px; height: 17px; }

/* sections */
section { padding: 6rem 0; position: relative; z-index: 2; }
.alt-bg  { background: var(--bg2); }

.section-tag {
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 600;
  opacity: 0.8;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

.underline {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-bottom: 3rem;
}

/* about */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; }

.about-text p      { font-size: 0.93rem; line-height: 1.9; color: var(--muted); margin-bottom: 1rem; }
.about-text strong { color: var(--text); }

.edu-card {
  margin-top: 1.8rem;
  padding: 1.3rem 1.5rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 2px solid var(--accent);
  border-radius: 7px;
}
.edu-card .school { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
.edu-card .degree { font-size: 0.84rem; color: var(--cyan); margin-bottom: 0.18rem; }
.edu-card .dates  { font-family: 'JetBrains Mono', monospace; font-size: 0.73rem; color: var(--faint); }

/* about photo */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.about-photo-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
}

.about-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(13, 13, 11, 0.45));
  pointer-events: none;
}

.about-photo {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.88) brightness(0.95);
  transition: filter 0.3s;
}
.about-photo-wrap:hover .about-photo {
  filter: saturate(1) brightness(1);
}


.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }

.stat-box {
  padding: 1.4rem 1rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}
.stat-box:hover { border-color: rgba(201, 152, 74, 0.2); background: #1f1d16; }

.stat-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.73rem; color: var(--faint); text-transform: uppercase; letter-spacing: 0.1em; }

/* timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 3px; top: 0.6rem; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--accent), rgba(201, 152, 74, 0.08) 85%, transparent);
}

.timeline-item            { position: relative; padding-bottom: 1.8rem; }
.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -2.1rem; top: 0.6rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(201, 152, 74, 0.4);
  transition: box-shadow 0.2s;
}
.timeline-item:hover .timeline-dot { box-shadow: 0 0 16px rgba(201, 152, 74, 0.65); }

.exp-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 1.5rem 1.6rem;
  transition: border-color 0.18s, background 0.25s;
}
.exp-card:hover { border-color: rgba(201, 152, 74, 0.12); background: #1f1d16; }

.exp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.exp-role { font-size: 0.98rem; font-weight: 600; }

.exp-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: var(--accent);
  background: rgba(201, 152, 74, 0.07);
  border: 1px solid rgba(201, 152, 74, 0.18);
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  white-space: nowrap;
}

.exp-org { font-size: 0.82rem; color: var(--cyan); margin-bottom: 0.9rem; }

.exp-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.3rem; }

.exp-card ul li {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.72;
  padding-left: 1.1rem;
  position: relative;
}
.exp-card ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.9rem;
  top: 0;
}
.exp-card ul li strong { color: var(--text); }

/* projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(305px, 1fr));
  gap: 1.3rem;
}

.project-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.project-card:hover {
  border-color: rgba(201, 152, 74, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.project-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.67rem;
  color: var(--faint);
  position: absolute;
  top: 1.2rem; right: 1.4rem;
}

.project-icon { font-size: 1.7rem; margin-bottom: 1rem; }
.project-name { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.tag-row      { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1rem; }
.project-desc { font-size: 0.86rem; color: var(--muted); line-height: 1.77; flex: 1; margin-bottom: 1.2rem; }
.project-links { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: auto; }

.project-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.73rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  padding: 0.28rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  transition: all 0.2s;
}
.project-link:hover {
  color: var(--accent);
  border-color: rgba(201, 152, 74, 0.22);
  background: rgba(201, 152, 74, 0.07);
}
.project-link svg { width: 13px; height: 13px; flex-shrink: 0; }

.project-link--soon {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
  font-style: italic;
}

/* ctf */
.podium {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.podium-card {
  text-align: center;
  padding: 2rem 1.2rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: border-color 0.22s, background 0.22s;
}

.podium-card:hover { border-color: rgba(255, 255, 255, 0.1); background: #1f1d16; }

.podium-card.gold .placement-number { color: #e8c44a; }
.podium-card.gold:hover             { border-color: rgba(232, 196, 74, 0.2); }

.podium-card.bronze .placement-number { color: #d4845a; }
.podium-card.bronze:hover             { border-color: rgba(212, 132, 90, 0.2); }

.placement-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.placement-denom { font-family: 'JetBrains Mono', monospace; font-size: 0.74rem; color: var(--faint); margin-bottom: 0.6rem; }
.placement-name  { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.2rem; }
.placement-cat   { font-size: 0.79rem; color: var(--muted); }

.other-events {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.event-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  transition: border-color 0.22s, background 0.22s;
}
.event-card:hover { border-color: rgba(201, 152, 74, 0.12); background: #1f1d16; }

.event-mark { font-size: 0.8rem; color: var(--accent); margin-top: 0.15rem; flex-shrink: 0; width: 20px; text-align: center; }
.event-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.18rem; }
.event-sub  { font-size: 0.79rem; color: var(--muted); }

.category-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.ctf-cta       { text-align: center; }

/* skills */
.skills-flat {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.skills-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.skills-label {
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.8;
  min-width: 80px;
  padding-top: 0.3rem;
  flex-shrink: 0;
}

.skill-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.skill-tag {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.8rem;
  padding: 0.27rem 0.72rem;
  border-radius: 4px;
  transition: all 0.18s;
  cursor: default;
}
.skill-tag:hover {
  border-color: rgba(201, 152, 74, 0.2);
  color: var(--text);
  background: rgba(201, 152, 74, 0.06);
}

/* certs */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
}

.cert-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 1.6rem;
  transition: border-color 0.2s, background 0.2s;
}
.cert-card:hover { border-color: rgba(201, 152, 74, 0.15); background: #1f1d16; }

.cert-issuer-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.cert-issuer-badge {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  font-weight: 700;
  flex-shrink: 0;
}
.cert-issuer-badge.thm {
  background: rgba(136, 60, 255, 0.1);
  border: 1px solid rgba(136, 60, 255, 0.25);
  color: #a78bfa;
}

.cert-issuer-name { font-size: 0.82rem; color: var(--muted); }

.cert-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.cert-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--faint);
  margin-bottom: 1rem;
}

.cert-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }

/* orgs */
.org-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 2rem 2.2rem;
  display: flex;
  align-items: center;
  gap: 2.2rem;
  transition: border-color 0.22s, background 0.22s;
  max-width: 680px;
}

.org-card:hover { border-color: rgba(201, 152, 74, 0.14); background: #1f1d16; }

.org-avatar {
  width: 60px; height: 60px;
  border-radius: 10px;
  background: rgba(201, 152, 74, 0.07);
  border: 1px solid rgba(201, 152, 74, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.org-name { font-family: 'JetBrains Mono', monospace; font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 0.25rem; }
.org-type { font-size: 0.8rem; color: var(--cyan); margin-bottom: 0.65rem; }
.org-desc { font-size: 0.87rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; max-width: 440px; }

/* contact */
.contact-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.contact-inner .underline { margin-left: auto; margin-right: auto; }

.contact-bio { font-size: 0.95rem; color: var(--muted); line-height: 1.9; margin-bottom: 2.2rem; }

.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.87rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 7px;
  background: var(--surface);
  transition: all 0.2s;
}
.contact-link:hover {
  color: var(--accent);
  border-color: rgba(201, 152, 74, 0.22);
  background: rgba(201, 152, 74, 0.06);
}
.contact-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* footer */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 2rem;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--faint);
  position: relative;
  z-index: 2;
}
footer .highlight { color: var(--accent); }

/* responsive */
@media (max-width: 820px) {
  .hero-inner    { grid-template-columns: 1fr; }
  .term-card     { display: none; }
  .about-grid    { grid-template-columns: 1fr; }
  .podium        { grid-template-columns: 1fr 1fr; }
  .skills-row    { flex-direction: column; gap: 0.5rem; }
  .skills-label  { min-width: unset; padding-top: 0; }

  nav { padding: 0 1.4rem; }

  nav ul {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    gap: 1.1rem;
    padding: 1.4rem 1.8rem;
    background: rgba(13, 13, 11, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  nav ul.open { display: flex; }
  .hamburger  { display: block; }
}

@media (max-width: 520px) {
  section         { padding: 4.5rem 0; }
  .podium         { grid-template-columns: 1fr; }
  .stat-grid      { grid-template-columns: 1fr 1fr; }
  .hero-buttons   { flex-direction: column; }
  .hero-buttons .btn { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}
