:root {
  --ink: #071514;
  --ink-2: #102725;
  --muted: #60716c;
  --paper: #f6f0e4;
  --paper-2: #e8ddca;
  --gold: #d5b46a;
  --gold-soft: rgba(213, 180, 106, 0.28);
  --mint: #4be0bb;
  --mint-2: #0fa17b;
  --clay: #d66d46;
  --line: rgba(246, 240, 228, 0.62);
  --glass: rgba(255, 250, 238, 0.72);
  --shadow: 0 30px 90px rgba(0, 18, 16, 0.2);
  --radius-xl: 38px;
  --radius-lg: 26px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 4%, rgba(75, 224, 187, 0.26), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(213, 180, 106, 0.26), transparent 26%),
    linear-gradient(135deg, #f8f1e4 0%, #ebe2d0 46%, #dcefe6 100%);
  font-family: "HarmonyOS Sans SC", "MiSans", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 21, 20, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(7, 21, 20, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
  z-index: -2;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(7, 21, 20, 0.12) 0 1px, transparent 1px);
  background-size: 18px 18px, 23px 23px;
  mix-blend-mode: soft-light;
  opacity: 0.45;
  z-index: -1;
}

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

button {
  font: inherit;
}

.site-shell {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 18px 0 36px;
  padding: 12px 14px;
  border: 1px solid rgba(7, 21, 20, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 238, 0.66);
  box-shadow: 0 18px 48px rgba(7, 21, 20, 0.08);
  backdrop-filter: blur(22px);
}

.brand,
.hero-actions,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: 146px;
  height: 52px;
  object-fit: contain;
  border-radius: 18px;
}

.nav-links {
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(7, 21, 20, 0.05);
}

.nav-links a {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  transform: translateY(-1px);
}

.nav-action {
  min-width: max-content;
  padding: 13px 18px;
  border: 0;
  border-radius: 999px;
  color: #fffaf0;
  background: var(--ink);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(7, 21, 20, 0.2);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 520px);
  align-items: center;
  min-height: 690px;
  gap: 54px;
  padding: 28px 0 82px;
}

.eyebrow {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--mint-2);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(58px, 7.8vw, 108px);
  line-height: 0.94;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5.2vw, 70px);
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.hero-lede,
.section-heading p,
.booking-copy p {
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.82;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  overflow: hidden;
  padding: 0 22px;
  border: 1px solid rgba(7, 21, 20, 0.14);
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -60% -20%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-120%) rotate(12deg);
  transition: transform 640ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button:hover::after {
  transform: translateX(120%) rotate(12deg);
}

.button.primary {
  color: #071514;
  background: linear-gradient(135deg, var(--gold), #fff0a9);
  box-shadow: 0 18px 38px rgba(131, 94, 19, 0.22);
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 250, 238, 0.62);
}

.button.dark {
  color: #fffaf0;
  background: linear-gradient(135deg, #071514, #0c3d38);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  perspective: 1200px;
}

.video-stage {
  position: absolute;
  inset: 12px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 46px;
  color: #fffaf0;
  background:
    radial-gradient(circle at 28% 22%, rgba(75, 224, 187, 0.28), transparent 24%),
    radial-gradient(circle at 78% 76%, rgba(213, 180, 106, 0.22), transparent 24%),
    linear-gradient(145deg, #08211f 0%, #061211 58%, #010706 100%);
  box-shadow: var(--shadow);
  transform: rotateX(5deg) rotateY(-7deg) rotateZ(1deg);
  transform-style: preserve-3d;
  animation: stageFloat 7s ease-in-out infinite;
}

.video-stage::before {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1.5px solid var(--line);
  border-radius: 34px;
  opacity: 0.82;
}

.video-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 86px, rgba(246, 240, 228, 0.3) 88px 90px, transparent 92px),
    linear-gradient(120deg, transparent 12%, rgba(255, 255, 255, 0.12), transparent 30%);
  opacity: 0.72;
}

.scan-line {
  position: absolute;
  left: 7%;
  right: 7%;
  top: 12%;
  z-index: 5;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--mint), #fff7cf, transparent);
  box-shadow: 0 0 30px rgba(75, 224, 187, 0.78);
  animation: scan 4.6s ease-in-out infinite;
}

.court-lines span {
  position: absolute;
  z-index: 2;
  background: var(--line);
}

.court-lines span:nth-child(1),
.court-lines span:nth-child(2) {
  top: 40px;
  bottom: 40px;
  width: 1.5px;
}

.court-lines span:nth-child(1) {
  left: 32%;
}

.court-lines span:nth-child(2) {
  right: 32%;
}

.court-lines span:nth-child(3),
.court-lines span:nth-child(4) {
  left: 40px;
  right: 40px;
  height: 1.5px;
}

.court-lines span:nth-child(3) {
  top: 45%;
}

.court-lines span:nth-child(4) {
  bottom: 28%;
}

.player-dot {
  position: absolute;
  z-index: 7;
  width: 18px;
  height: 18px;
  border: 4px solid rgba(255, 250, 238, 0.72);
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 12px rgba(75, 224, 187, 0.12), 0 0 34px rgba(75, 224, 187, 0.8);
}

.dot-a {
  left: 28%;
  top: 40%;
  animation: playerA 5.4s ease-in-out infinite;
}

.dot-b {
  right: 30%;
  bottom: 31%;
  background: var(--gold);
  box-shadow: 0 0 0 12px rgba(213, 180, 106, 0.12), 0 0 34px rgba(213, 180, 106, 0.78);
  animation: playerB 6s ease-in-out infinite;
}

.dot-c {
  left: 47%;
  top: 22%;
  width: 13px;
  height: 13px;
  background: #fff7cf;
  animation: pulseDot 2.6s ease-in-out infinite;
}

.motion-path {
  position: absolute;
  z-index: 4;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(75, 224, 187, 0.9), transparent);
  transform-origin: left center;
  opacity: 0.75;
}

.path-a {
  left: 27%;
  top: 44%;
  width: 210px;
  transform: rotate(-19deg);
  animation: pathGlow 3.6s ease-in-out infinite;
}

.path-b {
  right: 22%;
  bottom: 33%;
  width: 150px;
  background: linear-gradient(90deg, transparent, rgba(213, 180, 106, 0.95), transparent);
  transform: rotate(24deg);
  animation: pathGlow 3.6s ease-in-out infinite 0.8s;
}

.video-card,
.capture-badge {
  position: absolute;
  z-index: 9;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.video-card {
  display: grid;
  gap: 6px;
  min-width: 214px;
  padding: 18px;
  border-radius: 24px;
  animation: cardLift 5.6s ease-in-out infinite;
}

.video-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.video-card strong {
  font-size: 28px;
  letter-spacing: -0.04em;
}

.video-card small {
  color: rgba(255, 250, 238, 0.68);
}

.highlight-card {
  left: 34px;
  bottom: 48px;
}

.hawkeye-card {
  right: 34px;
  top: 74px;
  animation-delay: 0.9s;
}

.capture-badge {
  left: 50%;
  bottom: 42px;
  display: grid;
  min-width: 150px;
  padding: 16px 18px;
  border-radius: 999px;
  text-align: center;
  transform: translateX(-50%);
}

.capture-badge span {
  color: rgba(255, 250, 238, 0.68);
  font-size: 12px;
}

.capture-badge strong {
  color: var(--mint);
  font-size: 28px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 128px;
}

.metrics article {
  overflow: hidden;
  position: relative;
  padding: 24px;
  border: 1px solid rgba(7, 21, 20, 0.1);
  border-radius: var(--radius-lg);
  background: var(--glass);
  box-shadow: 0 18px 48px rgba(7, 21, 20, 0.08);
}

.metrics article::after {
  content: "";
  position: absolute;
  inset: auto -30% -80% -30%;
  height: 100%;
  background: radial-gradient(circle, var(--gold-soft), transparent 62%);
  animation: glowRise 5s ease-in-out infinite;
}

.metrics strong {
  display: block;
  margin-bottom: 8px;
  color: var(--mint-2);
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 42px;
  line-height: 1;
}

.metrics span {
  color: var(--muted);
  font-weight: 800;
}

.ai-video,
.articles,
.booking,
.proof,
.venue-growth,
.contact {
  margin-bottom: 128px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.68fr);
  align-items: end;
  gap: 38px;
  margin-bottom: 40px;
}

.section-heading .eyebrow,
.section-heading h2 {
  grid-column: 1;
}

.section-heading p:not(.eyebrow) {
  grid-column: 2;
  margin-bottom: 0;
}

.section-heading.compact {
  display: block;
  max-width: 780px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.9fr 0.9fr;
  grid-auto-rows: minmax(222px, auto);
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(7, 21, 20, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 238, 0.74);
  box-shadow: 0 20px 58px rgba(7, 21, 20, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 224, 187, 0.24), transparent 64%);
  transition: transform 300ms ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 76px rgba(7, 21, 20, 0.13);
}

.feature-card:hover::before {
  transform: scale(1.28);
}

.feature-card.featured {
  grid-row: span 2;
  color: #fffaf0;
  background:
    radial-gradient(circle at 26% 18%, rgba(75, 224, 187, 0.26), transparent 24%),
    linear-gradient(160deg, #082b28, #061211);
}

.feature-index {
  display: inline-flex;
  margin-bottom: 50px;
  color: var(--clay);
  font-weight: 950;
}

.featured .feature-index {
  color: var(--gold);
}

.feature-card p {
  color: var(--muted);
  line-height: 1.78;
}

.featured p {
  color: rgba(255, 250, 238, 0.72);
  font-size: 18px;
}

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

.article-card {
  overflow: hidden;
  border: 1px solid rgba(7, 21, 20, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 238, 0.74);
  box-shadow: 0 20px 58px rgba(7, 21, 20, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 76px rgba(7, 21, 20, 0.13);
}

.article-featured {
  transform: translateY(-8px);
}

.article-cover {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(75, 224, 187, 0.18), rgba(213, 180, 106, 0.18));
}

.article-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.article-card:hover .article-cover img {
  transform: scale(1.045);
}

.article-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.article-body p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.78;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.article-tags,
.article-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-tags span,
.article-modal-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--mint-2);
  background: rgba(75, 224, 187, 0.14);
  font-size: 12px;
  font-weight: 900;
}

.article-link {
  width: fit-content;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(7, 21, 20, 0.14);
  border-radius: 999px;
  color: #071514;
  background: linear-gradient(135deg, var(--gold), #fff0a9);
  font-weight: 950;
  cursor: pointer;
}

.article-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.article-pagination[hidden] {
  display: none;
}

.article-page-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.article-page-button,
.article-page-number,
.article-page-ellipsis {
  display: inline-grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
}

.article-page-button,
.article-page-number {
  border: 1px solid rgba(7, 21, 20, 0.13);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 250, 238, 0.68);
  box-shadow: 0 12px 26px rgba(7, 21, 20, 0.07);
  cursor: pointer;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.article-page-ellipsis {
  color: var(--muted);
  font-weight: 950;
}

.article-page-button {
  padding: 0 18px;
}

.article-page-button:hover,
.article-page-number:hover,
.article-page-number.is-active {
  background: linear-gradient(135deg, var(--gold), #fff0a9);
  box-shadow: 0 16px 34px rgba(131, 94, 19, 0.18);
  transform: translateY(-2px);
}

.article-page-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
  box-shadow: none;
}

.article-empty {
  grid-column: 1 / -1;
}

.article-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.article-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.article-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 12, 11, 0.58);
  backdrop-filter: blur(14px);
}

.article-dialog {
  position: relative;
  width: min(100%, 760px);
  max-height: min(86vh, 920px);
  overflow: auto;
  padding: clamp(30px, 6vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px;
  color: #fffaf0;
  background:
    radial-gradient(circle at 12% 10%, rgba(213, 180, 106, 0.24), transparent 28%),
    linear-gradient(145deg, rgba(8, 43, 40, 0.96), rgba(4, 13, 12, 0.98));
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.36);
  transform: translateY(18px) scale(0.98);
  transition: transform 260ms ease;
}

.article-modal.is-open .article-dialog {
  transform: translateY(0) scale(1);
}

.article-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.article-modal-eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-modal-cover {
  overflow: hidden;
  margin: 0 0 26px;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(75, 224, 187, 0.18), rgba(213, 180, 106, 0.18)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
}

.article-modal-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-modal-cover-image {
  object-position: center;
}

.article-dialog h2 {
  color: #fffaf0;
}

.article-modal-body p {
  color: rgba(255, 250, 238, 0.8);
  line-height: 1.85;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  padding: 48px;
  border-radius: 50px;
  background:
    radial-gradient(circle at 100% 0%, rgba(213, 180, 106, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(255, 250, 238, 0.72), rgba(222, 239, 230, 0.82));
  box-shadow: var(--shadow);
}

.booking-panel {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 22px;
  align-items: center;
}

.phone-mock {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 440px;
  padding: 18px;
  border: 10px solid #071514;
  border-radius: 38px;
  background: #fffaf0;
  box-shadow: 0 28px 66px rgba(7, 21, 20, 0.22);
  animation: phoneFloat 6.5s ease-in-out infinite;
}

.phone-top {
  width: 70px;
  height: 6px;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(7, 21, 20, 0.18);
}

.venue-cover {
  min-height: 150px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(75, 224, 187, 0.28), transparent 44%),
    linear-gradient(160deg, #092624, #061211);
}

.phone-row {
  height: 15px;
  border-radius: 999px;
  background: rgba(7, 21, 20, 0.12);
}

.phone-row.wide {
  width: 82%;
}

.slot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.slot-grid span {
  padding: 10px 8px;
  border-radius: 14px;
  color: #09211f;
  background: rgba(75, 224, 187, 0.24);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.phone-mock button {
  align-self: end;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  color: #071514;
  background: linear-gradient(135deg, var(--gold), #fff0a9);
  font: inherit;
  font-weight: 950;
}

.booking-list {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  border-radius: 28px;
  background: rgba(7, 21, 20, 0.1);
  list-style: none;
}

.booking-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 250, 238, 0.66);
}

.booking-list strong {
  color: var(--ink);
}

.booking-list span {
  color: var(--muted);
  line-height: 1.7;
}

.proof {
  padding: 48px;
  border-radius: 50px;
  background:
    radial-gradient(circle at 0% 0%, rgba(75, 224, 187, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(255, 250, 238, 0.76), rgba(222, 239, 230, 0.88));
  box-shadow: var(--shadow);
}

.gallery-stack {
  display: grid;
  gap: 18px;
}

.media-gallery {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(7, 21, 20, 0.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 16% 12%, rgba(75, 224, 187, 0.12), transparent 28%),
    rgba(255, 250, 238, 0.72);
  box-shadow: 0 22px 56px rgba(7, 21, 20, 0.1);
}

.media-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(246, 240, 228, 0.96), transparent 10%, transparent 88%, rgba(246, 240, 228, 0.96));
  opacity: 0.78;
}

.gallery-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.gallery-head span {
  display: block;
  margin-bottom: 4px;
  color: var(--mint-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-head strong {
  font-size: 25px;
  letter-spacing: -0.04em;
}

.gallery-controls {
  display: flex;
  gap: 8px;
}

.gallery-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(7, 21, 20, 0.12);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.gallery-controls button:hover {
  background: #fffaf0;
  box-shadow: 0 12px 28px rgba(7, 21, 20, 0.12);
  transform: translateY(-2px);
}

.gallery-rail {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 58px 34px 72px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-rail::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  position: relative;
  flex: 0 0 min(78%, 760px);
  --card-rotate: -6deg;
  --card-y: 0px;
  overflow: hidden;
  border: 1px solid rgba(7, 21, 20, 0.1);
  border-radius: 30px;
  background: #fffaf0;
  box-shadow: 0 24px 58px rgba(7, 21, 20, 0.12);
  scroll-snap-align: center;
  transform: perspective(1100px) rotateY(var(--card-rotate)) translateY(var(--card-y)) scale(1);
  transform-origin: center;
  transition:
    transform 360ms ease,
    opacity 260ms ease,
    box-shadow 360ms ease,
    filter 360ms ease;
  transition-delay: 0ms;
}

.gallery-card:nth-child(2n) {
  --card-rotate: 5deg;
  --card-y: 12px;
}

.gallery-card:nth-child(3n) {
  --card-rotate: -3deg;
  --card-y: -4px;
}

.gallery-rail:has(.gallery-card:hover) .gallery-card:not(:hover),
.gallery-rail:has(.gallery-card:focus-visible) .gallery-card:not(:focus-visible),
.gallery-rail.is-hovering .gallery-card:not(:hover):not(:focus-visible) {
  opacity: 0.72;
  filter: saturate(0.84) contrast(0.96);
  transform: perspective(1100px) rotateY(var(--card-rotate)) translateY(var(--card-y)) scale(0.94);
}

.gallery-card:hover,
.gallery-card:focus-visible {
  z-index: 20;
  box-shadow: 0 46px 120px rgba(7, 21, 20, 0.3);
  filter: saturate(1.1) contrast(1.04);
  outline: none;
  opacity: 1;
  transform: perspective(1100px) rotateY(0deg) translateY(-22px) scale(1.18);
  transition-delay: 0ms;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.035);
}

.feature-media-card {
  aspect-ratio: 16 / 9;
}

.feature-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 12, 11, 0.7), transparent 38%);
}

.gallery-card-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  color: #fffaf0;
  transform: translateY(10px);
  opacity: 0.9;
  transition: opacity 260ms ease, transform 260ms ease;
}

.gallery-card-copy span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-card-copy strong {
  display: block;
  font-size: clamp(22px, 3vw, 34px);
}

.gallery-card:hover .gallery-card-copy,
.gallery-card:focus-visible .gallery-card-copy {
  opacity: 1;
  transform: translateY(0);
}

.certificate-card {
  flex-basis: 270px;
  aspect-ratio: 3 / 4;
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(246, 240, 228, 0.98));
}

.certificate-card:hover,
.certificate-card:focus-visible {
  transform: perspective(1100px) rotateY(0deg) translateY(-22px) scale(1.24);
}

.certificate-card img {
  border-radius: 22px;
  object-fit: cover;
  object-position: center top;
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.proof-cards article {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 250, 238, 0.72);
  border: 1px solid rgba(7, 21, 20, 0.08);
  box-shadow: 0 16px 40px rgba(7, 21, 20, 0.08);
}

.proof-cards span {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--gold);
  font-weight: 900;
}

.proof-cards strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.proof-cards p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.venue-growth {
  padding: 48px;
  border-radius: 52px;
  background:
    radial-gradient(circle at 12% 8%, rgba(75, 224, 187, 0.18), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(213, 180, 106, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(255, 250, 238, 0.8), rgba(226, 239, 236, 0.9));
  box-shadow: var(--shadow);
}

.smart-venue-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.68fr);
  align-items: end;
  gap: 38px;
  margin-bottom: 30px;
}

.smart-venue-copy .eyebrow,
.smart-venue-copy h2 {
  grid-column: 1;
}

.smart-venue-copy p:not(.eyebrow) {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.82;
}

.smart-venue-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 0 0 18px;
  padding: clamp(10px, 1.4vw, 18px);
  border: 1px solid rgba(7, 21, 20, 0.1);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 20%, rgba(35, 116, 255, 0.08), transparent 42%),
    rgba(255, 250, 238, 0.74);
  box-shadow: 0 28px 72px rgba(7, 21, 20, 0.13);
}

.smart-venue-visual::before {
  content: "";
  position: absolute;
  inset: -30% 8% auto;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 116, 255, 0.18), transparent 68%);
  pointer-events: none;
}

.smart-venue-visual img {
  position: relative;
  display: block;
  width: min(100%, 980px);
  max-height: 620px;
  margin: 0 auto;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(20, 77, 122, 0.14);
  transform: scale(1);
  transition: transform 520ms ease, filter 520ms ease;
  animation: smartVenueFloat 8s ease-in-out infinite;
}

.smart-venue-visual:hover img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.025);
}

.smart-venue-points {
  margin-top: 18px;
}

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

.flow-steps article {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: #fffaf0;
  box-shadow: 0 18px 48px rgba(7, 21, 20, 0.08);
  transition: transform 240ms ease;
}

.flow-steps article::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(213, 180, 106, 0.42);
  border-radius: 50%;
}

.flow-steps article:nth-child(2) {
  transform: translateY(28px);
}

.flow-steps article:nth-child(3) {
  transform: translateY(56px);
}

.flow-steps article:hover {
  transform: translateY(-7px);
}

.flow-steps article:nth-child(2):hover,
.flow-steps article:nth-child(3):hover {
  transform: translateY(18px);
}

.flow-steps span {
  display: inline-flex;
  margin-bottom: 54px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #071514;
  background: var(--mint);
  font-size: 13px;
  font-weight: 950;
}

.flow-steps p {
  color: var(--muted);
  line-height: 1.78;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(36px, 7vw, 72px);
  border-radius: 52px;
  color: #fffaf0;
  background:
    radial-gradient(circle at 12% 16%, rgba(213, 180, 106, 0.24), transparent 24%),
    linear-gradient(130deg, #071514, #0b3d38);
  box-shadow: var(--shadow);
}

.contact h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.contact .eyebrow {
  color: var(--gold);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 46px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  color: var(--muted);
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--ink);
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 12, 11, 0.58);
  backdrop-filter: blur(14px);
}

.contact-dialog {
  position: relative;
  width: min(100%, 520px);
  overflow: hidden;
  padding: clamp(30px, 6vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px;
  color: #fffaf0;
  background:
    radial-gradient(circle at 12% 10%, rgba(213, 180, 106, 0.24), transparent 28%),
    linear-gradient(145deg, rgba(8, 43, 40, 0.96), rgba(4, 13, 12, 0.98));
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.36);
  transform: translateY(18px) scale(0.98);
  transition: transform 260ms ease;
}

.contact-modal.is-open .contact-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: rotate(90deg);
}

.contact-dialog h2 {
  margin-bottom: 14px;
  font-size: clamp(38px, 7vw, 58px);
}

.contact-note {
  max-width: 380px;
  margin-bottom: 24px;
  color: rgba(255, 250, 238, 0.72);
  line-height: 1.8;
}

.contact-phone {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold);
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: clamp(34px, 9vw, 54px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.modal-actions .button.ghost {
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.modal-lock {
  overflow: hidden;
}

.section-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 760ms ease, transform 760ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes stageFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

@keyframes scan {
  0%,
  100% {
    top: 13%;
    opacity: 0.4;
  }

  50% {
    top: 82%;
    opacity: 1;
  }
}

@keyframes playerA {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(58px, -34px);
  }
}

@keyframes playerB {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-46px, 28px);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }

  50% {
    transform: scale(1.55);
    opacity: 1;
  }
}

@keyframes pathGlow {
  0%,
  100% {
    opacity: 0.18;
    filter: blur(0);
  }

  50% {
    opacity: 0.95;
    filter: blur(0.4px);
  }
}

@keyframes cardLift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes glowRise {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }

  50% {
    transform: translateY(-18px);
    opacity: 0.8;
  }
}

@keyframes smartVenueFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@media (max-width: 1080px) {
  .site-shell {
    width: min(100% - 34px, var(--max-width));
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
    gap: 34px;
  }

  .booking {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    grid-template-columns: minmax(220px, 280px) 1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    border-radius: 28px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 20px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .video-stage {
    inset: 0;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-heading p:not(.eyebrow) {
    grid-column: 1;
    max-width: 660px;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card.featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

  .smart-venue-copy {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .smart-venue-copy p:not(.eyebrow) {
    grid-column: 1;
    max-width: 660px;
  }

  .proof-cards {
    grid-template-columns: 1fr;
  }

  .flow-steps {
    grid-template-columns: 1fr;
  }

  .flow-steps article,
  .flow-steps article:nth-child(2),
  .flow-steps article:nth-child(3),
  .flow-steps article:nth-child(2):hover,
  .flow-steps article:nth-child(3):hover {
    transform: none;
  }
}

@media (max-width: 680px) {
  .site-shell {
    width: min(100% - 22px, var(--max-width));
  }

  .site-header {
    top: 10px;
    margin: 10px 0 26px;
    padding: 10px;
  }

  .brand-logo {
    width: 118px;
    height: 42px;
    border-radius: 14px;
  }

  .nav-action {
    display: none;
  }

  .hero {
    gap: 24px;
    padding-bottom: 58px;
  }

  h1 {
    font-size: clamp(46px, 14.5vw, 68px);
    letter-spacing: -0.07em;
  }

  h2 {
    font-size: clamp(34px, 11vw, 50px);
    letter-spacing: -0.065em;
  }

  .eyebrow {
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .hero-lede,
  .section-heading p,
  .booking-copy p {
    font-size: 16px;
    line-height: 1.72;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 440px;
    perspective: none;
  }

  .video-stage {
    border-radius: 34px;
    transform: none;
  }

  .video-stage::before {
    inset: 28px;
    border-radius: 24px;
  }

  .court-lines span:nth-child(1),
  .court-lines span:nth-child(2) {
    top: 28px;
    bottom: 28px;
  }

  .court-lines span:nth-child(3),
  .court-lines span:nth-child(4) {
    left: 28px;
    right: 28px;
  }

  .video-card {
    min-width: 184px;
    padding: 15px;
  }

  .video-card strong {
    font-size: 23px;
  }

  .highlight-card {
    left: 18px;
    bottom: 32px;
  }

  .hawkeye-card {
    right: 18px;
    top: 52px;
  }

  .capture-badge {
    bottom: 180px;
    min-width: 132px;
    padding: 13px 15px;
  }

  .metrics,
  .feature-grid,
  .article-grid,
  .booking-panel {
    grid-template-columns: 1fr;
  }

  .metrics,
  .ai-video,
  .booking,
  .proof,
  .venue-growth,
  .contact {
    margin-bottom: 86px;
  }

  .metrics article {
    padding: 20px;
  }

  .booking {
    padding: 24px;
    border-radius: 34px;
  }

  .venue-growth {
    padding: 24px;
    border-radius: 34px;
  }

  .proof {
    padding: 24px;
    border-radius: 34px;
  }

  .smart-venue-visual {
    padding: 10px;
    border-radius: 28px;
  }

  .smart-venue-visual img {
    border-radius: 20px;
  }

  .phone-mock {
    width: min(100%, 280px);
    min-height: 410px;
    margin: 0 auto;
  }

  .media-gallery {
    padding: 16px;
    border-radius: 28px;
  }

  .gallery-head {
    align-items: flex-start;
  }

  .gallery-controls button {
    width: 38px;
    height: 38px;
  }

  .gallery-rail {
    gap: 12px;
    padding: 26px 8px 36px;
  }

  .gallery-card,
  .gallery-card:hover,
  .gallery-card:focus-visible {
    flex-basis: 88%;
    transform: none;
  }

  .gallery-card:nth-child(2n),
  .gallery-card:nth-child(3n) {
    transform: none;
  }

  .feature-media-card {
    aspect-ratio: 4 / 3;
  }

  .certificate-card,
  .certificate-card:hover,
  .certificate-card:focus-visible {
    flex-basis: 72%;
  }

  .gallery-card-copy {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .booking-list li {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }

  .flow-steps article {
    min-height: 210px;
  }

  .contact,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact {
    border-radius: 36px;
  }

  .contact-modal {
    align-items: end;
    padding: 12px;
  }

  .contact-dialog {
    border-radius: 28px;
  }

  .modal-actions,
  .modal-actions .button {
    width: 100%;
  }

  .article-modal {
    align-items: end;
    padding: 12px;
  }

  .article-dialog {
    width: 100%;
    max-height: 88vh;
    border-radius: 28px;
  }

  .article-modal-cover {
    border-radius: 20px;
  }

  .article-pagination {
    justify-content: flex-start;
  }

  .article-page-list {
    flex: 1 1 100%;
    order: -1;
  }

  .article-page-button {
    flex: 1 1 0;
  }
}

@media (max-width: 420px) {
  .hero-visual {
    min-height: 390px;
  }

  .video-card {
    min-width: 160px;
  }

  .video-card small {
    display: none;
  }

  .capture-badge {
    left: 46%;
    bottom: 152px;
  }

  .metrics {
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .section-reveal {
    opacity: 1;
    transform: none;
  }
}
