:root {
  --bg: #08090d;
  --bg-soft: #10131a;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --text: #f5f7fb;
  --muted: #b3bbcb;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #e9edf5;
  --accent-ink: #0a0c11;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(1200px 600px at 15% -10%, #313a4f44, transparent 70%),
    radial-gradient(800px 500px at 90% 20%, #5d667f33, transparent 60%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.55;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  z-index: -1;
  background-image: radial-gradient(#ffffff 0.6px, transparent 0.6px);
  background-size: 4px 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  background: rgba(8, 9, 13, 0.65);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 0;
}

.site-logo {
  display: block;
  width: auto;
  height: 62px;
  max-width: min(42vw, 290px);
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  mix-blend-mode: screen;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  padding: 72px 0 140px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(44px, 5vw, 76px);
  align-items: stretch;
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #cdd5e6;
  opacity: 0.9;
}

.scroll-cue i {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  animation: cue-bounce 1.5s ease-in-out infinite;
}

.scroll-cue i:nth-child(2) {
  animation-delay: 0.12s;
}

.scroll-cue i:nth-child(1) {
  margin-left: 0;
}

.scroll-cue i:nth-child(3) {
  margin-left: 0;
  animation-delay: 0.24s;
}

.eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: #cdd5e6;
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.1rem, 5.2vw, 4.5rem);
  line-height: 1.03;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

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

.hero-copy p {
  max-width: 48ch;
  font-size: 1.08rem;
  line-height: 1.75;
}

.availability-note {
  margin-top: -6px;
  margin-bottom: 2px;
  font-size: 1.08rem;
  line-height: 1.75;
  letter-spacing: normal;
  text-transform: none;
  color: var(--muted);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  align-self: center;
  min-height: 620px;
}

.hero-actions {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 12px 32px rgba(233, 237, 245, 0.28);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}

.btn-secondary:hover {
  background: var(--panel);
}

.hero-media {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  align-self: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0;
  max-height: min(64vh, 620px);
}

.hero-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 46%;
  filter: none;
  transition: transform 0.35s ease;
  cursor: zoom-in;
}

.hero-media::after {
  content: none;
}

.hero-media figcaption {
  display: none;
}

.hero-media.media-fallback {
  min-height: 320px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(140deg, #1e232f, #0f1219),
    repeating-linear-gradient(
      -22deg,
      rgba(255, 255, 255, 0.06) 0 2px,
      transparent 2px 30px
    );
}

.hero-media.media-fallback figcaption {
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font-size: 0.82rem;
}

.section {
  padding: 56px 0;
}

.section-head {
  margin-bottom: 30px;
}

.section-head h2 + p {
  margin-top: 14px;
}

.events .section-head,
.pricing .section-head {
  text-align: center;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.event-card {
  background: linear-gradient(145deg, var(--panel), transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.event-card p {
  font-size: 0.95rem;
  margin-top: 10px;
}

.event-card strong {
  color: var(--text);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.price-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
}

.price-card.highlight {
  background:
    linear-gradient(165deg, rgba(233, 237, 245, 0.19), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
}

.pricing-note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #d4daea;
  text-align: center;
}

.price {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--text);
  margin: 10px 0 10px;
  line-height: 1;
}

.price span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.8rem;
  margin-left: 6px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.availability-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3.5vw, 46px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background:
    radial-gradient(400px 260px at 12% 0%, rgba(255, 255, 255, 0.12), transparent 70%),
    var(--panel);
  box-shadow: var(--shadow);
}

.availability-card p {
  max-width: 60ch;
  margin-top: 14px;
}

.availability-card h2 + p {
  margin-top: 16px;
}

.contact {
  padding-top: 24px;
}

.contact-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 34px);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
}

.contact-note {
  max-width: 54ch;
  margin-top: 14px;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d1d8e7;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  padding: 11px 12px;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #dfe6f5;
}

.contact-form button[disabled] {
  opacity: 0.75;
  cursor: wait;
}

.form-status {
  min-height: 1.3em;
  font-size: 0.88rem;
  margin-top: 2px;
}

.form-status.success {
  color: #cbeecf;
}

.form-status.error {
  color: #ffd0d0;
}

.xwing .section-head {
  max-width: 760px;
}

.spec-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.spec-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}

.spec-card h3 {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.spec-value {
  color: var(--text);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.fsd-card {
  background:
    linear-gradient(145deg, rgba(233, 237, 245, 0.3), rgba(255, 255, 255, 0.05)),
    var(--panel);
  border-color: rgba(233, 237, 245, 0.6);
  box-shadow: 0 0 0 1px rgba(233, 237, 245, 0.28), 0 24px 60px rgba(0, 0, 0, 0.45);
}

.fsd-value {
  color: #ffffff;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.45);
}

.spec-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: #c6ccda;
}

.xwing-photos {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.photo-tile {
  aspect-ratio: 4 / 3;
  min-height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  transition: transform 0.35s ease;
  cursor: zoom-in;
}

.hero-media:hover img,
.photo-tile:hover img {
  transform: scale(1.045);
}

.photo-tile.photo-fallback {
  background:
    linear-gradient(140deg, #1e232f, #0f1219),
    repeating-linear-gradient(
      -22deg,
      rgba(255, 255, 255, 0.06) 0 2px,
      transparent 2px 28px
    );
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 36px;
}

.footer-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.footer-wrap p {
  color: #aab3c6;
}

.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 8, 12, 0.88);
  backdrop-filter: blur(4px);
  display: none;
  z-index: 60;
  padding: 5vh 4vw;
}

.image-modal.open {
  display: grid;
  place-items: center;
}

.modal-image {
  max-width: min(1200px, 94vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  animation: reveal-up 0.9s ease both;
}

.events .reveal:nth-child(2),
.pricing .reveal:nth-child(2) {
  animation-delay: 0.08s;
}

.events .reveal:nth-child(3),
.pricing .reveal:nth-child(3) {
  animation-delay: 0.16s;
}

.events .reveal:nth-child(4),
.pricing .reveal:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cue-bounce {
  0%,
  100% {
    transform: rotate(45deg);
    opacity: 0.45;
  }
  50% {
    transform: rotate(45deg);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .pricing-grid,
  .event-grid,
  .spec-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 82px;
  }

  .hero-grid {
    width: min(1120px, 92vw);
    gap: 26px;
  }

  .hero-copy {
    min-height: auto;
    gap: 12px;
  }

  .hero-media {
    order: -1;
    min-height: auto;
  }

  .availability-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .xwing-photos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .nav-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .section {
    padding: 42px 0;
  }

  .footer-wrap {
    min-height: 70px;
  }
}
