@charset "UTF-8";
/* ============================================================
   DARK SPECTRUM — Matt Coleto Portfolio
   Design System: Deep cosmic dark + violet-to-magenta gradient
   ============================================================ */
/* ── Google Fonts loaded in <head> ──────────────────────────── */
/* ── CSS Custom Properties ────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg: #080810;
  --bg-elevated: #0F0F1C;
  --bg-card: #111120;
  --bg-card-hover: #181830;
  --bg-nav: rgba(8, 8, 16, 0.85);
  /* Text */
  --text-primary: #EEEEFF;
  --text-secondary: #9090B8;
  --text-muted: #555577;
  /* Accent palette */
  --violet: #7B2FBE;
  --purple: #A855F7;
  --magenta: #E040FB;
  --gradient: linear-gradient(135deg, #7B2FBE 0%, #C040EF 55%, #E040FB 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(123,47,190,0.15), rgba(224,64,251,0.08));
  /* Borders & Glows */
  --border: rgba(123, 47, 190, 0.22);
  --border-focus: rgba(168, 85, 247, 0.6);
  --glow-sm: 0 0 12px rgba(123, 47, 190, 0.28);
  --glow-md: 0 0 25px rgba(123, 47, 190, 0.38), 0 0 50px rgba(224, 64, 251, 0.15);
  --glow-lg: 0 0 40px rgba(123, 47, 190, 0.45), 0 0 80px rgba(224, 64, 251, 0.22);
  /* Layout */
  --container-max: 1200px;
  --container-narrow: 780px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  /* Fonts */
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --duration: 0.3s;
}

/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--purple);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
a:hover {
  color: var(--magenta);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

p {
  margin-bottom: 1.2rem;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  list-style: none;
}

/* ── Utility: Gradient Text ───────────────────────────────────── */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Utility: Container ───────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Utility: Eyebrow ─────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1rem;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn--gradient {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--glow-sm);
}
.btn--gradient:hover {
  box-shadow: var(--glow-md);
  transform: translateY(-2px);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--border-focus);
}
.btn--outline:hover {
  background: rgba(123, 47, 190, 0.12);
  border-color: var(--magenta);
  color: var(--magenta);
  box-shadow: var(--glow-sm);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  color: var(--purple);
  border-color: var(--border-focus);
}

/* ── Navigation ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background var(--duration) var(--ease), backdrop-filter var(--duration) var(--ease), padding var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.nav.nav--scrolled {
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 var(--border), var(--glow-sm);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav__logo .nav__logo-mark {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border-focus);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-text-fill-color: transparent;
}
.nav__logo .nav__logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  transition: color var(--duration) var(--ease);
}
.nav__logo:hover .nav__logo-name {
  color: var(--purple);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav__link {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--duration) var(--ease);
  text-decoration: none;
}
.nav__link:hover, .nav__link.nav__link--active {
  color: var(--text-primary);
  background: rgba(123, 47, 190, 0.1);
}

.nav__cta {
  margin-left: 0.5rem;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}
.nav__hamburger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero Section ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7rem 0 4rem;
}

/* Animated orb background */
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero__bg::before, .hero__bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: floatOrb 12s ease-in-out infinite alternate;
}
.hero__bg::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #7B2FBE, transparent);
  top: -100px;
  right: -100px;
  animation-duration: 14s;
}
.hero__bg::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #E040FB, transparent);
  bottom: -80px;
  left: -80px;
  animation-duration: 10s;
  animation-delay: -5s;
}

/* Subtle grid overlay */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(123, 47, 190, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(123, 47, 190, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--border-focus);
}

.hero__name {
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
}

.hero__tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll svg {
  opacity: 0.5;
}

/* ── Stats Bar ─────────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}
.stat-item:not(:last-child) {
  border-right: 1px solid var(--border);
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-item__label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

/* ── Section Base ─────────────────────────────────────────────── */
.section {
  padding: 6rem 0;
}
.section.section--elevated {
  background: var(--bg-elevated);
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}
.section__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 1rem auto 0;
}

/* ── Event Cards ──────────────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
  z-index: 0;
  pointer-events: none;
}
.event-card:hover {
  border-color: var(--border-focus);
  transform: translateY(-5px);
  box-shadow: var(--glow-md);
}
.event-card:hover .event-card__cta {
  opacity: 1;
  transform: translateY(0);
}

.event-card__image {
  height: 200px;
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}
.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.event-card__image.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-elevated), rgba(123, 47, 190, 0.15));
  font-size: 3rem;
}

.event-card:hover .event-card__image img {
  transform: scale(1.05);
}

.event-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.event-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.category-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  border: 1px solid;
}
.category-tag.category-tag--anime {
  color: #F472B6;
  border-color: rgba(244, 114, 182, 0.35);
  background: rgba(244, 114, 182, 0.08);
}
.category-tag.category-tag--k-pop, .category-tag.category-tag--kpop {
  color: #34D399;
  border-color: rgba(52, 211, 153, 0.35);
  background: rgba(52, 211, 153, 0.08);
}
.category-tag.category-tag--esports {
  color: #60A5FA;
  border-color: rgba(96, 165, 250, 0.35);
  background: rgba(96, 165, 250, 0.08);
}
.category-tag.category-tag--brand {
  color: #FBBF24;
  border-color: rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.08);
}

.event-card__year {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.event-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.event-card__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.event-card__metric {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--purple);
  padding: 0.4rem 0;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.event-card__cta {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--magenta);
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--duration) var(--ease);
}

/* ── Events Page Filter ───────────────────────────────────────── */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  transition: all var(--duration) var(--ease);
}
.filter-btn:hover {
  border-color: var(--border-focus);
  color: var(--text-primary);
}
.filter-btn.active {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--glow-sm);
}

/* ── About Section ────────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-split__visual {
  position: relative;
}
.about-split__visual::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: var(--radius-lg);
  background: var(--gradient);
  z-index: -1;
  opacity: 0.4;
  filter: blur(20px);
}

.about-split__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-focus);
}

.about-split__image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-focus);
  background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(123, 47, 190, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.about-split__text .section__title {
  text-align: left;
}
.about-split__text .section__title::after {
  left: 0;
  transform: none;
}

.about-split__body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.about-tag {
  font-size: 0.8rem;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  background: rgba(123, 47, 190, 0.12);
  border: 1px solid var(--border);
  color: var(--purple);
  font-family: var(--font-mono);
}

/* ── Skills Section ───────────────────────────────────────────── */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.skill-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--duration) var(--ease);
}
.skill-card:hover {
  border-color: var(--border-focus);
  box-shadow: var(--glow-sm);
}

.skill-card__icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.skill-card__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  font-family: var(--font-mono);
}

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

.skill-pill {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

/* ── CTA Section ──────────────────────────────────────────────── */
.cta-section {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123, 47, 190, 0.18), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-section__sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2rem;
}

/* ── Page Hero ────────────────────────────────────────────────── */
.page-hero {
  padding: 9rem 0 4rem;
  text-align: center;
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient);
  opacity: 0.3;
}

.page-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero__subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 1rem auto 0;
}

.page-body {
  padding: 4rem 0 6rem;
}

/* ── Event Detail Page ────────────────────────────────────────── */
.event-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding: 8rem 0 3rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.event-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 16, 0.96) 0%, rgba(8, 8, 16, 0.7) 50%, rgba(8, 8, 16, 0.5) 100%);
}

.event-hero__content {
  position: relative;
  z-index: 1;
}

.event-hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.event-hero__year {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.event-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.event-hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 2rem;
}

.event-hero__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.event-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.event-body {
  padding: 3.5rem 0 5rem;
}

.event-meta-row {
  display: flex;
  gap: 3rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.event-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.event-meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.event-meta-value {
  font-weight: 600;
  color: var(--text-primary);
}

/* Case study content styles */
.event-body h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: var(--purple);
}
.event-body h2:first-child {
  margin-top: 0;
}

.event-body h3 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.75rem;
}

.event-body p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.8;
}

.event-body ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
}
.event-body ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 1rem;
}
.event-body ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--purple);
}

.event-cta {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.event-cta__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* ── Contact Page ─────────────────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  padding: 4rem 0 6rem;
}

.contact-info__title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-info__body {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
.contact-link svg {
  color: var(--purple);
  flex-shrink: 0;
}
.contact-link:hover {
  color: var(--purple);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder, .form-group select::placeholder {
  color: var(--text-muted);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--border-focus);
  box-shadow: var(--glow-sm);
}
.form-group textarea {
  height: 130px;
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  padding: 0.9rem;
  font-size: 0.95rem;
}

.form-success, .form-error {
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-size: 0.9rem;
  display: none;
}

.form-success {
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34D399;
}

.form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #F87171;
}

/* ── About Full Page ──────────────────────────────────────────── */
.about-page {
  padding: 2rem 0 6rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
  margin: 2.5rem 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--violet), var(--magenta), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: var(--glow-sm);
  transform: translateX(-4px);
}

.timeline-item__date {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.timeline-item__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.timeline-item__company {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.timeline-item__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 3rem 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  align-items: start;
}

.footer__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.footer__tagline {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
}
.footer__nav ul a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--duration) var(--ease);
}
.footer__nav ul a:hover {
  color: var(--purple);
}

.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social a {
  color: var(--text-muted);
  transition: color var(--duration) var(--ease);
}
.footer__social a:hover {
  color: var(--purple);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Scroll Reveal ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Animations ───────────────────────────────────────────────── */
@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, -40px) scale(1.08);
  }
  100% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}
@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-in {
  animation: fadeInUp 0.7s var(--ease-out) both;
}

.animate-in--delay-1 {
  animation-delay: 0.15s;
}

.animate-in--delay-2 {
  animation-delay: 0.3s;
}

.animate-in--delay-3 {
  animation-delay: 0.45s;
}

.animate-in--delay-4 {
  animation-delay: 0.6s;
}

/* ── Utilities ────────────────────────────────────────────────── */
.text-center {
  text-align: center;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-split__visual {
    max-width: 400px;
    margin: 0 auto;
  }
  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 768px) {
  .nav__hamburger {
    display: flex;
  }
  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav__links.is-open {
    display: flex;
  }
  .nav__links .nav__link {
    font-size: 1.5rem;
  }
  .nav__links .nav__cta {
    font-size: 1rem;
    padding: 0.75rem 2rem;
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
  .skills-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-split {
    grid-template-columns: 1fr;
  }
  .event-hero__stats {
    gap: 1.25rem;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__social {
    flex-direction: row;
  }
}
@media (max-width: 480px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar__grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item {
    border-right: none !important;
  }
  .stat-item:nth-child(1), .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
}

/*# sourceMappingURL=main.css.map */