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

:root {
  color-scheme: dark;
  --bg: #0a0a0f;
  --neon: #00ff9c;
  --purple: #6366f1;
  --glass: rgba(255, 255, 255, 0.08);
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.6);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(99, 102, 241, 0.38), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(0, 255, 156, 0.22), transparent 55%),
    radial-gradient(circle at 50% 70%, rgba(99, 102, 241, 0.18), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  color: #ffffff;
  line-height: 1.6;
}

img,
svg {
  display: block;
}

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

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.glass {
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 24px 0;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.9), transparent);
  transition: transform 0.22s ease;
  will-change: transform;
}

@media (max-width: 768px) {
  .site-header.is-hidden {
    transform: translateY(-120%);
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  place-items: center;
  cursor: pointer;
}

.mobile-drawer {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.logo-mark {
  height: 50px;
  width: auto;
}

.logo-text {
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--soft);
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a.active {
  color: var(--neon);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-cta {
  background: #6341ff;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(99, 65, 255, 0.35);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.btn-gradient {
  background: linear-gradient(135deg, #6366f1, #a855f7, #eab308);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-clip: padding-box;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.3);
}

.hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.35), transparent 60%);
  opacity: 0.9;
  z-index: 0;
}

.home-hero .hero-bg {
  background:
    linear-gradient(90deg, rgba(10, 10, 15, 0.78) 0%, rgba(10, 10, 15, 0.45) 45%, rgba(10, 10, 15, 0.2) 70%),
    url("../assets/hero/web_headimage_20260213.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 70% 25%;
  opacity: 1;
}

.home-hero {
  padding: 150px 0 120px;
  min-height: 78vh;
}

.home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 200px;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0) 0%, rgba(10, 10, 15, 0.85) 100%);
  pointer-events: none;
}

.home-hero + .section {
  padding-top: 70px;
  margin-top: -40px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

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

.hero-simple .hero-text {
  max-width: 720px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--neon);
  margin-bottom: 12px;
}

.display-title {
  font-family: "Bungee", sans-serif;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.1;
  text-transform: uppercase;
  font-style: italic;
  background: linear-gradient(90deg, var(--neon), var(--purple));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.subtitle {
  margin-top: 18px;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions .btn-gradient {
  padding: 14px 28px;
  font-size: 1rem;
  box-shadow: 0 16px 36px rgba(99, 102, 241, 0.35);
}

.hero-panel {
  padding: 28px;
  border-radius: 28px;
}

.hero-panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--neon);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}

.hero-panel h2 {
  margin: 18px 0 24px;
  font-size: 1.4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}

.hero-stats .stat {
  font-size: 1.6rem;
  font-weight: 700;
}

.section {
  padding: 90px 0;
}

.section-header h2 {
  font-family: "Bungee", sans-serif;
  text-transform: uppercase;
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.section-header p {
  color: var(--soft);
  margin-top: 12px;
  max-width: 620px;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px;
  align-items: center;
}

.about-split .section-header p {
  max-width: none;
}

.about-inline-photo {
  border-radius: 24px;
  overflow: hidden;
}

.about-inline-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  min-height: 240px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.card {
  padding: 28px;
  border-radius: 24px;
}

.card h3 {
  margin: 18px 0 12px;
  font-size: 1.2rem;
}

.card p {
  color: var(--soft);
}

.icon {
  font-size: 2rem;
  color: #6341ff;
}

.stadium-card {
  margin-top: 32px;
  padding: 36px;
  border-radius: 28px;
  display: grid;
  gap: 24px;
}

.stadium-layer h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.stadium-layer p {
  color: var(--soft);
}

.gallery {
  padding-top: 40px;
}

.gallery-shell {
  margin-top: 32px;
  padding: 28px 0;
  border-radius: 32px;
  overflow: hidden;
}

.marquee-row {
  position: relative;
  overflow: hidden;
  padding: 12px 0;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-left 36s linear infinite;
}

.marquee-right .marquee-track {
  animation-name: marquee-right;
}

.gallery-group {
  display: flex;
  gap: 20px;
  padding: 0 20px;
}

.gallery-card {
  position: relative;
  width: clamp(220px, 28vw, 360px);
  aspect-ratio: 16 / 9;
  border-radius: 2rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-title {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  font-weight: 600;
  font-size: 1rem;
}

.gallery-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 0 2px var(--neon), 0 20px 45px rgba(0, 255, 156, 0.25);
}

.showcase-slider {
  position: relative;
  margin-top: 30px;
  padding: 18px;
  border-radius: 28px;
  overflow: hidden;
}

.showcase-viewport {
  overflow: hidden;
  border-radius: 22px;
}

.showcase-track {
  display: flex;
  width: 100%;
  transition: transform 0.45s ease;
}

.showcase-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.showcase-card {
  border-radius: 22px;
  overflow: hidden;
}

.showcase-card img {
  width: 100%;
  height: auto;
  display: block;
}

.showcase-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 10, 15, 0.65);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}

.showcase-arrow.prev {
  left: 10px;
}

.showcase-arrow.next {
  right: 10px;
}

.showcase-dots {
  margin-top: 16px;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.showcase-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
}

.showcase-dots button.is-active {
  background: #6341ff;
  box-shadow: 0 0 10px rgba(99, 65, 255, 0.7);
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.pricing {
  padding-bottom: 120px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.price-card {
  padding: 32px;
  border-radius: 28px;
  position: relative;
}

.price-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.price {
  font-size: 2.4rem;
  font-weight: 700;
}

.price span {
  font-size: 1rem;
  color: var(--soft);
}

.price-card ul {
  list-style: none;
  margin: 20px 0 28px;
  display: grid;
  gap: 10px;
  color: var(--soft);
}

.price-card ul li::before {
  content: "•";
  color: var(--neon);
  margin-right: 8px;
}

.price-card .btn {
  width: 100%;
}

.featured {
  border-color: rgba(0, 255, 156, 0.4);
}

.badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(0, 255, 156, 0.2);
  color: var(--neon);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.faq-item {
  padding: 22px 24px;
  border-radius: 20px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--soft);
  font-size: 1.1rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: #ffffff;
}

.faq-item[open] summary {
  color: #ffffff;
}

.faq-item p {
  margin-top: 12px;
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-group {
  padding-top: 40px;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.faq-item p,
.faq-item ul {
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-item ul {
  margin: 10px 0 0 0;
  display: grid;
  gap: 6px;
  list-style: none;
  padding-left: 0;
}

.faq-item ul li {
  position: relative;
  padding-left: 18px;
}

.faq-item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6341ff;
  box-shadow: 0 0 8px rgba(99, 65, 255, 0.55);
}

.faq-item > :not(summary):first-of-type {
  margin-top: 14px;
}

.faq-item > :not(summary) + p {
  margin-top: 10px;
}
.faq-listing {
  list-style: none;
  margin-top: 20px;
  display: grid;
  gap: 16px;
}

.quote-text {
  font-size: 1.1rem;
  color: var(--soft);
  margin-top: 16px;
}

.footer {
  padding: 80px 0 120px;
}

.footer-content {
  text-align: center;
  padding: 36px 24px;
  border-radius: 28px;
}

.footer-content h2 {
  font-family: "Bungee", sans-serif;
  text-transform: uppercase;
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.footer-content p {
  margin: 14px 0 6px;
  color: var(--soft);
}

.footer-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin: 12px 0 8px;
}

.footer-links a {
  color: var(--soft);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  vertical-align: middle;
}

.email-link::before {
  content: "email";
  font-family: "Material Symbols Outlined";
  font-size: 1.05rem;
  color: var(--soft);
  line-height: 1;
  transform: translateY(1px);
}

.footer-content span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

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

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

@media (max-width: 1024px) {
  .nav {
    flex-wrap: wrap;
    gap: 16px;
  }

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

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

  .about-split {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {
  .site-header.menu-open {
    transform: translateY(0) !important;
  }

  .nav {
    border-radius: 24px;
    position: relative;
  }

  .desktop-nav-links,
  .desktop-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .mobile-drawer {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border-radius: 16px;
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass);
    background: rgba(15, 15, 24, 0.92);
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .mobile-drawer {
    display: flex;
  }

  .mobile-drawer a {
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--soft);
  }

  .mobile-drawer a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
  }

  .mobile-drawer .btn {
    width: 100%;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-simple .hero-content {
    gap: 28px;
  }

  .card-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .about-inline-photo img {
    min-height: 200px;
  }

  .hero-panel {
    order: 2;
  }

  .hero-text {
    order: 1;
  }

  .stadium-card {
    padding: 28px;
  }

  .gallery-shell {
    border-radius: 24px;
  }

  .gallery-card {
    width: clamp(200px, 70vw, 320px);
  }

  .showcase-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .nav {
    padding: 14px 18px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .marquee-track {
    animation-duration: 46s;
  }

  .showcase-slider {
    padding: 12px;
  }

  .showcase-arrow {
    width: 36px;
    height: 36px;
  }

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