:root {
  --background: #03070d;
  --background-soft: #08111d;
  --panel: rgba(15, 23, 36, 0.52);
  --panel-strong: rgba(10, 18, 31, 0.82);
  --white: #f7f9ff;
  --muted: #aab5c7;
  --line: rgba(220, 233, 255, 0.3);
  --blue: #a9cfff;
  --blue-strong: #78b7ff;
  --blue-glow: rgba(102, 173, 255, 0.65);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 8%, rgba(31, 84, 138, 0.18), transparent 26%),
    var(--background);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #000;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.page-loader img {
  width: 140px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  filter: invert(1);
  animation: loaderPulse 1.2s ease-in-out infinite alternate;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

@keyframes loaderPulse {
  from {
    opacity: 0.45;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1.03);
  }
}

.glass-nav {
  position: fixed;
  top: 18px;
  left: 2.4vw;
  right: 2.4vw;
  z-index: 1000;
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 20px;
  border: 1px solid rgba(214, 229, 255, 0.36);
  border-radius: 32px;
  background: linear-gradient(
    100deg,
    rgba(3, 8, 16, 0.84),
    rgba(15, 22, 35, 0.55),
    rgba(72, 17, 39, 0.48)
  );
  backdrop-filter: blur(20px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 50px rgba(0, 0, 0, 0.26);
  transition: top 0.3s ease, background 0.3s ease;
}

.glass-nav.scrolled {
  top: 8px;
  background: rgba(4, 9, 17, 0.9);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 62px;
  height: 62px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 25px rgba(157, 202, 255, 0.18);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 1px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.brand-copy strong {
  font-size: 0.82rem;
}

.brand-copy small {
  font-size: 0.78rem;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.8rem;
  font-weight: 500;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.9);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--white);
  transition: right 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.63rem;
  font-weight: 700;
}

.nav-join {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid rgba(227, 238, 255, 0.5);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(114, 178, 255, 0.16);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-button span {
  width: 28px;
  height: 2px;
  display: block;
  margin: 6px 0;
  background: var(--white);
  transition: 0.3s ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 160px 7vw 42px;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -5;
  background-image: url("assets/hero.jpg");
  background-size: cover;
  background-position: 68% center;
  transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-darken {
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(0, 4, 10, 0.96) 0%, rgba(0, 6, 13, 0.84) 31%, rgba(0, 8, 16, 0.18) 70%),
    linear-gradient(0deg, rgba(0, 4, 10, 0.98) 0%, rgba(0, 5, 12, 0.08) 58%);
}

.tech-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.16;
  background-image:
    radial-gradient(circle, rgba(119, 185, 255, 0.8) 1px, transparent 1.5px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, black, transparent 45%, black);
}

.orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(167, 211, 255, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 760px;
  height: 760px;
  right: 6vw;
  top: 10vh;
}

.orbit-two {
  width: 520px;
  height: 520px;
  right: 20vw;
  top: 20vh;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 7vh;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 18px;
  color: #eaf2ff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-kicker::after {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.65);
}

.hero-title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(5.4rem, 9.2vw, 10.6rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.title-line {
  display: block;
}

.metallic {
  color: transparent;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #dceaff 34%,
      #6f98ca 67%,
      #f4f8ff 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(120, 182, 255, 0.28));
  text-shadow:
    0 1px 0 #fff,
    0 0 16px rgba(82, 153, 255, 0.45);
}

.hero-subtitle {
  margin: 26px 0 0;
  color: #e7edf7;
  font-size: clamp(0.95rem, 1.35vw, 1.25rem);
  letter-spacing: 0.2em;
  line-height: 1.7;
  text-transform: uppercase;
}

.hero-tags {
  margin: 25px 0;
  color: #f4f7ff;
  font-size: 1rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-tags b {
  margin: 0 10px;
  color: var(--blue);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.primary-cta,
.video-cta {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 28px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.primary-cta {
  color: #0b1524;
  background: linear-gradient(180deg, #ffffff, #d5e3f6);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.7),
    0 0 28px rgba(98, 167, 255, 0.42);
}

.video-cta {
  min-width: 220px;
  border: 1px solid rgba(216, 232, 255, 0.6);
  background: rgba(4, 12, 24, 0.32);
  backdrop-filter: blur(8px);
}

.primary-cta:hover,
.video-cta:hover {
  transform: translateY(-3px);
}

.play-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  font-size: 0.7rem;
}

.folk-script {
  position: absolute;
  top: 16%;
  right: 6vw;
  display: grid;
  justify-items: end;
  font-family: cursive;
  font-size: clamp(2.4rem, 4vw, 5rem);
  font-style: italic;
  line-height: 0.7;
  transform: rotate(-6deg);
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.2);
}

.folk-script span:last-child {
  margin-right: 16px;
}

.side-message {
  position: absolute;
  right: 1.4vw;
  top: 34%;
  margin: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.slide-index {
  position: absolute;
  left: 2vw;
  top: 43%;
  display: grid;
  gap: 25px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.78rem;
}

.slide-index .current {
  color: white;
  font-weight: 700;
}

.slide-index i {
  width: 1px;
  height: 45px;
  margin-left: 8px;
  background:
    linear-gradient(
      to bottom,
      white,
      var(--blue-strong),
      rgba(255, 255, 255, 0.2)
    );
  box-shadow: 0 0 12px var(--blue-glow);
}

.scroll-cue {
  position: absolute;
  left: 2.5vw;
  bottom: 7vh;
  display: flex;
  align-items: center;
  gap: 16px;
}

.mouse-shape {
  width: 34px;
  height: 57px;
  display: grid;
  place-items: start center;
  padding-top: 11px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
}

.mouse-shape i {
  width: 4px;
  height: 9px;
  border-radius: 4px;
  background: white;
  animation: wheelMove 1.5s ease-in-out infinite;
}

@keyframes wheelMove {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  50% {
    transform: translateY(14px);
    opacity: 1;
  }
}

.scroll-cue small {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.stats-glass {
  position: absolute;
  z-index: 3;
  left: 14vw;
  right: 4.5vw;
  bottom: 4vh;
  min-height: 132px;
  display: grid;
  grid-template-columns: repeat(5, 1fr) 1.25fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(209, 227, 255, 0.62);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(23, 35, 51, 0.72), rgba(5, 13, 25, 0.82));
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 60px rgba(0, 0, 0, 0.35),
    0 0 26px rgba(111, 176, 255, 0.24);
}

.stats-glass article {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.stats-glass article:last-child {
  border-right: 0;
}

.stat-icon {
  flex: 0 0 auto;
  font-size: 2rem;
  color: #eaf3ff;
}

.stats-glass small {
  display: block;
  margin-bottom: 2px;
  color: #d7e1ef;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stats-glass strong {
  display: block;
  font-size: clamp(1.5rem, 2vw, 2.4rem);
  line-height: 1;
}

.stats-glass p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.cup-stat strong {
  font-size: clamp(1.05rem, 1.35vw, 1.55rem);
  line-height: 1.1;
}

.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  animation: revealUp 0.85s ease forwards;
  animation-delay: 0.5s;
}

.delay-1 {
  animation-delay: 0.62s;
}

.delay-2 {
  animation-delay: 0.74s;
}

.delay-3 {
  animation-delay: 0.86s;
}

.delay-4 {
  animation-delay: 0.98s;
}

.delay-5 {
  animation-delay: 1.1s;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-section,
.simple-section,
.join-section,
footer {
  padding: 120px 7vw;
}

.content-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(400px, 1.2fr);
  gap: 7vw;
  align-items: center;
  background:
    radial-gradient(circle at 76% 25%, rgba(50, 97, 151, 0.13), transparent 28%),
    var(--background);
}

.section-copy h2,
.simple-section h2,
.join-section h2 {
  margin: 0 0 25px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.section-copy > p:last-child,
.join-section p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.image-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(197, 218, 247, 0.28);
  border-radius: 22px;
  box-shadow:
    0 0 0 1px rgba(111, 176, 255, 0.08),
    0 22px 80px rgba(0, 0, 0, 0.42);
}

.image-panel img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
}

.class-section {
  display: block;
}

.class-section .section-copy {
  max-width: 700px;
}

.class-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 60px;
}

.glass-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(209, 226, 255, 0.26);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(18, 29, 45, 0.72), rgba(4, 10, 19, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 14px 40px rgba(0, 0, 0, 0.26);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(135, 193, 255, 0.7);
}

.glass-card span {
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

.glass-card h3 {
  margin: 48px 0 14px;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.glass-card p {
  color: var(--muted);
  line-height: 1.7;
}

.simple-section {
  min-height: 55vh;
  display: grid;
  align-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.join-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  background:
    linear-gradient(100deg, rgba(11, 30, 50, 0.94), rgba(19, 15, 29, 0.94));
}

.join-section > div {
  max-width: 720px;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: #02050a;
}

footer strong {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  text-transform: uppercase;
}

footer p {
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-links a:hover {
  color: var(--blue);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
}

.reveal-scroll {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1250px) {
  .glass-nav {
    grid-template-columns: auto 1fr auto;
  }

  .social-links {
    display: none;
  }

  .main-nav {
    gap: 18px;
  }

  .stats-glass {
    left: 10vw;
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-glass article:nth-child(3) {
    border-right: 0;
  }

  .stats-glass article {
    padding: 18px;
  }

  .hero {
    min-height: 1120px;
  }
}

@media (max-width: 980px) {
  .glass-nav {
    grid-template-columns: auto auto;
  }

  .menu-button {
    display: block;
    justify-self: end;
    position: relative;
    z-index: 1002;
  }

  .menu-button.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-button.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    background: rgba(2, 7, 14, 0.98);
    font-size: 1.1rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }

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

  .nav-actions {
    display: none;
  }

  .hero {
    min-height: 1300px;
    padding-top: 150px;
  }

  .hero-content {
    max-width: 620px;
  }

  .folk-script {
    top: 36%;
  }

  .stats-glass {
    left: 5vw;
    right: 5vw;
    bottom: 5vh;
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-glass article:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.13);
  }

  .stats-glass article:nth-child(even) {
    border-right: 0;
  }

  .content-section {
    grid-template-columns: 1fr;
  }

  .class-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .side-message,
  .slide-index {
    display: none;
  }
}

@media (max-width: 650px) {
  .glass-nav {
    top: 10px;
    left: 10px;
    right: 10px;
    min-height: 72px;
    padding: 8px 12px;
    border-radius: 22px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-copy strong {
    font-size: 0.66rem;
  }

  .brand-copy small {
    font-size: 0.62rem;
  }

  .hero {
    min-height: 1450px;
    padding: 122px 20px 30px;
  }

  .hero-image {
    background-position: 60% top;
  }

  .hero-darken {
    background:
      linear-gradient(180deg, rgba(0, 4, 10, 0.45), rgba(0, 4, 10, 0.95) 45%, rgba(0, 4, 10, 1) 75%),
      linear-gradient(90deg, rgba(0, 4, 10, 0.92), rgba(0, 4, 10, 0.2));
  }

  .hero-content {
    padding-top: 48vh;
  }

  .hero-title {
    font-size: clamp(4.2rem, 21vw, 6.3rem);
  }

  .hero-subtitle {
    letter-spacing: 0.12em;
  }

  .hero-tags {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }

  .hero-buttons {
    display: grid;
  }

  .primary-cta,
  .video-cta {
    width: 100%;
  }

  .folk-script,
  .orbit {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .stats-glass {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 25px;
    grid-template-columns: 1fr;
  }

  .stats-glass article,
  .stats-glass article:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stats-glass article:last-child {
    border-bottom: 0;
  }

  .content-section,
  .simple-section,
  .join-section,
  footer {
    padding: 84px 20px;
  }

  .image-panel img {
    min-height: 320px;
  }

  .class-grid,
  footer {
    grid-template-columns: 1fr;
  }

  .join-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .copyright {
    grid-column: 1;
  }
}


/* =========================================================
   V4 REFINEMENTS — keeps the original dark-glass design
   ========================================================= */

.brand-logo {
  width: 68px;
  height: 68px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 1px rgba(135, 190, 255, 0.14),
    0 0 26px rgba(115, 178, 255, 0.2);
}

.brand-logo img {
  border-radius: 50%;
  object-fit: contain;
}

.social-links a {
  width: 38px;
  height: 38px;
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:nth-child(3) svg path,
.social-links a:nth-child(4) svg path:last-child {
  fill: currentColor;
  stroke: none;
}

.metallic {
  color: transparent;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f9fc 12%,
      #c7ced8 34%,
      #7f8998 52%,
      #e8edf4 70%,
      #ffffff 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  filter:
    drop-shadow(0 2px 0 rgba(255,255,255,0.55))
    drop-shadow(0 8px 10px rgba(0,0,0,0.65))
    drop-shadow(0 0 13px rgba(153,198,255,0.45));
  text-shadow:
    0 1px 0 #ffffff,
    0 2px 0 #c8d0dc,
    0 3px 0 #7a8492,
    0 0 18px rgba(120, 180, 255, 0.46);
}

.folk-script {
  font-family: "Great Vibes", cursive;
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 400;
  line-height: 0.64;
  letter-spacing: 0;
  transform: rotate(-8deg);
  text-shadow:
    0 1px 0 rgba(255,255,255,0.35),
    0 0 18px rgba(255,255,255,0.2);
}

.hero {
  min-height: 980px;
  padding-bottom: 245px;
}

.stats-glass {
  left: 14vw;
  right: 4.5vw;
  bottom: 38px;
}

.cup-outline {
  font-size: 1.8rem;
}

.image-panel img {
  min-height: 520px;
  object-position: center;
}

.class-grid {
  align-items: stretch;
}

.glass-card {
  min-height: 430px;
  padding: 0;
  overflow: hidden;
}

.glass-card > img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  border-bottom: 1px solid rgba(209, 226, 255, 0.18);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.glass-card:hover > img {
  transform: scale(1.045);
  filter: brightness(1.08);
}

.glass-card-copy {
  padding: 24px 26px 28px;
}

.glass-card h3 {
  margin: 18px 0 12px;
}

@media (max-width: 1250px) {
  .hero {
    min-height: 1280px;
    padding-bottom: 500px;
  }

  .stats-glass {
    bottom: 42px;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 1540px;
    padding-bottom: 720px;
  }

  .stats-glass {
    bottom: 38px;
  }

  .folk-script {
    top: 32%;
    right: 5vw;
  }
}

@media (max-width: 650px) {
  .brand-logo {
    width: 50px;
    height: 50px;
    padding: 3px;
  }

  .hero {
    min-height: 1810px;
    padding-bottom: 1060px;
  }

  .hero-content {
    padding-top: 42vh;
  }

  .stats-glass {
    bottom: 25px;
  }

  .glass-card {
    min-height: 400px;
  }

  .glass-card > img {
    height: 230px;
  }
}

/* =========================================================
   PBA HERO VIDEO + FEEL THE FOLK UPDATE
   ========================================================= */

/* Full-screen hero background video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  z-index: 0;
  pointer-events: none;

  filter:
    brightness(0.78)
    contrast(1.08)
    saturate(1.08);
}

/* Keep all hero graphics/content above video */
.hero-darken {
  z-index: 1;
}

.tech-grid {
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
}

.folk-script {
  z-index: 6;

  font-family: "Great Vibes", "Brush Script MT", cursive;

  font-size: clamp(3.8rem, 5.8vw, 6.8rem);
  font-weight: 500;
  line-height: 0.70;
  letter-spacing: 0;

  transform: rotate(-7deg);

  /* Black chrome / gunmetal */
  color: transparent;

  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #8b8f96 8%,
    #292c31 22%,
    #050505 40%,
    #000000 54%,
    #555a61 68%,
    #111214 80%,
    #000000 100%
  );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-stroke: 0.7px rgba(255,255,255,0.40);

  text-shadow:
    0 2px 2px rgba(0,0,0,0.95),
    0 6px 12px rgba(0,0,0,0.80);

  filter:
    drop-shadow(0 2px 2px rgba(0,0,0,0.95))
    drop-shadow(0 6px 10px rgba(0,0,0,0.75))
    drop-shadow(0 0 5px rgba(255,255,255,0.28));
}

/* Make sure video remains properly cropped on phones */
@media (max-width: 650px) {

  .hero-video {
    object-fit: cover;
    object-position: center center;
  }

  .folk-script {
    font-size: clamp(3rem, 14vw, 5rem);
  }
}
/* Feel The Folk - compact black chrome style */
.folk-script {
  font-family: "Great Vibes", "Brush Script MT", cursive;

  font-size: clamp(2.8rem, 4vw, 4.8rem);
  font-weight: 500;
  line-height: 0.62;
  letter-spacing: -2px;

  transform: rotate(-6deg);

  color: transparent;

  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #cfd4db 10%,
    #696f77 22%,
    #1a1c1f 38%,
    #000000 52%,
    #3e4349 68%,
    #0c0d0f 82%,
    #000000 100%
  );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-stroke: 1px rgba(235, 242, 255, 0.75);

  text-shadow:
    0 1px 0 rgba(255,255,255,0.65),
    0 3px 4px rgba(0,0,0,0.95),
    0 7px 12px rgba(0,0,0,0.9),
    0 0 7px rgba(180,215,255,0.45);

  filter:
    drop-shadow(0 2px 2px rgba(0,0,0,1))
    drop-shadow(0 5px 8px rgba(0,0,0,0.85))
    drop-shadow(0 0 4px rgba(255,255,255,0.55));

  z-index: 6;
}

.folk-script br {
  line-height: 0;
}
/* =========================
   JOIN / ENROLMENT SECTION
   ========================= */

.join-section {
  padding: 100px 5vw;
  background: #050a12;
}

.join-copy {
  max-width: 900px;
  margin-bottom: 40px;
}

.join-copy h2 {
  margin: 10px 0 18px;
}

.join-copy p {
  max-width: 760px;
  color: #b7c1cf;
  line-height: 1.7;
}

.join-fees {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  color: #ffffff;
}


@media (max-width: 650px) {

  .join-section {
    padding: 70px 16px;
  }

  .join-copy {
    margin-bottom: 28px;
  }

  .join-fees {
    flex-direction: column;
    gap: 6px;
  }

  .join-fees span {
    display: none;
  }


}
/* =========================
   PBA GALLERY
   ========================= */

.gallery-section {
  position: relative;
  padding: 100px 6vw;
  background: #030911;
  border-top: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}

.gallery-heading {
  max-width: 1100px;
  margin-bottom: 45px;
}

.gallery-heading h2 {
  margin: 10px 0 18px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(48px, 7vw, 105px);
  line-height: .95;
  text-transform: uppercase;
  color: #f5f7fb;
}

.gallery-intro {
  max-width: 680px;
  margin: 0;
  color: #aeb9c8;
  font-size: 15px;
  line-height: 1.7;
}


/* PHOTO GRID */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(180,210,255,.18);
  border-radius: 12px;
  background: #09111d;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform .45s ease,
    filter .45s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 50%,
      rgba(0,0,0,.25) 100%
    );
  opacity: .35;
  transition: opacity .35s ease;
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.055);
  filter: brightness(1.06);
}

.gallery-item:hover::after {
  opacity: .1;
}


/* LIGHTBOX */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 80px;
  background: rgba(1,5,10,.94);
  backdrop-filter: blur(12px);
}

.gallery-lightbox.open {
  display: flex;
}

.lightbox-image {
  display: block;
  max-width: min(1200px, 88vw);
  max-height: 84vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    0 0 40px rgba(115,180,255,.08);
}

.lightbox-close {
  position: absolute;
  top: 26px;
  right: 34px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(8,16,28,.8);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-counter {
  position: absolute;
  top: 34px;
  left: 40px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 54px;
  height: 54px;
  transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(8,16,28,.78);
  color: #fff;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-prev {
  left: 25px;
}

.lightbox-next {
  right: 25px;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: rgba(255,255,255,.15);
}


/* TABLET */

@media (max-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


/* MOBILE */

@media (max-width: 650px) {

  .gallery-section {
    padding: 70px 16px;
  }

  .gallery-heading {
    margin-bottom: 28px;
  }

  .gallery-heading h2 {
    font-size: clamp(42px, 15vw, 68px);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .gallery-item {
    border-radius: 8px;
  }

  .gallery-lightbox {
    padding: 70px 12px 45px;
  }

  .lightbox-image {
    max-width: 96vw;
    max-height: 78vh;
    border-radius: 8px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }

  .lightbox-counter {
    top: 27px;
    left: 18px;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 16px;
    width: 46px;
    height: 46px;
    transform: none;
  }

  .lightbox-prev {
    left: calc(50% - 58px);
  }

  .lightbox-next {
    right: calc(50% - 58px);
  }
}
/* =========================================
   PBA PREMIUM EDITORIAL GALLERY
   ========================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 90px;
  gap: 12px;
}

/* Default tile */
.gallery-item {
  grid-column: span 3;
  grid-row: span 3;
  aspect-ratio: auto;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background: #08111d;
  cursor: pointer;
}

/* Feature images */
.gallery-item:nth-child(1),
.gallery-item:nth-child(6),
.gallery-item:nth-child(11),
.gallery-item:nth-child(16) {
  grid-column: span 6;
  grid-row: span 6;
}

/* Wide images */
.gallery-item:nth-child(4),
.gallery-item:nth-child(9),
.gallery-item:nth-child(14),
.gallery-item:nth-child(19) {
  grid-column: span 6;
  grid-row: span 3;
}

/* Tall portrait images */
.gallery-item:nth-child(3),
.gallery-item:nth-child(8),
.gallery-item:nth-child(13),
.gallery-item:nth-child(18) {
  grid-column: span 3;
  grid-row: span 5;
}

/* Standard medium images */
.gallery-item:nth-child(2),
.gallery-item:nth-child(5),
.gallery-item:nth-child(7),
.gallery-item:nth-child(10),
.gallery-item:nth-child(12),
.gallery-item:nth-child(15),
.gallery-item:nth-child(17),
.gallery-item:nth-child(20) {
  grid-column: span 3;
  grid-row: span 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform .5s ease,
    filter .5s ease;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0) 55%,
      rgba(0,0,0,.30) 100%
    );
  opacity: .35;
  transition: opacity .4s ease;
  pointer-events: none;
}

.gallery-item::after {
  content: "VIEW";
  inset: auto;
  background: none;
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 3;
  opacity: 0;
  transform: translateY(8px);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  transition:
    opacity .35s ease,
    transform .35s ease;
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.06) contrast(1.03);
}

.gallery-item:hover::before {
  opacity: .75;
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}


/* Slightly tighter heading */
.gallery-heading {
  max-width: 1000px;
  margin-bottom: 34px;
}

.gallery-heading h2 {
  margin-bottom: 14px;
}

.gallery-intro {
  max-width: 620px;
}


/* Tablet */
@media (max-width: 1000px) {

  .gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 85px;
  }

  .gallery-item,
  .gallery-item:nth-child(n) {
    grid-column: span 3;
    grid-row: span 3;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(11),
  .gallery-item:nth-child(16) {
    grid-column: span 6;
    grid-row: span 5;
  }

  .gallery-item:nth-child(3),
  .gallery-item:nth-child(8),
  .gallery-item:nth-child(13),
  .gallery-item:nth-child(18) {
    grid-column: span 3;
    grid-row: span 4;
  }
}


/* Mobile */
@media (max-width: 650px) {

  .gallery-section {
    padding: 70px 14px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 115px;
    gap: 8px;
  }

  .gallery-item,
  .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 2;
    border-radius: 9px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(11),
  .gallery-item:nth-child(16) {
    grid-column: span 2;
    grid-row: span 3;
  }

  .gallery-item:nth-child(3),
  .gallery-item:nth-child(8),
  .gallery-item:nth-child(13),
  .gallery-item:nth-child(18) {
    grid-column: span 1;
    grid-row: span 3;
  }

  .gallery-item::after {
    display: none;
  }
}
/* TEMPORARY FAILSAFE — always show page sections */
.reveal-scroll {
  opacity: 1 !important;
  transform: none !important;
}
