/* ============================================================
   PotGold: Trick Shot 8 — Nightlife felt + trick-shot trajectory
   Unique layout: top-down table, diamond features, pocket nav
   ============================================================ */

:root {
  --felt-dark: #4a0a12;
  --felt: #6b0f1a;
  --felt-light: #8b1424;
  --rail: #1a1a1f;
  --rail-chrome: #c0c5ce;
  --gold: #f5c518;
  --gold-light: #ffd34e;
  --gold-dark: #d4a010;
  --blue-outline: #0a2463;
  --blue-strike: #2563eb;
  --blue-strike-light: #3b82f6;
  --neon-pink: #ff2d95;
  --neon-purple: #a855f7;
  --neon-blue: #38bdf8;
  --text: #f1f5f9;
  --text-muted: #cbd5e1;
  --shadow-gold: 0 0 24px rgba(245, 197, 24, 0.35);
  --shadow-blue: 0 8px 32px rgba(37, 99, 235, 0.4);
  --font-display: "Russo One", system-ui, sans-serif;
  --font-body: "Chakra Petch", system-ui, sans-serif;
  --nav-height: 72px;
  --radius: 16px;
  --transition: 200ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--felt-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.icon--sm {
  width: 1rem;
  height: 1rem;
}

.icon--lg {
  width: 2rem;
  height: 2rem;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: var(--blue-outline);
  border-radius: 8px;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* ---- Atmosphere: felt table + bokeh ---- */
.felt-arena {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(139, 20, 36, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(10, 36, 99, 0.25) 0%, transparent 50%),
    linear-gradient(180deg, var(--felt-dark) 0%, var(--felt) 40%, var(--felt-dark) 100%);
}

.felt-arena__grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.felt-arena__bokeh {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bokeh {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.bokeh--pink {
  width: 280px;
  height: 280px;
  top: 8%;
  right: 12%;
  background: var(--neon-pink);
}

.bokeh--purple {
  width: 220px;
  height: 220px;
  top: 45%;
  left: 5%;
  background: var(--neon-purple);
}

.bokeh--blue {
  width: 300px;
  height: 300px;
  bottom: 15%;
  right: 20%;
  background: var(--neon-blue);
}

.bokeh--gold {
  width: 180px;
  height: 180px;
  top: 25%;
  left: 35%;
  background: var(--gold);
  opacity: 0.2;
}

.felt-arena__rails {
  position: absolute;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(180deg, var(--rail) 0%, #2a2a32 50%, var(--rail-chrome) 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.felt-arena__rails--top {
  top: 0;
}

.felt-arena__rails--bottom {
  bottom: 0;
  transform: scaleY(-1);
}

/* ---- Trick-shot trajectory path ---- */
.shot-path {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.shot-path__track {
  fill: none;
  stroke: url(#pathGrad);
  stroke-width: 3;
  stroke-dasharray: 8 6;
  stroke-linecap: round;
  opacity: 0.5;
}

.shot-path__glow {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(245, 197, 24, 0.6));
  opacity: 0;
  transition: opacity 300ms ease;
}

.shot-path__cue {
  fill: radial-gradient(circle, #fff 30%, #e2e8f0 100%);
  fill: #f8fafc;
  stroke: var(--blue-outline);
  stroke-width: 2;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
  opacity: 0;
  transition: opacity 300ms ease;
}

body.is-scrolling .shot-path__glow,
body.is-scrolling .shot-path__cue {
  opacity: 1;
}

/* ---- 3D gold title (game logo style) ---- */
.title-3d {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 0 var(--blue-outline)) drop-shadow(0 4px 0 rgba(10, 36, 99, 0.6));
  letter-spacing: 0.02em;
}

.title-3d--sm {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

.title-sub {
  display: block;
  margin-top: 0.15em;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.8vw, 1.75rem);
  font-style: italic;
  background: linear-gradient(180deg, #fff 0%, #fce7f3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 var(--blue-outline));
}

/* ---- Pocket-style nav ---- */
.pocket-nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(1120px, calc(100% - 2rem));
  transition: top var(--transition), box-shadow var(--transition);
}

.pocket-nav.is-scrolled {
  top: 0.5rem;
}

.pocket-nav__frame {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1.25rem;
  background: rgba(26, 26, 31, 0.88);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(192, 197, 206, 0.25);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pocket-nav__corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 3px solid var(--rail-chrome);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #3a3a42, #1a1a1f);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6);
}

.pocket-nav__corner--tl {
  top: -6px;
  left: -6px;
}

.pocket-nav__corner--tr {
  top: -6px;
  right: -6px;
}

.pocket-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity var(--transition);
}

.pocket-nav__brand:hover {
  opacity: 0.9;
}

.pocket-nav__logo {
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.pocket-nav__name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.pocket-nav__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
}

.pocket-nav__sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.pocket-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.pocket-nav__link {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 10px;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}

.pocket-nav__link:hover,
.pocket-nav__link:focus-visible {
  color: var(--gold);
  background: rgba(245, 197, 24, 0.1);
}

.pocket-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.5rem;
  padding: 0.55rem 1.1rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--blue-outline);
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  border-radius: 12px;
  border: 2px solid var(--blue-outline);
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pocket-nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(245, 197, 24, 0.5);
}

.pocket-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin-left: auto;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.pocket-nav__toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.pocket-nav.is-open .pocket-nav__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.pocket-nav.is-open .pocket-nav__toggle span:nth-child(2) {
  opacity: 0;
}

.pocket-nav.is-open .pocket-nav__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Buttons ---- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 14px;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn--strike {
  color: var(--blue-outline);
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  border: 3px solid var(--blue-outline);
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--strike:hover {
  box-shadow: 0 0 32px rgba(245, 197, 24, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn__shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

.btn--outline {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(192, 197, 206, 0.35);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}

.btn--lg {
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

.btn--lg span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  text-align: left;
}

.btn--lg small {
  font-size: 0.65rem;
  font-weight: 500;
  opacity: 0.85;
}

/* ---- Hero ---- */
.strike-hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: calc(var(--nav-height) + 2rem) 1.5rem 4rem;
  display: flex;
  align-items: center;
}

.strike-hero__layout {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.strike-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 999px;
}

.strike-hero__desc {
  margin: 1.25rem 0 1.75rem;
  max-width: 28rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.strike-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.strike-hero__stats {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.strike-hero__stats li {
  display: flex;
  flex-direction: column;
}

.strike-hero__stats strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
}

.strike-hero__stats span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.strike-hero__visual {
  position: relative;
}

.strike-hero__banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid var(--rail);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 2px var(--rail-chrome),
    inset 0 0 40px rgba(0, 0, 0, 0.2);
  transform: perspective(800px) rotateY(-4deg) rotateX(2deg);
  transition: transform 400ms ease;
}

.strike-hero__banner:hover {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg);
}

.strike-hero__banner img {
  width: 100%;
  aspect-ratio: 1024 / 500;
  object-fit: cover;
}

.strike-hero__perfect {
  position: absolute;
  bottom: 12%;
  right: 8%;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: #ff6b8a;
  text-shadow:
    0 0 12px rgba(255, 107, 138, 0.8),
    0 2px 0 var(--blue-outline);
  animation: perfect-pulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes perfect-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.strike-hero__balls {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pool-ball {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow:
    inset -4px -4px 8px rgba(0, 0, 0, 0.35),
    inset 4px 4px 8px rgba(255, 255, 255, 0.2),
    0 6px 16px rgba(0, 0, 0, 0.4);
}

.pool-ball--8 {
  top: -12px;
  left: -16px;
  background: radial-gradient(circle at 35% 30%, #444, #111);
  color: #fff;
}

.pool-ball--cue {
  bottom: 20%;
  left: -20px;
  width: 36px;
  height: 36px;
  background: radial-gradient(circle at 35% 30%, #fff, #e2e8f0);
}

.pool-ball--5 {
  top: 30%;
  right: -18px;
  background: radial-gradient(circle at 35% 30%, #f97316, #c2410c);
  color: #fff;
}

/* ---- Section head ---- */
.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.section-head__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon-blue);
}

.section-head__desc {
  margin-top: 0.75rem;
  color: var(--text-muted);
}

/* ---- Features: diamond layout ---- */
.felt-features {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
}

.felt-features__diamond {
  position: relative;
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1.25rem;
  min-height: 520px;
}

.felt-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: rgba(26, 26, 31, 0.75);
  border: 2px solid rgba(192, 197, 206, 0.15);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  cursor: default;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.felt-card:hover {
  border-color: rgba(245, 197, 24, 0.4);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.felt-card--center {
  grid-column: 1 / -1;
  max-width: 420px;
  margin: 0 auto;
}

.felt-card--left {
  grid-column: 1;
  align-self: end;
}

.felt-card--right {
  grid-column: 2;
  align-self: end;
}

.felt-card--bottom {
  grid-column: 1 / -1;
  max-width: 480px;
  margin: 0 auto;
}

.felt-card__ball {
  position: absolute;
  top: -14px;
  right: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.75rem;
  background: radial-gradient(circle at 35% 30%, var(--gold-light), var(--gold-dark));
  color: var(--blue-outline);
  border: 2px solid var(--blue-outline);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.felt-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(245, 197, 24, 0.15));
  color: var(--gold);
}

.felt-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.felt-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ---- Gallery: horizontal phone rack ---- */
.shot-rack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1.5rem 5rem;
  overflow: hidden;
}

.shot-rack .section-head {
  width: 100%;
}

.shot-rack__scroll {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 1rem 0 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(255, 255, 255, 0.1);
}

.shot-rack__scroll:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.shot-rack__scroll::-webkit-scrollbar {
  height: 6px;
}

.shot-rack__scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.shot-rack__scroll::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 999px;
}

.shot-rack__phone {
  flex: 0 0 auto;
  width: clamp(160px, 28vw, 220px);
  margin: 0;
  padding: 0.5rem;
  scroll-snap-align: center;
  background: linear-gradient(145deg, #2a2a32 0%, #1a1a1f 100%);
  border: 3px solid var(--rail-chrome);
  border-radius: 20px;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: rotate(-2deg);
  transition: transform var(--transition), box-shadow var(--transition);
}

.shot-rack__phone--lift {
  transform: translateY(-12px) rotate(2deg);
}

.shot-rack__phone:hover {
  transform: translateY(-6px) rotate(0deg);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5), 0 0 24px rgba(245, 197, 24, 0.15);
}

.shot-rack__phone--lift:hover {
  transform: translateY(-18px) rotate(0deg);
}

.shot-rack__phone img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid rgba(0, 0, 0, 0.4);
}

@media (min-width: 1100px) {
  .shot-rack__scroll {
    overflow-x: visible;
  }
}

/* ---- Download strike panel ---- */
.strike-panel {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem 6rem;
}

.strike-panel__inner {
  position: relative;
  width: min(800px, 100%);
  margin: 0 auto;
  padding: 3rem 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-strike) 0%, var(--blue-strike-light) 50%, #1d4ed8 100%);
  border: 3px solid var(--blue-outline);
  box-shadow: var(--shadow-blue);
}

.strike-panel__glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.strike-panel__content {
  position: relative;
  text-align: center;
}

.strike-panel__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.strike-panel__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom: 0.75rem;
  color: #fff;
  text-shadow: 0 2px 0 var(--blue-outline);
}

.strike-panel__desc {
  max-width: 28rem;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.85);
}

.strike-panel__stores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ---- Footer ---- */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.5rem;
  background: rgba(10, 10, 14, 0.9);
  border-top: 1px solid rgba(192, 197, 206, 0.12);
}

.site-footer__inner {
  width: min(1000px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.site-footer__links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
}

.site-footer__links a:hover {
  color: var(--gold);
}

.site-footer__copy {
  font-size: 0.8rem;
  color: rgba(203, 213, 225, 0.6);
}

/* ---- Modal ---- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms ease, visibility 250ms ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal__panel {
  position: relative;
  width: min(400px, 100%);
  padding: 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--felt-light) 0%, var(--felt-dark) 100%);
  border: 3px solid var(--rail-chrome);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 250ms ease;
}

.modal.is-open .modal__panel {
  transform: scale(1);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  transition: background var(--transition);
}

.modal__close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.15);
  color: var(--gold);
}

.modal__text {
  margin: 0.75rem 0 1.5rem;
  color: var(--text-muted);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .strike-hero__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .strike-hero__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .strike-hero__actions {
    justify-content: center;
  }

  .strike-hero__stats {
    justify-content: center;
  }

  .strike-hero__banner {
    transform: none;
  }

  .felt-features__diamond {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .felt-card--center,
  .felt-card--left,
  .felt-card--right,
  .felt-card--bottom {
    grid-column: 1;
    max-width: none;
    align-self: auto;
  }

  .shot-rack__phone {
    width: clamp(150px, 40vw, 200px);
  }
}

@media (max-width: 768px) {
  .pocket-nav__links {
    position: fixed;
    top: calc(var(--nav-height) + 0.5rem);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(26, 26, 31, 0.96);
    border: 2px solid rgba(192, 197, 206, 0.2);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  }

  .pocket-nav.is-open .pocket-nav__links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .pocket-nav__link {
    padding: 0.75rem 1rem;
    text-align: center;
  }

  .pocket-nav__cta {
    margin: 0.5rem 0 0;
    justify-content: center;
  }

  .pocket-nav__toggle {
    display: flex;
  }

  .shot-path {
    display: none;
  }

  .strike-panel__inner {
    padding: 2rem 1.5rem;
  }

  .strike-panel__stores {
    flex-direction: column;
    align-items: stretch;
  }

  .btn--lg {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .btn__shine {
    animation: none;
  }

  .strike-hero__perfect {
    animation: none;
  }
}
