/* ==========================================================================
   TechCrew - experiences.html
   Extracted from the page's inline <style> block. Load order and rule order
   are unchanged, so cascade/specificity behave exactly as before.
   ========================================================================== */

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

:root {
  --void-black: #050507;
  --void-dark:  #0A0A0F;
  --void-card:  #0D0D14;
  --brand:      #9d6cff;
  --brand-soft: #bb9cff;
  --brand-glow: rgba(157, 108, 255, 0.4);
  --ink-soft:   rgba(255,255,255,0.85);
  --ink-mute:   rgba(255,255,255,0.6);
  --ink-faint:  rgba(255,255,255,0.4);
  --hairline:   rgba(255,255,255,0.12);
  --hairline-brand: rgba(157, 108, 255, 0.3);
  --ease-quiet:    cubic-bezier(.22, 1, .36, 1);
  --ease-precise:  cubic-bezier(.4, 0, .2, 1);
  --ease-emphasis: cubic-bezier(.16, 1, .3, 1);
}

html { background: var(--void-black); scroll-behavior: auto; }
body {
  background: var(--void-black);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.is-loading { overflow: hidden; height: 100vh; }

img { display: block; max-width: 100%; }
a, button { color: inherit; text-decoration: none; cursor: pointer; background: none; border: none; font: inherit; }

::selection { background: var(--brand); color: white; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--void-black); }
::-webkit-scrollbar-thumb { background: var(--hairline-brand); }
::-webkit-scrollbar-thumb:hover { background: var(--brand); }

/* The custom cursor was removed - the browser's native cursor is used. */

/* ===== SCROLL PROGRESS ===== */
.nav-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 100%;
  background: var(--brand);
  z-index: 101;
  transform-origin: left;
  transform: scaleX(0);
  box-shadow: 0 0 8px var(--brand);
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 1.25rem; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 2rem);
  max-width: 940px;
  transition: top 400ms var(--ease-quiet);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  background: rgba(10, 10, 15, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(157, 108, 255, 0.12);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: background 400ms var(--ease-quiet), border-color 400ms var(--ease-quiet), box-shadow 400ms var(--ease-quiet);
}
.nav--scrolled .nav__inner {
  background: rgba(10, 10, 15, 0.82);
  border-color: rgba(157, 108, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 24px rgba(157, 108, 255, 0.1), inset 0 1px 0 rgba(255,255,255,0.05);
}
.nav__logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; font-size: 13px;
  flex-shrink: 0;
}
.nav__logo img { height: 26px; width: auto; display: block; }
.nav__menu {
  display: flex; align-items: center; gap: 0.15rem;
  position: relative;
  background: rgba(255,255,255,0.03);
  padding: 0.3rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.04);
}
.nav__indicator {
  position: absolute; top: 0.3rem; left: 0;
  height: calc(100% - 0.6rem);
  background: rgba(157, 108, 255, 0.15);
  border: 1px solid rgba(157, 108, 255, 0.3);
  border-radius: 100px;
  opacity: 0;
  transition: left 500ms var(--ease-emphasis), width 500ms var(--ease-emphasis), opacity 300ms var(--ease-quiet);
  z-index: 1; pointer-events: none;
}
.nav__link {
  position: relative; z-index: 2;
  padding: 0.5rem 0.95rem;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 500;
  color: var(--ink-mute);
  transition: color 300ms var(--ease-quiet);
  border-radius: 100px; white-space: nowrap;
}
.nav__link:hover, .nav__link.is-active { color: white; }
.nav__cta {
  padding: 0.65rem 1.4rem;
  background: var(--brand);
  border-radius: 100px;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600;
  color: white; flex-shrink: 0;
  transition: background 300ms var(--ease-quiet), box-shadow 300ms var(--ease-quiet), transform 300ms var(--ease-quiet);
  box-shadow: 0 0 20px rgba(157, 108, 255, 0.3);
}
.nav__cta:hover {
  background: var(--brand-soft);
  box-shadow: 0 0 30px rgba(157, 108, 255, 0.5);
  transform: scale(1.04);
}
/* --- Mobile nav toggle + drawer --- */
.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  flex-shrink: 0;
  align-items: center; justify-content: center;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: border-color 300ms var(--ease-quiet), background 300ms var(--ease-quiet);
}
.nav__toggle:hover { border-color: var(--hairline-brand); background: rgba(157, 108, 255, 0.08); }
.nav__toggle-bars { display: block; position: relative; width: 16px; height: 1.5px; background: white; transition: background 200ms var(--ease-quiet); }
.nav__toggle-bars::before, .nav__toggle-bars::after {
  content: ''; position: absolute; left: 0;
  width: 16px; height: 1.5px; background: white;
  transition: transform 300ms var(--ease-quiet);
}
.nav__toggle-bars::before { top: -5px; }
.nav__toggle-bars::after  { top: 5px; }
.nav.is-open .nav__toggle-bars { background: transparent; }
.nav.is-open .nav__toggle-bars::before { transform: translateY(5px) rotate(45deg); }
.nav.is-open .nav__toggle-bars::after  { transform: translateY(-5px) rotate(-45deg); }

.nav__drawer {
  display: none;
  margin-top: 0.6rem;
  padding: 0.75rem;
  background: rgba(10, 10, 15, 0.94);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(157, 108, 255, 0.16);
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  opacity: 0; transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 300ms var(--ease-quiet), transform 300ms var(--ease-quiet);
}
.nav.is-open .nav__drawer { opacity: 1; transform: none; pointer-events: auto; }
.nav__drawer a {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 500;
  color: var(--ink-mute);
  border-radius: 14px;
  transition: color 250ms var(--ease-quiet), background 250ms var(--ease-quiet);
}
.nav__drawer a:hover, .nav__drawer a.is-active { color: white; background: rgba(157, 108, 255, 0.12); }
.nav__drawer a.nav__drawer-cta { color: white; background: var(--brand); text-align: center; font-weight: 600; margin-top: 0.4rem; }
.nav__drawer a.nav__drawer-cta:hover { background: var(--brand-soft); }

@media (max-width: 1000px) {
  .nav__menu { display: none; }
  .nav__toggle { display: flex; }
  .nav__drawer { display: block; }
  .nav__inner { padding: 0.5rem 0.5rem 0.5rem 1rem; }
}
@media (max-width: 560px) {
  .nav__cta { display: none; }
  .nav__logo img { height: 22px; }
}

/* ===== LOADER ===== */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--void-black);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.loader__grid {
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
#loader-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}
.loader__corner {
  position: absolute;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--ink-mute);
  text-transform: uppercase;
  z-index: 2;
}
.loader__corner--tl { top: 2rem; left: 2rem; }
.loader__corner--tr { top: 2rem; right: 2rem; }
.loader__corner--bl { bottom: 2rem; left: 2rem; }
.loader__corner--br { bottom: 2rem; right: 2rem; }
.loader__dial {
  position: relative; z-index: 2;
  width: 280px; height: 280px;
  display: flex; align-items: center; justify-content: center;
}
.loader__dial-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.loader__dial-track { fill: none; stroke: var(--hairline); stroke-width: 1; }
.loader__dial-progress {
  fill: none; stroke: var(--brand); stroke-width: 2;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px var(--brand));
  stroke-dasharray: 282.74;
  stroke-dashoffset: 282.74;
}
.loader__dial-ticks {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: rotate-ticks 20s linear infinite;
}
@keyframes rotate-ticks { to { transform: rotate(360deg); } }
.loader__center {
  position: relative; z-index: 2;
  text-align: center;
  background: rgba(5, 5, 7, 0.7);
  backdrop-filter: blur(8px);
  padding: 2rem 3rem;
  border: 1px solid rgba(157, 108, 255, 0.2);
  display: flex; flex-direction: column; align-items: center;
}
.loader__label { font-size: 11px; font-weight: 600; letter-spacing: 0.3em; color: var(--brand); text-transform: uppercase; margin-bottom: 1rem; }
.loader__counter { font-weight: 200; font-size: 3.5rem; letter-spacing: -0.03em; color: white; display: flex; align-items: baseline; margin-bottom: 1rem; line-height: 1; }
.loader__pct { font-size: 1.2rem; color: var(--ink-mute); margin-left: 4px; font-weight: 400; }
.loader__status { font-size: 11px; font-weight: 400; letter-spacing: 0.2em; color: var(--ink-soft); text-transform: uppercase; min-height: 1em; margin-bottom: 1.5rem; }
.loader__meta { display: flex; gap: 2rem; font-size: 10px; font-weight: 500; letter-spacing: 0.25em; color: var(--ink-faint); border-top: 1px solid var(--hairline); padding-top: 1rem; width: 100%; justify-content: center; }
.loader__flash { position: absolute; inset: 0; background: white; z-index: 3; opacity: 0; pointer-events: none; mix-blend-mode: screen; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh; min-height: 720px;
  overflow: hidden;
  background: var(--void-black);
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  background: 
    radial-gradient(ellipse at 50% 50%, rgba(5,5,7,0) 0%, rgba(5,5,7,0.6) 60%, rgba(5,5,7,0.95) 100%),
    linear-gradient(180deg, rgba(5,5,7,0.4) 0%, rgba(5,5,7,0) 30%, rgba(5,5,7,0) 70%, rgba(5,5,7,0.9) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative; z-index: 3;
  height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 7rem 2rem 3rem;
  pointer-events: none;
}
.hero__title-wrap { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.hero__label { font-size: 13px; font-weight: 600; letter-spacing: 0.35em; color: var(--brand); text-transform: uppercase; margin-bottom: 2rem; opacity: 0; display: flex; align-items: center; gap: 1rem; }
.hero__label::before { content: ''; width: 32px; height: 1px; background: var(--brand); }
.hero__title { font-weight: 900; font-size: clamp(2.4rem, 8vw, 7.5rem); line-height: 0.95; letter-spacing: -0.045em; color: white; margin-bottom: 2rem; text-transform: uppercase; perspective: 1000px; }
.hero__title .word-wrapper { display: inline-block; white-space: nowrap; }
.hero__title .letter { display: inline-block; transform-origin: bottom; will-change: transform, opacity, filter; opacity: 0; }
.hero__sub { font-weight: 300; font-size: clamp(1.35rem, 2.2vw, 2rem); line-height: 1.45; color: var(--ink-soft); max-width: 780px; opacity: 0; letter-spacing: 0.01em; }

/* ===== MARQUEE ===== */
.marquee {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 2rem 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--void-black);
}
.marquee__track {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
.marquee__text {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.4);
  margin-right: 3rem;
}
.marquee__dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--brand);
  border-radius: 50%;
  margin-right: 3rem;
  transform: translateY(-8px);
  box-shadow: 0 0 15px var(--brand);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HORIZONTAL SCROLL (Dual Row) ===== */
.h-scroll {
  height: 100vh;
  overflow: hidden;
  position: relative;
  background: var(--void-black);
}
.h-scroll__sticky {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding-top: 4rem; 
}
.h-scroll__header {
  position: absolute;
  top: 5rem; left: 4rem;
  z-index: 2;
}
.h-scroll__title {
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 600px;
}
.h-scroll__title em { font-style: normal; color: var(--brand); }

.h-scroll__tracks-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
.h-scroll__track {
  display: flex;
  gap: 2rem;
  padding: 0 4rem;
  will-change: transform;
  flex-shrink: 0;
}

.h-card {
  flex-shrink: 0;
  width: 55vw;
  max-width: 700px;
  height: clamp(200px, 35vh, 320px); 
  position: relative;
  border: 1px solid var(--hairline);
  overflow: hidden;
  background: var(--void-card);
  transition: border-color 400ms var(--ease-emphasis);
}
.h-card--bottom {
  width: 40vw;
  max-width: 500px;
  height: clamp(160px, 28vh, 250px); 
}
.h-card:hover { border-color: var(--brand); }
.h-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) contrast(1.1) brightness(0.6);
  transition: filter 600ms var(--ease-quiet), transform 700ms var(--ease-quiet);
}
.h-card--bottom .h-card__image {
  filter: grayscale(0.6) contrast(1.1) brightness(0.5);
}
.h-card:hover .h-card__image {
  filter: grayscale(0) contrast(1.05) brightness(0.9);
  transform: scale(1.05);
}
.h-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(0deg, rgba(5,5,7,0.95) 0%, rgba(5,5,7,0.6) 50%, transparent 100%);
}
.h-card--bottom .h-card__content { padding: 1.5rem; }
.h-card__num { font-size: 11px; font-weight: 600; letter-spacing: 0.3em; color: var(--brand); text-transform: uppercase; margin-bottom: 0.75rem; }
.h-card__title { font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1; letter-spacing: -0.02em; text-transform: uppercase; }
.h-card--bottom .h-card__title { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
.h-card__title em { font-style: normal; color: var(--brand); }

@media (max-width: 820px) {
  .h-scroll { height: auto; }
  .h-scroll__sticky { height: auto; padding: 6rem 0; }
  .h-scroll__tracks-wrapper { flex-direction: column; gap: 2rem; }
  .h-scroll__track { flex-direction: column; padding: 0 1.5rem; transform: none !important; }
  .h-card, .h-card--bottom { width: 100%; height: 300px; max-height: none; }
  .h-scroll__header { position: relative; top: 0; left: 0; padding: 0 1.5rem; margin-bottom: 2rem; }
}

/* ===== PARALLAX CTA (Asymmetric Split Screen) ===== */
.parallax-cta {
  display: flex;
  height: 100vh;
  min-height: 600px;
  background: var(--void-black);
  position: relative;
  border-top: 1px solid var(--hairline);
  overflow: hidden;
}
.parallax-cta__left {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5rem;
  position: relative;
  z-index: 2;
  border-right: 1px solid var(--hairline);
  background: var(--void-black);
}
.parallax-cta__left::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: -1;
}
.parallax-cta__right {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
}
.parallax-cta__bg {
  position: absolute;
  top: -15%; left: 0; right: 0;
  height: 130%;
  background-image: url('https://picsum.photos/seed/concert-crowd-hands-up-purple/2560/1440');
  background-size: cover;
  background-position: center;
  filter: grayscale(0.4) contrast(1.1) brightness(0.6);
  will-change: transform;
}
.parallax-cta__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(157,108,255,0.1) 0%, transparent 60%),
              linear-gradient(90deg, rgba(5,5,7,0.8) 0%, rgba(5,5,7,0.2) 30%, rgba(5,5,7,0.2) 70%, rgba(5,5,7,0.8) 100%);
  pointer-events: none;
  z-index: 2;
}
.parallax-cta__title {
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 2.5rem;
}
.parallax-cta__title em { font-style: normal; color: var(--brand); }
.parallax-cta__button {
  display: inline-flex; align-items: center; gap: 1rem;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 1.4rem 2.5rem;
  border: 1px solid var(--brand);
  color: white;
  transition: background 300ms var(--ease-quiet), color 300ms var(--ease-quiet), box-shadow 300ms var(--ease-quiet);
  align-self: flex-start;
}
.parallax-cta__button:hover {
  background: var(--brand);
  color: white;
  box-shadow: 0 0 30px var(--brand-glow);
}
.parallax-cta__button::after { content: '→'; transition: transform 300ms var(--ease-quiet); }
.parallax-cta__button:hover::after { transform: translateX(6px); }

/* HUD Elements on Right Panel */
.hud-bracket {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 1px solid var(--brand);
  z-index: 3;
  box-shadow: 0 0 10px var(--brand-glow);
}
.hud-bracket--tl { top: 20px; left: 20px; border-right: none; border-bottom: none; }
.hud-bracket--tr { top: 20px; right: 20px; border-left: none; border-bottom: none; }
.hud-bracket--bl { bottom: 20px; left: 20px; border-right: none; border-top: none; }
.hud-bracket--br { bottom: 20px; right: 20px; border-left: none; border-top: none; }

.hud-scanline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  z-index: 4;
  opacity: 0.6;
  animation: scan-vertical 4s linear infinite;
  pointer-events: none;
}
@keyframes scan-vertical {
  0% { top: 0; opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}

.hud-meta {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.hud-meta span { color: var(--brand); }

@media (max-width: 820px) {
  .parallax-cta { flex-direction: column; height: auto; }
  .parallax-cta__left { flex: 1 1 auto; padding: 6rem 1.5rem; border-right: none; border-bottom: 1px solid var(--hairline); }
  .parallax-cta__right { flex: 1 1 auto; height: 50vh; min-height: 400px; }
}

/* ===== FOOTER ===== */
.footer { padding: 6rem 2rem 3rem; background: var(--void-black); position: relative; border-top: 1px solid var(--hairline-brand); }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr; gap: 2.5rem; border-top: 1px solid var(--hairline); padding-top: 4rem; }
.footer__col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.3em; color: var(--ink-faint); text-transform: uppercase; margin-bottom: 1.5rem; }
.footer__col .footer__subhead { margin-top: 1.75rem; }
.footer__col p, .footer__col a { font-size: 14px; font-weight: 400; color: var(--ink-soft); line-height: 1.8; display: block; transition: color 200ms var(--ease-quiet); }
.footer__col a:hover { color: var(--brand); }
.footer__brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.footer__brand img { height: 34px; width: auto; display: block; }
.footer__brand-name { font-weight: 700; font-size: 18px; letter-spacing: 0.1em; color: white; text-transform: uppercase; }
.footer__brand-desc { font-size: 0.95rem !important; color: var(--ink-soft) !important; line-height: 1.5; max-width: 320px; }
.footer__bottom { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--hairline); display: flex; justify-content: space-between; font-size: 11px; font-weight: 500; letter-spacing: 0.25em; color: var(--ink-faint); text-transform: uppercase; }
@media (max-width: 1100px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .footer { padding: 4rem 1.5rem 2rem; } .footer__grid { grid-template-columns: 1fr; gap: 2rem; } .footer__bottom { flex-direction: column; gap: 1rem; } }

/* ===== FADE UP ===== */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease-quiet), transform 1s var(--ease-quiet); will-change: opacity, transform; }
.fade-up.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  #hero-canvas, #loader-canvas { display: none; }
  .fade-up { opacity: 1; transform: none; }
  .hero__title .letter { opacity: 1; }
}
