/**
 * BYLT Society — Main stylesheet
 * Theme: black / neon purple / street night vibe
 */

:root {
  --black: #050508;
  --black-soft: #0c0c12;
  --purple: #9b30ff;
  --purple-bright: #c44dff;
  --purple-dim: #5a1a8a;
  --white: #f4f4f8;
  --gray: #8a8a9a;
  --neon-glow: 0 0 12px rgba(155, 48, 255, 0.8), 0 0 32px rgba(155, 48, 255, 0.4);
  --neon-border: 1px solid rgba(155, 48, 255, 0.6);
  --font-brush: "Permanent Marker", cursive;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --header-h: 72px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(90, 26, 138, 0.25), transparent),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

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

a { color: var(--purple-bright); text-decoration: none; transition: color var(--transition), text-shadow var(--transition); }
a:hover { color: var(--white); text-shadow: var(--neon-glow); }

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ——— Intro loader ——— */
.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
  cursor: pointer;
}

.intro-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-loader__inner { text-align: center; }

.intro-logo {
  font-family: var(--font-brush);
  font-size: clamp(2.5rem, 10vw, 4.5rem);
  color: var(--purple-bright);
  text-shadow: var(--neon-glow);
  letter-spacing: 0.05em;
  animation: flashPurple 0.8s ease-in-out infinite alternate;
}

.intro-logo--sub {
  font-size: clamp(1.2rem, 5vw, 2rem);
  margin-top: -0.25em;
  animation-delay: 0.15s;
}

@keyframes flashPurple {
  from { opacity: 0.4; filter: brightness(0.8); }
  to { opacity: 1; filter: brightness(1.3); text-shadow: 0 0 24px #c44dff, 0 0 48px #9b30ff; }
}

.intro-loader__bar {
  width: 200px;
  height: 3px;
  background: rgba(155, 48, 255, 0.2);
  margin: 2rem auto 0;
  border-radius: 2px;
  overflow: hidden;
}

.intro-loader__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--purple-dim), var(--purple-bright));
  box-shadow: var(--neon-glow);
  animation: loadBar 1.8s ease forwards;
}

@keyframes loadBar {
  to { width: 100%; }
}

.site-wrapper { opacity: 0; transition: opacity 0.5s ease 0.2s; }
.site-wrapper.is-visible { opacity: 1; }

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: var(--neon-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
}

.logo:hover { text-shadow: none; color: var(--white); }

.logo__crest {
  width: 36px;
  height: 42px;
  background: linear-gradient(180deg, var(--purple-bright), var(--purple-dim));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: var(--neon-glow);
}

.logo__bylt {
  font-family: var(--font-brush);
  font-size: 1.5rem;
  color: var(--purple-bright);
  text-shadow: 0 0 10px rgba(196, 77, 255, 0.6);
  display: block;
  line-height: 1;
}

.logo__society {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--gray);
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--gray);
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--purple-bright);
  box-shadow: var(--neon-glow);
  transition: width var(--transition), left var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 80%;
  left: 10%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--purple-bright);
  box-shadow: 0 0 6px var(--purple);
}

/* ——— Brush headings ——— */
.brush-text {
  font-family: var(--font-brush);
  color: var(--purple-bright);
  text-shadow: 0 0 12px rgba(155, 48, 255, 0.7);
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 1.5rem;
}

.page-title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  margin: 0;
}

.page-subtitle {
  color: var(--gray);
  font-style: italic;
  margin-top: 0.5rem;
}

/* ——— Buttons ——— */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn--primary {
  background: linear-gradient(135deg, var(--purple-dim), var(--purple));
  color: var(--white);
  box-shadow: var(--neon-glow);
  border: 1px solid var(--purple-bright);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(196, 77, 255, 0.9), 0 0 40px rgba(155, 48, 255, 0.5);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--purple-bright);
  border: var(--neon-border);
}

.btn--ghost:hover {
  background: rgba(155, 48, 255, 0.15);
  box-shadow: var(--neon-glow);
  color: var(--white);
}

.btn--small { padding: 0.5rem 1rem; font-size: 0.75rem; }

.link-neon { font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.85rem; }

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, var(--black) 95%),
    linear-gradient(90deg, rgba(5,5,8,0.9) 0%, transparent 50%, rgba(5,5,8,0.7) 100%),
    url("https://images.unsplash.com/photo-1514565131-fce0801e5785?w=1920&q=80") center/cover no-repeat;
  filter: saturate(0.6) hue-rotate(260deg) brightness(0.35);
}

.hero__smoke {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 80%, rgba(155, 48, 255, 0.35), transparent 50%),
              radial-gradient(ellipse at 70% 60%, rgba(90, 26, 138, 0.4), transparent 45%);
  animation: smokeDrift 8s ease-in-out infinite alternate;
}

@keyframes smokeDrift {
  from { opacity: 0.6; transform: scale(1); }
  to { opacity: 1; transform: scale(1.05) translateX(2%); }
}

.hero__tire-marks {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 40px,
    rgba(155, 48, 255, 0.08) 40px,
    rgba(155, 48, 255, 0.08) 42px
  );
  opacity: 0.5;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.hero__tag {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: var(--purple-bright);
}

.hero__title {
  margin: 0.5rem 0;
  line-height: 0.95;
}

.hero__title .brush-text {
  display: block;
  font-size: clamp(3.5rem, 14vw, 7rem);
}

.hero__title .brush-text--sub {
  font-size: clamp(1.5rem, 6vw, 3rem);
  color: var(--white);
  text-shadow: 0 0 20px rgba(155, 48, 255, 0.5);
}

.hero__motto {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--purple-bright);
  text-transform: uppercase;
}

.hero__lead {
  max-width: 540px;
  color: var(--gray);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* ——— Sections ——— */
.section {
  padding: 4rem 0;
  position: relative;
}

.section--dark {
  background: var(--black-soft);
}

.section--branded {
  background: linear-gradient(180deg, var(--black), var(--black-soft));
}

.neon-border {
  border: var(--neon-border);
  box-shadow: inset 0 0 30px rgba(155, 48, 255, 0.05), 0 0 20px rgba(155, 48, 255, 0.1);
  border-radius: 8px;
}

.split-brand {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.brand-poster,
.rules-poster-full {
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(155, 48, 255, 0.3);
  border: 2px solid rgba(155, 48, 255, 0.4);
}

.rules-poster-wrap { margin-bottom: 3rem; text-align: center; }
.rules-poster-full { max-width: 700px; margin: 0 auto; }

/* ——— Rules list ——— */
.rules-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.rule-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  align-items: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.rule-item:hover {
  transform: translateX(6px);
  box-shadow: 0 0 30px rgba(155, 48, 255, 0.25);
}

.rule-item__num {
  font-family: var(--font-brush);
  font-size: 3.5rem;
  color: var(--purple);
  text-shadow: var(--neon-glow);
  line-height: 1;
  text-align: center;
}

.rule-item__text {
  margin: 0;
  font-size: 1.05rem;
}

/* ——— Cards ——— */
.card-grid,
.events-grid,
.builds-grid,
.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.events-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.builds-grid { grid-template-columns: 1fr; max-width: 800px; margin: 0 auto; }
.gallery-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

.event-card,
.build-card {
  background: var(--black-soft);
  border-radius: 8px;
  overflow: hidden;
  border: var(--neon-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.event-card:hover,
.build-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--neon-glow);
}

.event-card--featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.event-card__img,
.build-card__img {
  min-height: 200px;
  background: var(--black) center/cover no-repeat;
  background-color: #111;
}

.event-card__body,
.build-card__body {
  padding: 1.5rem;
}

.event-card__body time {
  font-size: 0.8rem;
  color: var(--purple-bright);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.event-card__body h3 {
  margin: 0.5rem 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.05em;
}

.build-card__member { color: var(--purple-bright); font-weight: 600; }
.build-card--full .build-card__img { min-height: 280px; }

.build-card__mods {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(155, 48, 255, 0.2);
  font-size: 0.9rem;
}

/* ——— Gallery ——— */
.gallery-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: var(--neon-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  box-shadow: var(--neon-glow);
  transform: scale(1.02);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  font-size: 0.8rem;
}

/* ——— Lightbox ——— */
/* hidden attribute is ignored if display:flex is set — must force display:none */
.lightbox[hidden] {
  display: none !important;
  pointer-events: none;
}

.lightbox:not([hidden]) {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  padding: 2rem;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 75vh;
  object-fit: contain;
  border: 2px solid var(--purple);
  box-shadow: var(--neon-glow);
}

.lightbox__caption { color: var(--gray); margin-top: 1rem; }
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(155, 48, 255, 0.2);
  border: var(--neon-border);
  color: var(--white);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  cursor: pointer;
  border-radius: 4px;
}
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ——— Contact forms ——— */
.contact-grid { max-width: 640px; margin: 0 auto; }

.form-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-tab {
  flex: 1;
  padding: 0.75rem;
  background: var(--black-soft);
  border: var(--neon-border);
  color: var(--gray);
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}

.form-tab.active,
.form-tab:hover {
  color: var(--white);
  box-shadow: var(--neon-glow);
  background: rgba(155, 48, 255, 0.15);
}

.form-panel { display: none; padding: 2rem; }
.form-panel.active { display: block; }

.contact-form label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.75rem 1rem;
  background: var(--black);
  border: 1px solid rgba(155, 48, 255, 0.3);
  color: var(--white);
  border-radius: 4px;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--purple-bright);
  box-shadow: 0 0 12px rgba(155, 48, 255, 0.3);
}

.alert {
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}
.alert--success { border-color: #3d9b5a; }
.alert--error { border-color: #c44d4d; }

/* ——— Page hero ——— */
.page-hero {
  padding: 4rem 0 2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(90, 26, 138, 0.2), transparent);
}

.page-hero--compact { padding: 3rem 0 1.5rem; }

.content-block { padding: 2rem; }
.content-block__inner { font-size: 1.1rem; line-height: 1.8; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.value-card {
  padding: 2rem;
  text-align: center;
  border: var(--neon-border);
  border-radius: 8px;
  transition: box-shadow var(--transition);
}

.value-card:hover { box-shadow: var(--neon-glow); }

.cta-strip {
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(90, 26, 138, 0.35), transparent 70%);
}

.cta-strip__inner h2 { font-size: 3rem; margin-bottom: 0.5rem; }

.empty-state {
  text-align: center;
  color: var(--gray);
  padding: 3rem;
  font-style: italic;
}

.section-cta { text-align: center; margin-top: 2rem; }

/* ——— Footer ——— */
.site-footer {
  position: relative;
  padding: 3rem 0 2rem;
  border-top: var(--neon-border);
  margin-top: 4rem;
  background: var(--black-soft);
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  box-shadow: 0 0 40px 10px rgba(155, 48, 255, 0.4);
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo { font-size: 2rem; }
.footer-motto {
  color: var(--purple-bright);
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav a { color: var(--gray); }
.footer-copy { color: var(--gray); font-size: 0.8rem; margin: 0; }

/* ——— Page transitions ——— */
.page-transition {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ——— Flyers / promos ——— */
.section--flyer {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.section--flyer-join {
  padding-top: 0;
}

.flyer-glow {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(155, 48, 255, 0.75);
  box-shadow:
    0 0 16px rgba(155, 48, 255, 0.55),
    0 0 40px rgba(155, 48, 255, 0.25),
    inset 0 0 24px rgba(155, 48, 255, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: zoom-in;
}

.flyer-promo--static {
  cursor: default;
}

.flyer-promo--static:hover {
  transform: none;
}

.flyer-glow:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 20px rgba(196, 77, 255, 0.9),
    0 0 48px rgba(155, 48, 255, 0.45);
}

.flyer-promo {
  max-width: 520px;
  margin: 0 auto;
}

.flyer-promo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.section--flyer-home .flyer-promo {
  max-width: 560px;
}

.section--flyer-join .flyer-promo {
  max-width: 480px;
}

/* Featured meet flyer + details */
.section--featured-meet {
  padding-bottom: 0;
}

.meet-flyer-featured {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.meet-flyer-featured__poster {
  max-width: 420px;
}

.meet-flyer-featured__poster img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.meet-flyer-featured__details {
  background: var(--black-soft);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--neon-glow);
}

.meet-flyer-featured__badge {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-bright);
  margin-bottom: 0.5rem;
}

.meet-flyer-featured__members {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple-bright);
}

.meet-flyer-featured__details h3 {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  letter-spacing: 0.04em;
}

.meet-flyer-featured__meta {
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

.meet-flyer-featured__meta dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--purple-bright);
  margin-bottom: 0.25rem;
}

.meet-flyer-featured__meta dd {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

.section-title--sm {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 1.25rem;
}

.gallery-section-gap {
  margin-top: 3rem;
}

.gallery-grid--flyers {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  margin-bottom: 0.5rem;
}

.gallery-grid--flyers .gallery-item {
  aspect-ratio: 2/3;
}

.gallery-grid--flyers .gallery-item img {
  object-fit: contain;
  background: #0a0a10;
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .meet-flyer-featured {
    grid-template-columns: 1fr;
  }

  .meet-flyer-featured__poster {
    max-width: 100%;
    margin: 0 auto;
  }

  .flyer-promo,
  .section--flyer-home .flyer-promo,
  .section--flyer-join .flyer-promo {
    max-width: 100%;
  }

  .split-brand,
  .event-card--featured {
    grid-template-columns: 1fr;
  }

  .rule-item {
    grid-template-columns: 60px 1fr;
  }

  .rule-item__num { font-size: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    width: min(280px, 85vw);
    height: calc(100vh - var(--header-h));
    background: rgba(5, 5, 8, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    border-left: var(--neon-border);
    transform: translateX(100%);
    transition: transform var(--transition);
  }

  .main-nav.is-open { transform: translateX(0); }

  .main-nav a { padding: 0.85rem 0; font-size: 1rem; }
}
