/* ============================================
   HOCKEYJACK — v2
   Electric blue led, ice white surfaces, orange used sparingly
============================================ */

:root {
  --ink: #050814;
  --ink-2: #0a1024;
  --ink-3: #111a36;
  --ice: #eaf4ff;
  --ice-dim: #b8c8e0;
  --blue: #1d8bff;
  --blue-2: #4cb4ff;
  --blue-3: #3aa0ff;
  --blue-deep: #082466;
  --orange: #ff6a14;        /* RARE emphasis only */
  --orange-soft: #ff8a3d;
  --white: #ffffff;
  --grid: rgba(76, 180, 255, 0.07);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 22px;

  --shadow-blue: 0 0 0 1px rgba(29,139,255,.3), 0 22px 60px -12px rgba(29,139,255,.45);
  --shadow-blue-sm: 0 0 0 1px rgba(29,139,255,.35), 0 10px 30px -8px rgba(29,139,255,.45);

  --font-display: "Anton", "Bebas Neue", "Impact", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--ice);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Background grid overlay */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 1;
  opacity: .55;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }
.container--narrow { max-width: 880px; }

/* =========== NAV =========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  z-index: 100;
  transition: background .25s ease, backdrop-filter .25s ease, padding .25s ease;
}
.nav.is-scrolled {
  background: rgba(5,8,20,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(76,180,255,.14);
  padding: 12px 32px;
}
.nav__brand { display: inline-flex; color: var(--ice); }
.logo { height: 48px; width: auto; color: var(--ice); }
.nav__links { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.nav__links a { color: var(--ice-dim); transition: color .2s; position: relative; }
.nav__links a:hover { color: var(--ice); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--blue-3); transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  background: var(--ice); color: var(--ink) !important;
  padding: 10px 18px; border-radius: 10px;
  font-weight: 700;
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--blue-3); color: var(--ink) !important; }

.nav__burger {
  display: none; background: none; border: 0; width: 36px; height: 36px;
  flex-direction: column; justify-content: center; gap: 5px; cursor: pointer;
}
.nav__burger span { display: block; height: 2px; width: 24px; background: var(--ice); }

/* =========== HERO =========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 120px 32px 60px;
}
.hero__slides { position: absolute; inset: 0; z-index: 1; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s ease, transform 7s ease-out;
  filter: saturate(1.05) contrast(1.05);
}
.slide.is-active { opacity: 1; transform: scale(1); }

.hero__veil {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse 80% 60% at 25% 50%, rgba(5,8,20,.5), transparent 70%),
    linear-gradient(180deg, rgba(5,8,20,.55) 0%, rgba(5,8,20,.25) 40%, rgba(5,8,20,.95) 100%),
    linear-gradient(90deg, rgba(8,36,102,.6), rgba(5,8,20,.05) 60%, rgba(5,8,20,.6) 100%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' /></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  mix-blend-mode: overlay; opacity: .25;
}

.hero__bolt {
  position: absolute; z-index: 3; pointer-events: none;
  width: 80px; opacity: .35;
  filter: drop-shadow(0 0 18px currentColor);
}
.hero__bolt--l { top: 18%; left: 3%; transform: rotate(-12deg); }
.hero__bolt--r { bottom: 14%; right: 4%; transform: rotate(18deg); }

.hero__content {
  position: relative; z-index: 4;
  max-width: 1100px; margin: 0 auto; width: 100%;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .25em;
  color: var(--blue-2); text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(76,180,255,.4);
  border-radius: 999px;
  background: rgba(8,36,102,.35);
  backdrop-filter: blur(8px);
  margin-bottom: 22px;
}
.dot { width: 8px; height: 8px; background: var(--blue-3); border-radius: 50%; box-shadow: 0 0 14px var(--blue-3); animation: pulse 1.4s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
}
.hero__title .word {
  display: block;
  font-size: clamp(60px, 12vw, 168px);
  text-transform: uppercase;
  line-height: .92;
}
.hero__title .w2 { margin-top: .04em; }
.hero__title .w1 {
  color: var(--ice);
  text-shadow: 0 0 60px rgba(29,139,255,.4);
}
.hero__title .w2 {
  color: var(--ice);
  text-shadow: 0 0 80px rgba(29,139,255,.6);
  position: relative;
  background: linear-gradient(180deg, var(--ice) 0%, var(--blue-2) 60%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__title .w2::after {
  content: "JACK";
  position: absolute; inset: 0;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.12);
  transform: translate(6px, 6px);
  z-index: -1;
}

.hero__sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--ice-dim);
  max-width: 540px;
  margin-bottom: 36px;
  font-weight: 500;
}

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 14px;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 10px;
  border: 0; cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .2s, color .2s;
}
.btn--primary {
  background: var(--ice); color: var(--ink);
  box-shadow: var(--shadow-blue-sm);
}
.btn--primary:hover { transform: translateY(-2px); background: var(--blue-3); color: var(--ink); }
.btn--ghost {
  background: transparent; color: var(--ice);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.btn--lg { padding: 20px 36px; font-size: 15px; }

.hero__strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  max-width: 720px;
}
.hero__strip > div { padding: 0 18px; border-left: 1px solid rgba(255,255,255,.08); }
.hero__strip > div:first-child { border-left: 0; padding-left: 0; }
.hero__strip b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--ice);
  line-height: 1;
}
.hero__strip > div:nth-child(3) b { color: var(--blue-3); }   /* only one accent in strip */
.hero__strip span {
  display: block; font-size: 11px; letter-spacing: .2em;
  color: var(--ice-dim); text-transform: uppercase; margin-top: 6px;
}

.hero__pager {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; gap: 8px;
}
.hero__pager button {
  width: 28px; height: 3px; border: 0; background: rgba(255,255,255,.25);
  cursor: pointer; transition: background .25s, transform .25s;
}
.hero__pager button.is-active { background: var(--blue-3); transform: scaleY(2); }

.hero__scroll {
  position: absolute; bottom: 30px; right: 32px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .3em;
  color: var(--ice-dim); z-index: 5;
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.hero__scroll span { display: block; transform: rotate(-180deg); margin-top: 8px; animation: bounce 1.8s infinite; color: var(--blue-3); }
@keyframes bounce { 0%, 100% { transform: rotate(-180deg) translateY(0); } 50% { transform: rotate(-180deg) translateY(-6px); } }

/* =========== TICKER =========== */
.ticker {
  background: var(--ink-2);
  color: var(--ice);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(76,180,255,.2);
  border-bottom: 1px solid rgba(76,180,255,.2);
  position: relative; z-index: 5;
  /* no rotation — prevents horizontal scroll & looks cleaner */
}
.ticker__track {
  display: flex; gap: 36px; white-space: nowrap;
  font-family: var(--font-display); font-size: 26px; letter-spacing: .05em;
  animation: scroll 36s linear infinite;
  width: max-content;
}
.ticker__track span { display: inline-block; }
.ticker__track span:nth-child(odd) { color: var(--ice); }
.ticker__track span:nth-child(even) { color: var(--blue-3); }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========== SHARED =========== */
.chip {
  display: inline-block;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .25em;
  color: var(--blue-2); text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(76,180,255,.4);
  border-radius: 999px;
  background: rgba(76,180,255,.08);
  margin-bottom: 18px;
}
.chip--ghost { color: var(--blue-2); border-color: rgba(76,180,255,.35); background: rgba(76,180,255,.06); }

.section-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  line-height: .95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 24px;
}
.section-title--white { color: var(--ice); }
.hl { color: var(--blue); position: relative; display: inline-block; }
/* Highlight glow band uses blue, with one orange flash exception via .hl--orange */
.hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 8%;
  height: 14%; background: rgba(29,139,255,.15); z-index: -1;
}
.hl--orange { color: var(--orange); }
.hl--orange::after { background: rgba(255,106,20,.18); }

.section-head { margin-bottom: 60px; max-width: 900px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-sub { color: var(--ice-dim); font-size: 17px; max-width: 600px; margin: 12px auto 0; }

/* =========== ABOUT =========== */
.about {
  background: var(--ice);
  color: var(--ink);
  padding: clamp(80px, 12vw, 160px) 32px;
  position: relative; z-index: 2;
  overflow: hidden;
}
.about::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(5,8,20,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5,8,20,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.about__grid {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 140px 1fr 380px;
  gap: 48px;
  align-items: start;
}
.about__label .chip { background: rgba(5,8,20,.05); border-color: rgba(5,8,20,.2); color: var(--ink); }
.about__copy .section-title { color: var(--ink); }
.about__copy .hl { color: var(--blue); }
.about__copy .hl::after { background: rgba(29,139,255,.18); }
.about__copy p { color: rgba(5,8,20,.75); font-size: 17px; margin-bottom: 18px; max-width: 580px; }
.about__copy p b { color: var(--ink); }
.about__bullets {
  list-style: none; margin-top: 36px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  max-width: 480px;
}
.about__bullets li {
  display: flex; flex-direction: column;
  padding: 14px 16px;
  background: var(--ink);
  color: var(--ice);
  border-radius: var(--r-md);
  position: relative; overflow: hidden;
}
.about__bullets li::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--blue-3);
}
.about__bullets b { font-family: var(--font-mono); font-size: 10px; letter-spacing: .25em; color: var(--blue-2); text-transform: uppercase; }
.about__bullets span { font-family: var(--font-display); font-size: 22px; margin-top: 4px; }

.about__photo { min-width: 0; }
.photo-frame {
  position: relative; aspect-ratio: 3/4;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-blue);
  transform: rotate(2deg);
  max-width: 100%;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame__tag {
  position: absolute; left: 16px; bottom: 16px;
  background: var(--ice); color: var(--ink);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em;
  padding: 8px 12px; border-radius: 6px;
  font-weight: 700;
}

/* =========== STATS =========== */
.stats {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 32px;
  background-size: cover; background-position: center;
  background-attachment: fixed;
  color: var(--ice);
  overflow: hidden;
}
.stats__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,8,20,.85) 0%, rgba(5,8,20,.78) 50%, rgba(5,8,20,.95) 100%);
  z-index: 1;
}
.stats > .container { position: relative; z-index: 2; }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 70px;
}
.stat {
  padding: 32px 26px 28px;
  background: linear-gradient(180deg, rgba(29,139,255,.10), rgba(29,139,255,0.02));
  border: 1px solid rgba(76,180,255,.18);
  border-radius: var(--r-lg);
  position: relative; overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform .35s ease, border-color .35s;
}
.stat:hover { transform: translateY(-6px); border-color: rgba(76,180,255,.5); }
.stat--accent {
  background: linear-gradient(180deg, rgba(58,160,255,.18), rgba(58,160,255,0.04));
  border-color: rgba(58,160,255,.5);
}
.stat__num {
  font-family: var(--font-display); font-size: clamp(56px, 7vw, 96px);
  line-height: 1; color: var(--ice);
}
.stat--accent .stat__num { color: var(--blue-3); }
.stat__label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ice-dim);
  margin-top: 14px;
}
.stat__bar { height: 3px; background: rgba(255,255,255,.1); margin-top: 18px; border-radius: 3px; overflow: hidden; }
.stat__bar i { display: block; height: 100%; background: var(--blue); border-radius: 3px; }
.stat--accent .stat__bar i { background: var(--blue-3); }

/* ===== Trophies (compact championship grid) ===== */
.trophies { margin-top: 56px; }
.trophies__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 18px; flex-wrap: wrap;
}
.trophies h3 {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--blue-2);
}
.trophies__count {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em;
  color: var(--ice-dim); text-transform: uppercase;
}
.trophies__year {
  display: flex; align-items: center; gap: 14px;
  margin: 22px 0 14px;
}
.trophies__year-label {
  font-family: var(--font-display); font-size: 18px; letter-spacing: .04em;
  text-transform: uppercase; color: #fff; white-space: nowrap;
}
.trophies__year-bar {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(58,160,255,.5), rgba(58,160,255,.08));
}
.trophies__year-num {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em;
  color: var(--blue-3); padding: 4px 10px;
  border: 1px solid rgba(58,160,255,.3); border-radius: 999px;
  background: rgba(58,160,255,.08);
}
.trophies__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.trophy {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-left: 2px solid var(--blue-3);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(58,160,255,.06), rgba(58,160,255,.02));
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.trophy:hover {
  transform: translateY(-2px);
  border-color: rgba(58,160,255,.35);
  border-left-color: var(--blue-3);
  background: linear-gradient(180deg, rgba(58,160,255,.12), rgba(58,160,255,.04));
}
.trophy__tag {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .2em;
  color: var(--blue-3); padding: 3px 7px;
  border: 1px solid rgba(58,160,255,.3);
  border-radius: 4px;
  white-space: nowrap; flex-shrink: 0;
  background: rgba(58,160,255,.08);
}
.trophy__name {
  font-family: var(--font-display); font-size: 15px; letter-spacing: .02em;
  text-transform: uppercase; color: #fff; line-height: 1.2;
}
.trophy--honor {
  border-left-color: var(--orange);
}
.trophy--honor .trophy__tag {
  color: var(--orange);
  border-color: rgba(255,106,20,.4);
  background: rgba(255,106,20,.08);
}
@media (max-width: 720px) {
  .trophies__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .trophy { padding: 10px 12px; gap: 10px; }
  .trophy__name { font-size: 13px; }
  .trophies__year-label { font-size: 16px; }
}
@media (max-width: 480px) {
  .trophies__grid { grid-template-columns: 1fr; }
}

/* =========== ROLLER HOCKEY =========== */
.roller {
  background: var(--ink-2);
  padding: clamp(80px, 12vw, 160px) 32px;
  position: relative; z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(76,180,255,.08);
}
.roller::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(29,139,255,.18), transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(58,160,255,.12), transparent 55%);
  pointer-events: none;
}
.roller > .container { position: relative; z-index: 2; }
.roller__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.roller__copy p {
  color: var(--ice-dim);
  font-size: 17px;
  margin-bottom: 16px;
  max-width: 560px;
}
.roller__copy p b { color: var(--ice); }
.roller__copy .hl { color: var(--blue-3); }
.roller__copy .hl::after { background: rgba(58,160,255,.18); }

.roller__pills {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 28px;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(76,180,255,.08);
  border: 1px solid rgba(76,180,255,.25);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ice-dim);
}
.pill b {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .05em;
  color: var(--blue-3);
}

.roller__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  perspective: 1000px;
}
.roller__card {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(29,139,255,.12), rgba(5,8,20,.6));
  border: 1px solid rgba(76,180,255,.25);
  padding: 22px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ice);
  overflow: hidden;
  transition: transform .4s ease, border-color .3s;
}
.roller__card svg { width: 70%; height: 70%; }
.roller__card:hover { transform: translateY(-6px) rotateX(4deg) rotateY(-4deg); border-color: rgba(76,180,255,.5); }
.roller__card--ice { transform: rotate(-2deg); }
.roller__card--roll { transform: rotate(2deg) translateY(20px); }
.roller__card__label {
  position: absolute; top: 16px; left: 18px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .3em;
  color: var(--blue-2);
}
.roller__card::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 65%, rgba(5,8,20,.4) 100%),
    repeating-linear-gradient(90deg, transparent 0, transparent 18px, rgba(76,180,255,.05) 18px, rgba(76,180,255,.05) 19px);
  pointer-events: none;
}

/* =========== GALLERY =========== */
.gallery {
  background: var(--ink);
  padding: clamp(80px, 12vw, 160px) 32px;
  position: relative; z-index: 2;
  overflow: hidden;
}
.gallery .section-title { color: var(--ice); }
.gallery .hl { color: var(--blue-3); }
.gallery .hl::after { background: rgba(58,160,255,.18); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.g-item {
  position: relative; overflow: hidden;
  border-radius: var(--r-md);
  background: var(--ink-2);
}
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .4s;
  filter: saturate(1.05);
}
.g-item:hover img { transform: scale(1.06); filter: saturate(1.15) brightness(1.05); }
.g-item figcaption {
  position: absolute; left: 16px; bottom: 16px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .25em;
  background: rgba(5,8,20,.7); color: var(--ice);
  padding: 8px 12px; border-radius: 4px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  text-transform: uppercase;
}
.g-1 { grid-column: span 3; grid-row: span 2; }
.g-2 { grid-column: span 3; grid-row: span 1; }
.g-3 { grid-column: span 2; grid-row: span 1; }
.g-4 { grid-column: span 1; grid-row: span 1; }

/* =========== CONTACT =========== */
.contact {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 32px;
  overflow: hidden;
  z-index: 2;
}
.contact__bg {
  position: absolute; inset: 0; z-index: 1;
  background-size: cover; background-position: center;
  opacity: .35;
  filter: hue-rotate(-15deg) saturate(.85);
}
.contact__veil {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(5,8,20,.7), rgba(5,8,20,.94));
}
.contact > .container { position: relative; z-index: 3; }
.contact .hl { color: var(--blue-3); }
.contact .hl::after { background: rgba(58,160,255,.18); }

.form {
  background: rgba(10,16,36,.7);
  border: 1px solid rgba(76,180,255,.2);
  border-radius: var(--r-lg);
  padding: 36px;
  backdrop-filter: blur(16px);
  display: grid; gap: 18px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.form__full { grid-column: 1 / -1; }
.form label span {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--blue-2);
}
.form input, .form select, .form textarea {
  background: rgba(5,8,20,.65);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--ice);
  padding: 14px 16px;
  font-family: var(--font-body); font-size: 15px;
  border-radius: var(--r-md);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  max-width: 100%;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--blue-3);
  box-shadow: 0 0 0 3px rgba(58,160,255,.2);
}
.form textarea { resize: vertical; }
.form button[type="submit"] {
  justify-self: start;
  margin-top: 8px;
}
.form__note { font-family: var(--font-mono); font-size: 11px; color: var(--ice-dim); letter-spacing: .1em; }
.form__success {
  padding: 14px 18px;
  background: rgba(29,255,140,.1);
  border: 1px solid rgba(29,255,140,.35);
  border-radius: var(--r-md);
  color: #6effb0;
  font-weight: 600;
}

/* =========== FOOTER =========== */
.foot {
  background: var(--ink);
  padding: 36px 32px;
  border-top: 1px solid rgba(76,180,255,.12);
  position: relative; z-index: 2;
}
.foot__inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.foot__inner--center {
  flex-direction: column; justify-content: center; align-items: center; gap: 14px; text-align: center;
}
.logo--foot { color: var(--ice-dim); }
.foot__meta {
  display: flex; flex-direction: column; gap: 4px; text-align: right;
  font-size: 12px; color: var(--ice-dim); letter-spacing: .05em;
}
.foot__meta--center { text-align: center; align-items: center; }
.foot__credit {
  margin-top: 6px; font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ice-dim);
}
.foot__credit a {
  color: #3aa0ff; text-decoration: none; border-bottom: 1px solid rgba(58,160,255,.35);
  transition: color .2s ease, border-color .2s ease;
}
.foot__credit a:hover { color: #eaf4ff; border-bottom-color: #eaf4ff; }

/* =========== REEL =========== */
.reel {
  position: relative;
  padding: 96px 0 80px;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(29,139,255,.12), transparent 60%),
    linear-gradient(180deg, #050814 0%, #07112a 50%, #050814 100%);
}
.reel .section-head { text-align: center; margin-bottom: 36px; }
.reel__frame {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(58,160,255,.22);
  box-shadow:
    0 0 0 1px rgba(58,160,255,.08) inset,
    0 30px 80px -20px rgba(29,139,255,.35),
    0 10px 30px -10px rgba(0,0,0,.6);
  background: #050814;
  aspect-ratio: 16 / 9;
}
.reel__video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050814;
}
.reel__glow {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(58,160,255,.18), transparent 70%),
    linear-gradient(180deg, transparent 70%, rgba(5,8,20,.55) 100%);
  mix-blend-mode: screen;
}
.reel__caption {
  text-align: center;
  margin-top: 18px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ice-dim);
}
@media (max-width: 720px) {
  .reel { padding: 56px 0 48px; }
  .reel__frame {
    border-radius: 14px;
    margin: 0 16px;
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
  }
}

/* =========== REVEAL ANIMATIONS =========== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* =========== RESPONSIVE =========== */
@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 380px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .roller__grid { grid-template-columns: 1fr; gap: 40px; }
  .roller__visual { max-width: 420px; }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .g-1, .g-2, .g-3, .g-4 { grid-column: span 1; grid-row: span 1; }
  .g-1 { grid-column: span 2; }
}

@media (max-width: 720px) {
  .nav { padding: 14px 18px; }
  .nav__links { display: none; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(5,8,20,.95);
    padding: 24px;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(76,180,255,.15);
    gap: 18px;
  }
  .nav__burger { display: flex; }
  .logo { height: 38px; }
  .hero { padding: 100px 20px 50px; }
  .hero__strip { grid-template-columns: repeat(2, 1fr); gap: 16px 0; }
  .hero__strip > div:nth-child(3) { border-left: 0; padding-left: 0; }
  .hero__bolt { display: none; }
  .hero__scroll { display: none; }
  .form { padding: 22px; }
  .form__row { grid-template-columns: 1fr; }
  .achievements li { grid-template-columns: 70px 1fr; }
  .ach__tag { grid-column: 2; justify-self: start; margin-top: 8px; }
  .photo-frame { transform: none; }
  .ticker__track { font-size: 18px; }
  .about__bullets { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
}
