/* C&C Bat Factory · ccbatfactory.com redesign
   Direction: Stadium Lights. Near-black ground, gold accent, HitTrax red reserved for readouts.
   Fonts: Bebas Neue (display), Barlow (body), Orbitron (digital readouts). */

:root {
  --ink: #07090F;
  --ink-2: #0E1220;
  --navy: #0B1A33;
  --panel: #12172A;
  --line: rgba(242,244,247,0.15);
  --text: #F2F4F7;
  --muted: rgba(242,244,247,0.68);
  --acc: #C9A24A;
  --acc-hi: #E8C77A;
  --acc-rgb: 201,162,74;
  --hud-label: #FF4A3D;
  --hud-digit: #FFFFFF;
  --hud-glow: rgba(255,74,61,0.5);
  --hud-line: rgba(255,255,255,0.45);
  --display: 'Bebas Neue', 'Impact', 'Arial Narrow Bold', sans-serif;
  --body: 'Barlow', 'Arial Narrow', sans-serif;
  --digital: 'Orbitron', 'Share Tech Mono', 'Consolas', monospace;
  --header-h: 64px;
  --gutter: 18px;
}

/* school colours: West Albany Bulldogs (navy, Vegas gold, grey) and South Albany RedHawks (red, grey) */
html[data-school="redhawks"] { --ink: #0E0E10; --ink-2: #16171A; --navy: #26292E; --panel: #1C1F24; --acc: #9E1B2B; --acc-hi: #C42A3C; --acc-rgb: 158,27,43; --hud-label: #F2F4F7; --hud-glow: rgba(158,27,43,0.55); }
html { transition: background-color .3s ease; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; background: var(--ink); }
body { font-family: var(--body); color: var(--text); -webkit-font-smoothing: antialiased; line-height: 1.45; padding-bottom: 76px; }
img { max-width: 100%; display: block; }
a { color: var(--acc); text-decoration: none; }
a:hover { color: var(--acc-hi); }
h1, h2, h3 { font-family: var(--display); font-weight: 400; letter-spacing: 0.01em; line-height: 0.92; margin: 0; }
h1 { font-size: clamp(64px, 18vw, 92px); }
h2 { font-size: clamp(46px, 12vw, 64px); }
h3 { font-size: 30px; }
p { margin: 0; }
.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.label { font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.label-acc { color: var(--acc); }
.muted { color: var(--muted); }
.price { font-family: var(--display); color: var(--acc); line-height: 1; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 54px; padding: 0 20px; font-weight: 700; font-size: 15px; letter-spacing: 0.14em; text-transform: uppercase; border-radius: 0; border: 1px solid transparent; cursor: pointer; font-family: var(--body); }
.btn svg { flex: none; }
.btn span { white-space: nowrap; }
.hide-m { display: none; }
.btn-acc { background: var(--acc); color: var(--ink); }
.btn-acc:hover { background: var(--acc-hi); color: var(--ink); }
.btn-ghost { background: rgba(7,9,15,0.4); color: var(--text); border-color: rgba(242,244,247,0.4); }
.btn-ghost:hover { border-color: var(--text); color: var(--text); }
.btn-sm { min-height: 42px; padding: 0 16px; font-size: 13px; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-direction: column; gap: 10px; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 40; height: var(--header-h); background: rgba(7,9,15,0.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); box-shadow: 0 0 0 rgba(0,0,0,0); transition: box-shadow .3s ease, background-color .3s ease; }
.site-header.is-scrolled { background: rgba(7,9,15,0.98); box-shadow: 0 8px 24px rgba(0,0,0,.35); }
.site-header .wrap { height: 100%; display: flex; align-items: center; gap: 12px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); }
.brand:hover { color: var(--text); }
.ball { position: relative; width: 72px; height: 72px; flex: none; margin-top: 16px; z-index: 2; border-radius: 50%; box-shadow: 0 0 0 2px var(--acc), 0 8px 22px rgba(0,0,0,.55), 0 0 18px rgba(var(--acc-rgb), .35); background: #fff; } /* Cris, 2026-09-25: bigger badge that hangs below the bar instead of growing it */
.ball img { position: absolute; inset: 3px; width: calc(100% - 6px); height: calc(100% - 6px); border-radius: 50%; object-fit: cover; background: #fff; transform: scale(1.24); transform-origin: 50% 52%; } /* 2026-09-25: the art fills more of the disc; the file has a wide white margin */
.ball { overflow: hidden; }
.ball svg { position: absolute; inset: 0; display: none; }
.brand-name { font-family: var(--display); font-size: 21px; line-height: 1; letter-spacing: 0.06em; white-space: nowrap; }
.brand-name span { color: var(--acc); }
.nav { display: none; }
.header-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.site-header .btn-sm { display: none; }
.header-phone { display: none; }
.menu-btn { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: none; border: 0; color: var(--text); cursor: pointer; padding: 0; }
.menu-panel { display: none; position: fixed; inset: var(--header-h) 0 0 0; z-index: 39; background: rgba(7,9,15,0.97); padding: 24px var(--gutter) 120px; flex-direction: column; gap: 4px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.menu-panel.open { display: flex; }
.menu-panel a { font-family: var(--display); font-size: 40px; color: var(--text); padding: 8px 0; border-bottom: 1px solid var(--line); }
.menu-panel a.current, .nav a.current { color: var(--acc); }
.menu-panel .menu-foot { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.menu-panel .menu-foot a { font-family: var(--body); font-size: 15px; border: 0; padding: 0; }

/* school selector */
.school { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }

.school-label { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-right: 4px; }
.school button { font: 700 11px var(--body); letter-spacing: .12em; text-transform: uppercase; padding: 7px 10px; background: transparent; color: var(--muted); border: 1px solid var(--line); cursor: pointer; }
.school button.on { background: var(--acc); color: var(--ink); border-color: var(--acc); }
.school button::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; vertical-align: 1px; }
.school button[data-school=""]::before { background: #C9A24A; box-shadow: 0 0 0 2px #0B1A33; }
.school button[data-school="redhawks"]::before { background: #9E1B2B; box-shadow: 0 0 0 2px #26292E; }
.school-desk { display: none; }
.school-mobile { padding-bottom: 18px; margin-bottom: 8px; border-bottom: 1px solid var(--line); }

/* ---------- mobile bottom bar ---------- */
.bottom-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: flex; gap: 8px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(7,9,15,0.94); border-top: 1px solid rgba(var(--acc-rgb),0.5); backdrop-filter: blur(8px); }
.bottom-bar .btn-acc { flex: 1; }
.bottom-bar .btn-acc > span { display: flex; align-items: baseline; gap: 8px; }
.bottom-bar .btn-ghost { width: 56px; padding: 0; justify-content: center; }

/* ---------- home hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--ink); }
.hero-media { position: absolute; left: 0; top: 0; width: 100%; height: 620px; }
@media (min-width: 1024px) { .hero-media, .readouts { transition: transform .3s ease-out; } } /* mouse parallax on desktop; hero-media and readouts always move together so the trail lines stay pinned to the photo */
@media (prefers-reduced-motion: reduce) { .hero-media, .readouts { transition: none !important; transform: none !important; } }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 100% 50%; filter: saturate(0.4) contrast(1.05); }
.hero-media .tint { position: absolute; inset: 0; background: var(--navy); mix-blend-mode: color; opacity: 0.6; }
.hero-media .fade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,9,15,0.35) 0%, rgba(7,9,15,0.1) 30%, rgba(7,9,15,0.6) 60%, var(--ink) 100%); }
.hero-media .streak { position: absolute; left: -30%; top: 20%; width: 120%; height: 34%; transform: rotate(-16deg); background: linear-gradient(90deg, rgba(var(--acc-rgb),0) 0%, rgba(var(--acc-rgb),0.22) 45%, rgba(var(--acc-rgb),0) 100%); filter: blur(40px); }
.hero-media .grain { position: absolute; inset: 0; opacity: 0.55; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.10 0'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>"); }
.hero-copy { position: relative; padding: 380px var(--gutter) 28px; display: flex; flex-direction: column; gap: 16px; }
.hero-copy h1 span { color: var(--acc); }
.hero-copy .btn-row { margin-top: 4px; }

/* HitTrax readouts: fly from the ball, land at three spots, count up */
@property --n1 { syntax: '<integer>'; initial-value: 0; inherits: false; }
@property --n2 { syntax: '<integer>'; initial-value: 0; inherits: false; }
.readouts { position: absolute; left: 0; top: 0; width: 100%; height: 620px; pointer-events: none; }
.rd { position: absolute; display: flex; flex-direction: column; gap: 2px; padding: 6px 10px 5px; background: rgba(8,9,14,0.82); border: 1px solid var(--hud-line); box-shadow: 0 0 18px var(--hud-glow), inset 0 0 14px rgba(255,255,255,0.05); opacity: 0; transform: translate(var(--dx), var(--dy)) scale(0.08); }
.rd-label { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--hud-label); }
.rd-num { display: flex; align-items: baseline; gap: 6px; }
.dg { font-family: var(--digital); font-weight: 700; font-size: 22px; line-height: 1; color: var(--hud-digit); text-shadow: 0 0 6px var(--hud-digit), 0 0 18px var(--hud-glow); font-variant-numeric: tabular-nums; }
.dg-unit { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; color: var(--hud-label); }
.flash { position: absolute; width: 18px; height: 18px; margin: -9px 0 0 -9px; border-radius: 50%; background: #fff; box-shadow: 0 0 24px 8px var(--hud-glow); opacity: 0; }
.trails { position: absolute; inset: 0; width: 100%; height: 100%; }
.trail { stroke: var(--hud-line); stroke-width: 1.2; fill: none; stroke-dasharray: 1; stroke-dashoffset: 1; }
.cnt { display: flex; flex-direction: column; gap: 2px; }
.cnt div { font-weight: 600; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); opacity: 0; transform: translateX(-10px); }
.cnt .cnt-last { font-family: var(--display); font-weight: 400; font-size: 30px; letter-spacing: 0.04em; line-height: 1; color: var(--acc); margin-top: 6px; }
/* the .play class is added by script.js once the hero is on screen (and only if the viewer allows motion) */
.play .rd { animation: fly 0.9s cubic-bezier(0.2, 0.9, 0.3, 1) var(--d) forwards; }
.play .flash { animation: flash 0.8s ease-out 0.25s forwards; }
.play .trail { animation: trail 0.5s ease-out var(--d) forwards; }
.play .cnt div { animation: cin 0.5s ease-out var(--d) forwards; }
.play .n1::after { counter-reset: a var(--n1) b var(--n2); content: counter(a) "." counter(b); animation: n-ev 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 1.3s forwards; }
.play .n2::after { counter-reset: a var(--n1) b var(--n2); content: counter(a) "." counter(b); animation: n-la 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 1.6s forwards; }
.play .n3::after { counter-reset: a var(--n1); content: counter(a); animation: n-di 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) 1.9s forwards; }
.n1::after { content: "0.0"; } .n2::after { content: "0.0"; } .n3::after { content: "0"; }
@keyframes fly { 0% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(0.08); } 20% { opacity: 1; } 100% { opacity: 1; transform: translate(0, 0) scale(1); } }
@keyframes flash { 0% { opacity: 0; transform: scale(0.2); } 30% { opacity: 1; transform: scale(1.6); } 100% { opacity: 0; transform: scale(3); } }
@keyframes trail { to { stroke-dashoffset: 0; } }
@keyframes cin { to { opacity: 1; transform: translateX(0); } }
@keyframes n-ev { to { --n1: 98; --n2: 4; } }
@keyframes n-la { to { --n1: 24; --n2: 1; } }
@keyframes n-di { to { --n1: 392; } }
.no-motion .rd, .no-motion .cnt div { opacity: 1; transform: none; }
.no-motion .n1::after { content: "98.4"; } .no-motion .n2::after { content: "24.1"; } .no-motion .n3::after { content: "392"; }

/* phone readout positions (620px image, image right-aligned; ball at about 78% / 224px) */
.flash { left: 77.7%; top: 224px; }
.rd-ev { left: 55%; top: 96px; width: 130px; --dx: 23px; --dy: 106px; --d: 0.4s; }
.rd-la { left: 2%; top: 40px; width: 120px; --dx: 235px; --dy: 162px; --d: 0.7s; }
.rd-di { left: 55%; top: 290px; width: 130px; --dx: 23px; --dy: -88px; --d: 1.0s; }
.trails-desktop { display: none; }

/* ---------- offer strip ---------- */
.offer { display: flex; align-items: center; gap: 14px; margin: 0 var(--gutter); padding: 14px 16px; border: 1px solid var(--acc); background: rgba(var(--acc-rgb),0.06); }
.offer .big { font-family: var(--display); font-size: 40px; line-height: 0.9; color: var(--acc); }
.offer p { flex: 1; font-size: 15px; line-height: 1.3; }
.offer a { white-space: nowrap; font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
/* the 2 FREE window: everything centred, title on top (Cris, 2026-09-19) */
.offer-free { flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 22px 18px 20px; }
.offer-free .big { font-size: 34px; line-height: 0.95; text-transform: uppercase; }
.offer-free .big .m { display: inline; }
.offer-free p { flex: none; max-width: 40ch; }
/* memberships: the one row and strip window that looks different, with the save star */
.save-star { display: inline-flex; align-items: center; gap: 6px; padding: 5px 9px 5px 7px; background: var(--acc); color: var(--ink); font-family: var(--body); font-size: 10px; font-weight: 700; line-height: 1.1; letter-spacing: .08em; text-transform: uppercase; text-align: left; box-shadow: 0 0 0 1px rgba(255,255,255,.3), 0 0 14px rgba(var(--acc-rgb), .45); }
.save-star svg { flex: none; filter: drop-shadow(0 1px 1px rgba(0,0,0,.35)); } /* 2026-09-26: was a white glow meant for icons on dark backgrounds; on this gold pill it just blurred the star at 16px. A small dark shadow adds crisp edge definition instead. */
.row-member { background: linear-gradient(90deg, rgba(var(--acc-rgb), .12), rgba(var(--acc-rgb), .03)); border-left: 3px solid var(--acc); }
.row-member .row-price { align-items: flex-end; gap: 6px; }


/* ---------- sections ---------- */
.divider { display: flex; align-items: center; gap: 18px; padding: 56px var(--gutter) 0; }
.divider::before, .divider::after { content: ""; flex: 1 1 0; min-width: 40px; height: 2px; background: linear-gradient(90deg, rgba(var(--acc-rgb),0.15), var(--acc)); box-shadow: 0 0 8px rgba(var(--acc-rgb),0.35); }
.divider::after { background: linear-gradient(90deg, var(--acc), rgba(var(--acc-rgb),0.15)); }
.divider-line { gap: 0; }
.divider-line::before { background: linear-gradient(90deg, rgba(var(--acc-rgb),0.15), rgba(var(--acc-rgb),0.6)); box-shadow: none; }
.divider-line::after { background: linear-gradient(90deg, rgba(var(--acc-rgb),0.6), rgba(var(--acc-rgb),0.15)); box-shadow: none; }
.divider svg { width: 36px; height: 36px; flex: none; filter: drop-shadow(0 0 10px rgba(var(--acc-rgb),0.45)); }
/* forward spin: the seams roll down the face of the ball, period 48 units */
.divider .seams { animation: roll 0.45s linear infinite; }
@keyframes roll { from { transform: translateY(0); } to { transform: translateY(48px); } }
@media (prefers-reduced-motion: reduce) { .divider .seams { animation: none; } }
.section { padding: 28px var(--gutter) 0; }
.section-head { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.section-head h2::after, .block h2::after { content: ""; display: block; width: 64px; height: 4px; margin-top: 14px; background: var(--acc); }
.section-head p { font-size: 17px; color: var(--muted); max-width: 640px; }
.rows { display: flex; flex-direction: column; }
.row { display: flex; align-items: center; gap: 12px; padding: 18px 0; border-top: 1px solid var(--line); border-left: 3px solid transparent; color: var(--text); transition: background .25s ease, border-left-color .25s ease; }
/* tinted rows: keep the text off the coloured left edge (Cris, 2026-09-25); must sit after .row, which resets padding */
.row.row-member, .row.row-new { padding-left: 20px; padding-right: 12px; border-left-color: var(--acc); } /* re-assert over the plain .row transparent border-left added for the 2026-09-26 hover effect */
.row:last-child { border-bottom: 1px solid var(--line); }
.row:hover { color: var(--text); background: linear-gradient(90deg, rgba(var(--acc-rgb),0.06), transparent); border-left-color: var(--acc-hi); }
.row-main { flex: 1; display: flex; flex-direction: column; gap: 4px; min-width: 0; transition: transform .25s ease; }
.row:hover .row-main { transform: translateX(4px); }
.row-title { font-family: var(--display); font-size: 32px; line-height: 1; }
.row-sub { font-size: 14px; color: var(--muted); }
.row-price { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.row-price .price { font-size: 30px; }
.row-price .label { font-size: 10px; }
.row svg { flex: none; color: var(--acc); }

/* dark navy block */
.block { position: relative; margin-top: 28px; padding: 40px var(--gutter) 44px; background: var(--navy); overflow: hidden; }
.block .glow { position: absolute; right: -160px; top: -80px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--acc-rgb),0.28) 0%, rgba(var(--acc-rgb),0) 65%); }
.block .inner { position: relative; display: flex; flex-direction: column; gap: 14px; }
.tech-wrap { position: relative; display: grid; grid-template-columns: 1fr; gap: 28px; } /* 2026-09-25: text left, tech tiles right on desktop */
.block p { font-size: 16px; color: var(--muted); max-width: 560px; }
.logos { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 8px; }
.logos img { height: 22px; width: auto; }

/* cards (cage types, tiers, classes) */
.cards { display: grid; grid-template-columns: 1fr; gap: 12px; }
.card { display: flex; flex-direction: column; gap: 10px; padding: 20px; background: var(--panel); border: 1px solid var(--line); border-top: 3px solid transparent; }
.card.featured { border-top-color: var(--acc); }
.card h3 { font-size: 30px; }
.card .price-line { display: flex; align-items: baseline; gap: 6px; }
.card .price { font-size: 40px; }
.card p, .card li { font-size: 15px; color: var(--muted); }
.card ul { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 4px; }
.card .btn { margin-top: auto; }
.tag { align-self: flex-start; padding: 4px 10px; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; background: var(--acc); color: var(--ink); }

/* shop product cards: gold badge with a glint, sheen sweep on hover, struck price beside the card price */
.card.product { position: relative; padding: 0; gap: 0; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; opacity: 0; transform: translateY(14px); animation: rise .5s ease-out forwards; animation-delay: calc(var(--i, 0) * 60ms); }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
.card.product:hover { transform: translateY(-4px); border-color: rgba(var(--acc-rgb), .7); box-shadow: 0 18px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(var(--acc-rgb), .35), 0 0 30px rgba(var(--acc-rgb), .18); }
.card.product::after { content: ""; position: absolute; top: -20%; left: -60%; width: 40%; height: 140%; transform: skewX(-20deg); background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.35) 50%, rgba(255,255,255,0) 100%); pointer-events: none; opacity: 0; }
.card.product:hover::after { animation: sheen .9s ease-out forwards; }
@keyframes sheen { 0% { left: -60%; opacity: 1; } 100% { left: 130%; opacity: 0; } }
.card.product .pic { position: relative; aspect-ratio: 1; background: #fff; padding: 12px; overflow: hidden; }
.card.product .pic::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 60% at 50% 100%, rgba(var(--acc-rgb), .28), rgba(var(--acc-rgb), 0) 70%); }
.card.product .pic img { position: relative; width: 100%; height: 100%; object-fit: contain; transition: transform .35s ease; }
.card.product:hover .pic img { transform: scale(1.06); }
.card.product .badge { position: absolute; z-index: 2; top: 10px; left: 10px; display: flex; flex-direction: column; align-items: flex-start; padding: 6px 10px 5px; background: var(--acc); color: var(--ink); font-family: var(--display); font-size: 18px; line-height: 1; letter-spacing: .04em; box-shadow: 0 0 0 1px rgba(255,255,255,.35), 0 6px 16px rgba(0,0,0,.35), 0 0 18px rgba(var(--acc-rgb), .55); }
.card.product .badge small { font-family: var(--body); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: .8; margin-top: 2px; }
.card.product .spark { position: absolute; top: -7px; right: -7px; width: 16px; height: 16px; background: #fff; clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%); filter: drop-shadow(0 0 6px #fff); animation: glint 2.4s ease-in-out infinite; animation-delay: calc(var(--i, 0) * 200ms); }
.card.product .spark::after { content: ""; position: absolute; left: -14px; top: 12px; width: 8px; height: 8px; background: #fff; clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%); animation: glint 2.4s ease-in-out infinite; animation-delay: calc(var(--i, 0) * 200ms + .6s); }
@keyframes glint { 0%, 100% { transform: scale(0) rotate(0deg); opacity: 0; } 50% { transform: scale(1) rotate(45deg); opacity: 1; } }
.card.product .label, .card.product h3, .card.product .price-line, .card.product .save { padding: 0 16px; }
.card.product .label { padding-top: 14px; }
.card.product h3 { font-size: 24px; margin: 6px 0 6px; color: var(--text); }
.card.product .price-line { align-items: baseline; gap: 10px; flex-wrap: wrap; }
@media (max-width: 479px) { .card.product .price { font-size: 26px; } .card.product .was { font-size: 13px; } .card.product .price-line { gap: 8px; } }
.card.product .was { font-size: 15px; color: var(--muted); text-decoration: line-through; }
.card.product .price { font-size: 32px; text-shadow: 0 0 14px rgba(var(--acc-rgb), .45); }
.card.product .save { padding-bottom: 16px; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--acc-hi); }
.cards.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 768px) { .cards.products { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .cards.products { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.card.product .badge.out { background: var(--panel); color: var(--muted); box-shadow: 0 0 0 1px var(--line); }
.card.product.out .pic img { filter: grayscale(1); opacity: .55; }
.card.product.out .price, .card.product.out .save { color: var(--muted); text-shadow: none; }
.card.product.live { animation: none; opacity: 1; transform: none; }
/* shop: small coupon square riding the first gold line, right side, tilted; half above the line and half below */
.divider.has-coupon { position: relative; padding-top: 120px; }
.divider.has-coupon svg { position: relative; z-index: 1; }
.coupon-float { --tilt: 20deg; position: absolute; z-index: 3; right: 34px; bottom: 18px; width: 168px; padding: 14px 12px 12px; text-align: center; background: var(--panel); border: 1px solid var(--acc); box-shadow: 0 0 0 4px rgba(var(--acc-rgb), .12), 0 18px 40px rgba(0,0,0,.55), 0 0 28px rgba(var(--acc-rgb), .35); transform: translateY(50%) rotate(var(--tilt)); animation: bob 3.4s ease-in-out infinite; }
.coupon-float .pct { font-family: var(--display); font-size: 50px; line-height: .85; color: var(--acc); text-shadow: 0 0 18px rgba(var(--acc-rgb), .5); }
.coupon-float .pct span { display: block; font-size: 20px; letter-spacing: .18em; }
.coupon-float p { margin: 8px 0 0; font-size: 13px; line-height: 1.3; font-weight: 600; color: var(--text); }
.coupon-float small { display: block; margin-top: 6px; font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
@keyframes bob { 0%, 100% { transform: translateY(50%) rotate(var(--tilt)); } 50% { transform: translateY(calc(50% - 6px)) rotate(var(--tilt)); } }
@media (prefers-reduced-motion: reduce) { .coupon-float { animation: none; } }
/* below 1200px the tilted square hangs into the heading, so the shop section starts lower; on phones it also covers the ball, so the ball goes */
.divider.has-coupon + .section { padding-top: 124px; }
@media (max-width: 767px) { .divider.has-coupon svg { display: none; } .divider.has-coupon { gap: 0; } }
@media (min-width: 1200px) { .divider.has-coupon + .section { padding-top: 32px; } }
@media (min-width: 768px) { .divider.has-coupon { padding-top: 140px; } .coupon-float { right: 6%; bottom: 22px; width: 200px; padding: 18px 14px 14px; } .coupon-float .pct { font-size: 58px; } .coupon-float .pct span { font-size: 22px; } .coupon-float p { font-size: 14px; } .coupon-float small { font-size: 10px; } }
/* shop: filter chips + search above the grid */
.shop-tools { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.chips { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.chips::-webkit-scrollbar { display: none; }
.chip { flex: 0 0 auto; padding: 9px 12px; border: 1px solid var(--line); background: transparent; color: var(--text); font-family: var(--body); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; transition: border-color .2s, background .2s, color .2s; }
.chip span { margin-left: 4px; color: var(--muted); font-weight: 600; letter-spacing: 0; }
.chip:hover { border-color: rgba(var(--acc-rgb), .7); }
.chip.on { background: var(--acc); border-color: var(--acc); color: var(--ink); }
.chip.on span { color: var(--ink); opacity: .7; }
/* makers: a softer panel under the type chips, shown only once a type is picked */
.makers { display: flex; align-items: center; gap: 12px; padding: 10px 12px; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-left: 3px solid rgba(var(--acc-rgb), .55); }
.makers[hidden] { display: none; }
.makers-label { flex: none; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.chips-brand { min-width: 0; padding-bottom: 0; }
.chips-brand .chip { padding: 7px 10px; font-size: 11px; border-color: rgba(255,255,255,.14); }
.chips-brand .chip.on { background: rgba(var(--acc-rgb), .18); border-color: var(--acc); color: var(--acc-hi); }
.chips-brand .chip.on span { color: var(--acc-hi); opacity: .8; }
.tools-row { display: flex; align-items: center; gap: 12px; }
.shop-search { flex: 1; min-width: 0; padding: 11px 14px; border: 1px solid var(--line); background: var(--panel); color: var(--text); font-family: var(--body); font-size: 15px; }
.shop-search:focus { outline: none; border-color: var(--acc); box-shadow: 0 0 0 3px rgba(var(--acc-rgb), .18); }
.shop-search::placeholder { color: var(--muted); }
.count { flex: 0 0 auto; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.empty { padding: 40px 0; text-align: center; color: var(--muted); }
.card.product[hidden] { display: none; }
@media (min-width: 768px) { .chips { flex-wrap: wrap; overflow: visible; } }
@media (prefers-reduced-motion: reduce) { .card.product { animation: none; opacity: 1; transform: none; } .card.product .spark, .card.product .spark::after { animation: none; opacity: 1; transform: rotate(45deg); } }

/* inner page hero */
.page-hero { position: relative; overflow: hidden; min-height: 520px; display: flex; align-items: flex-end; }
.page-hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(0.45) contrast(1.05); }
.page-hero .tint { position: absolute; inset: 0; background: var(--navy); mix-blend-mode: color; opacity: 0.6; }
.page-hero .fade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,9,15,0.4) 0%, rgba(7,9,15,0.15) 35%, rgba(7,9,15,0.92) 100%); }
.page-hero .inner { position: relative; width: 100%; max-width: 1240px; margin: 0 auto; padding: 120px var(--gutter) 28px; display: flex; flex-direction: column; gap: 14px; }
.page-hero h1 { font-size: clamp(56px, 15vw, 80px); }
.page-hero .lead { font-size: 18px; color: var(--muted); max-width: 560px; }
.page-hero .from { display: flex; align-items: baseline; gap: 8px; }
.page-hero .hero-caption { margin: 2px 0 0; font-size: 12px; letter-spacing: .04em; color: var(--muted); opacity: .8; }
.page-hero .from .price { font-size: 44px; }

/* steps */
.steps { display: grid; grid-template-columns: 1fr; gap: 12px; counter-reset: step; }
.step { padding: 18px; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--display); font-size: 30px; color: var(--acc); line-height: 1; }
.step h3 { font-size: 24px; }
.step p { font-size: 15px; color: var(--muted); }

/* coaches */
.coaches { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.coach { display: flex; flex-direction: column; gap: 8px; padding: 16px; background: var(--panel); border: 1px solid var(--line); }
.coach .initials { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 24px; color: var(--ink); background: var(--acc); }
.coach h3 { font-size: 24px; }
.coach .spec { font-size: 13px; color: var(--muted); }
.coach details { font-size: 14px; color: var(--muted); }
.coach summary { cursor: pointer; color: var(--acc); font-weight: 600; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; list-style: none; }
.coach summary::-webkit-details-marker { display: none; }
.coach details p { margin-top: 8px; }
.coach-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.coach-strip .chip { flex: 0 1 auto; display: flex; align-items: center; gap: 8px; padding: 8px 12px 8px 8px; border: 1px solid var(--line); color: var(--text); }
.coach-strip .chip .initials { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 15px; color: var(--ink); background: var(--acc); }
.coach-strip .chip span { font-size: 14px; font-weight: 600; white-space: nowrap; }

/* tables */
.table { width: 100%; border-collapse: collapse; font-size: 15px; }
.table th, .table td { padding: 12px 8px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.table th { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.table td.num { font-family: var(--display); font-size: 24px; color: var(--acc); white-space: nowrap; }
.note { font-size: 13px; color: var(--muted); }

/* find us */
.find { display: flex; flex-direction: column; gap: 8px; }
.find .addr { font-family: var(--display); font-size: 36px; line-height: 1; }
.find .hours { font-size: 16px; color: var(--muted); line-height: 1.5; }
.find .btn-row { flex-direction: row; margin-top: 10px; }
.find .btn-row .btn { flex: 1; justify-content: center; }
.map { width: 100%; aspect-ratio: 4 / 3; border: 1px solid var(--line); filter: grayscale(0.6) contrast(1.05); }
.find .building { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 20% 50%; border: 1px solid var(--line); display: block; filter: saturate(.85); }

/* contact form */
.form { display: flex; flex-direction: column; gap: 12px; }
.form label { display: flex; flex-direction: column; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.form input, .form textarea, .form select { width: 100%; padding: 12px 14px; font: 500 16px var(--body); color: var(--text); background: var(--panel); border: 1px solid var(--line); border-radius: 0; }
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--acc); }
.form textarea { min-height: 120px; resize: vertical; }

/* footer */
.footer { margin-top: 64px; padding: 32px var(--gutter) 24px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 18px; }
.footer .cols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.footer .col { display: flex; flex-direction: column; gap: 6px; }
.footer .col a, .footer .col span { font-size: 14px; color: var(--muted); }
.footer .col a:hover { color: var(--text); }
.footer .fine { font-size: 12px; color: var(--muted); }

/* ---------- tablet and up ---------- */
@media (min-width: 768px) {
  :root { --gutter: 32px; }
  .btn-row { flex-direction: row; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .coaches { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer .cols { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .find { flex-direction: row; gap: 32px; }
  .find > div { flex: 1; min-width: 0; }
  .form { max-width: 620px; }
  .section { padding-top: 32px; }
  .divider { padding-top: 72px; }
  .divider svg { width: 44px; height: 44px; }
}

/* ---------- desktop ---------- */
@media (min-width: 1024px) {
  :root { --header-h: 72px; --gutter: 48px; }
  body { padding-bottom: 0; }
  .bottom-bar, .menu-btn, .menu-panel { display: none !important; }
  .nav { display: flex; align-items: center; justify-content: center; gap: 22px; flex: 1; }
  .nav a { position: relative; color: rgba(242,244,247,0.85); font-weight: 600; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; transition: color .2s ease; }
  .nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--acc); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
  .nav a:hover { color: var(--acc); }
  .nav a:hover::after, .nav a.current::after { transform: scaleX(1); }
  .header-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
  .site-header .wrap { max-width: none; } /* header runs edge to edge: brand far left, phone + Book far right, aligned with the school selector */
  .header-cta { margin-left: auto; }
  .site-header .btn-sm { display: inline-flex; }
  /* school selector: under the navbar, upper right, floating over the top of the page */
  .school-desk { display: block; position: absolute; top: calc(var(--header-h) + 10px); right: var(--gutter); z-index: 30; }
  .school-desk .school { gap: 4px; padding: 4px 4px 4px 10px; background: rgba(7,9,15,0.75); border: 1px solid var(--line); backdrop-filter: blur(6px); }
  .school-desk .school button { border: 0; padding: 6px 10px; }
  .hide-m { display: inline; }
  .brand-name { font-size: 26px; }
  .ball { width: 96px; height: 96px; margin-top: 36px; }

  /* desktop hero: full-bleed landscape photo, giant type bottom-left, list + buttons bottom-right, services strip along the bottom */
  .hero { height: clamp(720px, 62.5vw, 960px); margin-top: calc(-1 * var(--header-h)); } /* 16:10 of the width, clamped; an aspect-ratio + min-height pair made the hero wider than the screen below 1152px */
  .page-hero { margin-top: calc(-1 * var(--header-h)); }
  .hero-copy h1 br.m { display: none; }
  .hero-media, .readouts { height: 100%; }
  .hero-media img { object-position: center 35%; }
  .hero-media .fade { background: linear-gradient(180deg, rgba(7,9,15,0.6) 0%, rgba(7,9,15,0.25) 40%, rgba(7,9,15,0.95) 100%); }
  .hero-copy { position: absolute; left: 0; right: 0; bottom: 150px; padding: 0 var(--gutter); flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 40px; }
  .hero-copy h1 { font-size: clamp(108px, 12.5vw, 180px); line-height: 0.82; } /* 2026-09-25: ten percent smaller to make room for the academy ticket */
  .hero-copy .hero-right { width: 340px; display: flex; flex-direction: column; gap: 14px; }
  .hero-copy .btn-row { flex-direction: column; }
  .cnt div { font-size: 13px; } .cnt { gap: 3px; } .cnt .cnt-last { font-size: 36px; }
  .dg { font-size: 30px; } .rd { padding: 7px 12px 6px; } .rd-label { font-size: 10px; }
  /* ball at 53.7% / 48.2% of the frame; boxes in fractions of the frame, offsets to the ball in px at 1440 wide */
  .flash { left: 53.7%; top: 48.2%; }
  .rd-ev { left: 69.4%; top: 16.7%; width: 170px; --dx: -312px; --dy: 253px; }
  .rd-la { left: 38.9%; top: 32.2%; width: 170px; --dx: 128px; --dy: 113px; }
  .rd-di { left: 69.4%; top: 40%; width: 150px; --dx: -302px; --dy: 44px; }
  .trails-mobile { display: none; } .trails-desktop { display: block; }
  .trail-alt { display: none; }
  .strip { position: absolute; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid rgba(242,244,247,0.2); background: rgba(7,9,15,0.8); backdrop-filter: blur(8px); }
  .strip a { display: flex; flex-direction: column; gap: 6px; padding: 18px 28px; border-right: 1px solid var(--line); border-top: 3px solid transparent; color: var(--text); }
  .strip a:last-child { border-right: 0; }
  .strip a.featured { border-top-color: var(--acc); }
  .strip a.member { position: relative; background: rgba(var(--acc-rgb), .12); border-top-color: var(--acc); }
  /* the star seal hangs off the top right corner of the window, above the title line, so it never sits on the words at 1024 */
  .strip a.member .save-star { position: absolute; right: 10px; top: -12px; transform: rotate(4deg); animation: seal-pulse 2.4s ease-in-out infinite; font-size: 9px; padding: 4px 8px 4px 6px; white-space: nowrap; }
  .strip a:hover { background: rgba(var(--acc-rgb),0.08); }
  .strip .t { font-family: var(--display); font-size: 26px; line-height: 1; }
  .strip .p { display: flex; align-items: baseline; gap: 6px; }
  .strip .p .price { font-size: 30px; }
  .strip .go { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--acc); }
  .offer { margin: 40px var(--gutter) 0; max-width: min(1144px, calc(100% - 2 * var(--gutter))); margin-left: auto; margin-right: auto; }
  .offer .big { font-size: 48px; }
  .offer-free .big { font-size: 40px; }
  .offer-free .big .m { display: none; }
  .offer p { font-size: 17px; }
  .section, .block, .divider { padding-left: 0; padding-right: 0; }
  .section > *, .block > .inner, .block > .tech-wrap { max-width: min(1144px, calc(100% - 2 * var(--gutter))); margin-left: auto; margin-right: auto; } /* 2026-09-24: below 1240px the 1144px cap was wider than the screen minus gutters, so sections ran edge to edge at 1024 */
  .divider { max-width: 1144px; margin-left: auto; margin-right: auto; }
  .block { padding: 56px var(--gutter); margin-top: 32px; }
  .block h2 { font-size: 64px; }
  .page-hero { min-height: 600px; }
  .page-hero .inner { padding-bottom: 48px; }
  .page-hero h1 { font-size: 120px; }
  .page-hero .row-cta { display: flex; gap: 12px; }
  .row-title { font-size: 40px; }
  .row-price .price { font-size: 40px; }
  .footer { padding: 48px var(--gutter) 32px; }
  .footer > * { max-width: 1144px; margin-left: auto; margin-right: auto; width: 100%; }
}
@media (min-width: 1024px) and (max-width: 1240px) { .hero-copy h1 { font-size: 135px; } }
@media (min-width: 1024px) and (max-width: 1419px) { .header-phone { display: none; } /* 2026-09-25: the bigger badge needs the room; phone shows from 1420 */ .nav { gap: 16px; } .nav a { font-size: 12px; letter-spacing: .12em; } .site-header .wrap { gap: 16px; } }

.nav a, .header-phone { white-space: nowrap; }
@media (max-width: 1023px) { .strip { display: none; } .hero-right { display: contents; } .hero-copy .btn-row { display: none; } /* phones: the sticky bottom bar is the one Book + Call */ }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* laptops 1024 to 1439 wide: the hero is short (720 to 900px) and the bottom-anchored right column rises into the 40% zone, so the Distance readout moves up beside the ball and its trail is redrawn */
@media (min-width: 1024px) and (max-width: 1439px) {
  .rd-di { left: 56%; top: 26%; --dx: -40px; --dy: 170px; }
  .trails-desktop .trail-di { display: none; }
  .trails-desktop .trail-alt { display: block; }
}

/* small laptops and iPad landscape, 1024 to 1180 wide: tighter gutters and nav so the header fits, smaller headline so the two-column hero fits */
@media (min-width: 1024px) and (max-width: 1180px) {
  :root { --gutter: 24px; }
  .nav { gap: 8px; } .nav a { font-size: 11px; letter-spacing: 0.08em; } /* 2026-09-26: Academy nav item made the 8-item list overflow the header at 1024 with the old 12px gap */
  .ball { width: 80px; height: 80px; margin-top: 20px; }
  .hero-copy h1 { font-size: 100px; }
}

/* Book a cage: once the counts list has landed (last line at 3.3s + 0.5s), a light sweeps through the button twice in 1.5s: bright left to right to catch the eye, then subdued right to left, pulling it back to the side. Desktop: the hero button. Phones: the bottom bar button. */
.hero-copy .btn-row .btn-acc, .bottom-bar .btn-acc { position: relative; overflow: hidden; }
.hero-copy .btn-row .btn-acc::before, .bottom-bar .btn-acc::before { content: ""; position: absolute; top: -30%; left: -45%; width: 38%; height: 160%; transform: skewX(-22deg); background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.9) 50%, rgba(255,255,255,0) 100%); opacity: 0; pointer-events: none; }
.play .hero-copy .btn-row .btn-acc::before, body.play .bottom-bar .btn-acc::before { animation: cta-flash 1.5s ease-in-out 3.8s 1 both; }
@keyframes cta-flash {
  0%   { left: -45%; opacity: 0; }
  6%   { opacity: .95; }
  40%  { left: 110%; opacity: .95; }
  46%  { left: 110%; opacity: 0; }
  54%  { left: 110%; opacity: .4; }
  94%  { left: -45%; opacity: .4; }
  100% { left: -45%; opacity: 0; }
}

/* ---------- academy (2026-09-24) ---------- */
.h-sub { font-size: 26px; margin-bottom: 12px; }
.split { display: grid; grid-template-columns: 1fr; gap: 28px; }
.ticks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.ticks li { position: relative; padding-left: 26px; font-size: 16px; color: var(--text); }
.ticks li::before { content: ""; position: absolute; left: 0; top: 5px; width: 12px; height: 7px; border-left: 2.5px solid var(--acc); border-bottom: 2.5px solid var(--acc); transform: rotate(-45deg); }
.table.compare { table-layout: fixed; }
.table.compare th, .table.compare td { padding: 12px 6px; }
.table.compare th:first-child, .table.compare td:first-child { width: 44%; padding-left: 0; }
.table.compare th { font-size: 12px; color: var(--text); text-align: center; }
.table.compare th.acad { color: var(--acc); }
.table.compare td { font-size: 14px; color: var(--muted); }
.table.compare td.num { font-size: 20px; text-align: center; color: var(--text); white-space: normal; }
.table.compare td.num.dim { font-family: var(--body); font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.table.compare td.acad, .table.compare th.acad { background: rgba(var(--acc-rgb), .08); }
.table.compare td.num.acad { font-family: var(--body); font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--acc-hi); }
.table.compare tr.total td { color: var(--text); border-top: 2px solid rgba(var(--acc-rgb), .5); border-bottom: 0; font-weight: 700; }
.table.compare tr.total td.num { font-family: var(--display); font-size: 30px; letter-spacing: 0; text-transform: none; }
.table.compare tr.total td.num.acad { color: var(--acc); text-shadow: 0 0 14px rgba(var(--acc-rgb), .45); }
.save-bar { display: flex; align-items: baseline; justify-content: center; flex-wrap: wrap; gap: 8px 10px; margin-top: 12px; padding: 14px 16px; background: var(--acc); color: var(--ink); box-shadow: 0 0 0 1px rgba(255,255,255,.3), 0 0 24px rgba(var(--acc-rgb), .45); cursor: pointer; transition: background .2s, transform .2s; }
.save-bar:hover { background: var(--acc-hi); color: var(--ink); transform: translateY(-2px); }
.save-bar .label { color: var(--ink); font-size: 12px; }
.save-bar .paren { font-weight: 800; letter-spacing: .12em; }
.save-bar svg { align-self: center; flex: none; }
.save-bar .price { color: var(--ink); font-size: 40px; }
.sched { display: grid; grid-template-columns: 1fr; gap: 10px; }
.day { display: flex; flex-direction: column; gap: 4px; padding: 16px; background: var(--panel); border: 1px solid var(--line); border-top: 3px solid var(--acc); }
.day .d { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--acc); }
.day .t { font-size: 14px; color: var(--muted); }
.day h3 { font-size: 26px; margin-top: 6px; line-height: 1; }
.day .sub { font-size: 14px; color: var(--muted); }
.day.tball { border-top-color: rgba(var(--acc-rgb), .35); }
.coach .photo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 2px solid var(--acc); box-shadow: 0 0 0 3px rgba(var(--acc-rgb), .18); display: block; }
.coach ul { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 4px; }
.coach li { font-size: 14px; color: var(--muted); }
.acad-coaches { grid-template-columns: 1fr; }
.card-wide .btn { align-self: flex-start; margin-top: 4px; }
.offer-academy { position: relative; flex-direction: column; align-items: flex-start; gap: 10px; margin-top: 12px; padding: 22px 18px 20px; border-color: var(--acc); background: linear-gradient(135deg, rgba(var(--acc-rgb), .16), rgba(var(--acc-rgb), .04)); box-shadow: 0 0 0 1px rgba(var(--acc-rgb), .2), 0 0 32px rgba(var(--acc-rgb), .18); }
.offer-academy .offer-tag { position: absolute; top: -11px; left: 16px; padding: 4px 10px; background: var(--acc); color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; box-shadow: 0 0 0 1px rgba(255,255,255,.3), 0 0 14px rgba(var(--acc-rgb), .45); }
.offer-academy .big { font-size: 34px; line-height: .95; text-transform: uppercase; }
.offer-academy p { flex: none; max-width: 46ch; color: var(--muted); }
.offer-academy .offer-price { display: flex; align-items: baseline; gap: 8px; }
.offer-academy .offer-price .price { font-size: 40px; }
.save-new { padding: 4px 9px; font-size: 10px; letter-spacing: .14em; }
.row-new { background: linear-gradient(90deg, rgba(var(--acc-rgb), .12), rgba(var(--acc-rgb), .03)); border-left: 3px solid var(--acc); }
.row-new .row-price { align-items: flex-end; gap: 6px; }
@media (min-width: 768px) {
  .sched { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .acad-coaches { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offer-academy { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 18px 28px; padding: 26px 28px 24px; }
  .offer-academy .big { font-size: 40px; }
  .offer-academy p { flex: 1 1 320px; }
  .offer-academy a { margin-left: auto; }
}
@media (min-width: 1024px) {
  .split { grid-template-columns: 1fr 1fr; gap: 48px; }
  .sched { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .acad-coaches { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .offer-academy { margin-top: 16px; }
}
/* home 03: lessons + coaches in one block (Cris, 2026-09-24) */
.lesson-home { display: flex; flex-direction: column; gap: 18px; }
.lesson-facts { display: flex; flex-direction: column; gap: 8px; max-width: 640px; }
.lesson-facts .price-line { display: flex; align-items: baseline; gap: 8px; }
.lesson-facts .price { font-size: 44px; }
.lesson-facts p { font-size: 16px; color: var(--muted); }
.coach-strip .chip .photo { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 1.5px solid var(--acc); flex: none; }
.lesson-home .btn-row .btn { justify-content: space-between; }
@media (min-width: 1024px) { .lesson-home .btn-row .btn { min-width: 220px; } }
/* product page (2026-09-24): store data in the site's look; Add to cart hands off to WooCommerce */
.product-page { padding-top: 24px; }
.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.crumbs .sep { margin: 0 8px; opacity: .5; }
.product-wrap { display: grid; grid-template-columns: 1fr; gap: 24px; }
.gallery .pic { position: relative; aspect-ratio: 1; background: #fff; padding: 20px; border: 1px solid var(--line); }
.gallery .pic::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 60% at 50% 100%, rgba(var(--acc-rgb), .28), rgba(var(--acc-rgb), 0) 70%); }
.gallery .pic img { position: relative; width: 100%; height: 100%; object-fit: contain; }
.thumbs { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.thumbs button { width: 64px; height: 64px; padding: 6px; background: #fff; border: 1px solid var(--line); cursor: pointer; }
.thumbs button.on { border-color: var(--acc); box-shadow: 0 0 0 1px var(--acc); }
.thumbs img { width: 100%; height: 100%; object-fit: contain; }
.details { display: flex; flex-direction: column; gap: 12px; }
.details h1 { font-size: clamp(34px, 6vw, 52px); line-height: 1; }
.details .price-line { display: flex; align-items: baseline; gap: 12px; }
.details .price { font-size: 44px; text-shadow: 0 0 14px rgba(var(--acc-rgb), .45); }
.details .was { font-size: 18px; color: var(--muted); text-decoration: line-through; }
.stock { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--acc-hi); }
.stock.out { color: var(--muted); }
.options { display: flex; flex-direction: column; gap: 6px; max-width: 320px; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.options select { width: 100%; padding: 12px 14px; font: 500 16px var(--body); color: var(--text); background: var(--panel); border: 1px solid var(--line); border-radius: 0; }
.details .btn-row { margin-top: 6px; }
.desc { margin-top: 10px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 16px; color: var(--muted); line-height: 1.55; }
.desc p { margin: 0 0 12px; } .desc ul { margin: 0 0 12px; padding-left: 20px; } .desc h2, .desc h3 { font-size: 24px; color: var(--text); margin: 14px 0 6px; }
.desc img { max-width: 100%; height: auto; }
.product-state { padding: 40px 0; color: var(--muted); }
@media (min-width: 1024px) { .product-wrap { grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: start; } .gallery { position: sticky; top: calc(var(--header-h) + 16px); } }
.related { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
.related h2 { font-size: 34px; margin-bottom: 16px; }
.related h2::after { content: ""; display: block; width: 64px; height: 4px; margin-top: 12px; background: var(--acc); }
/* academy ticket in the hero (Cris, 2026-09-25): sits in the text block above the headline. Reads as a button: idle glow pulse, lift and brighten on hover, Enroll is a real button (Cris, 2026-09-25). No price on it; the Academy page carries that. */
.ticket { position: relative; margin-top: 14px; display: inline-grid; grid-template-columns: auto auto; grid-template-rows: auto auto; column-gap: 16px; row-gap: 6px; align-items: center; margin-bottom: 18px; padding: 20px 14px 12px 12px; border: 1px solid var(--acc); background: rgba(7,9,15,.72); color: var(--text); backdrop-filter: blur(6px); box-shadow: 0 0 0 1px rgba(var(--acc-rgb), .15), 0 10px 30px rgba(0,0,0,.45), 0 0 26px rgba(var(--acc-rgb), .22); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease; animation: ticket-pulse 2.6s ease-in-out infinite; }
@keyframes ticket-pulse { 0%, 100% { box-shadow: 0 0 0 1px rgba(var(--acc-rgb), .15), 0 10px 30px rgba(0,0,0,.45), 0 0 22px rgba(var(--acc-rgb), .2); } 50% { box-shadow: 0 0 0 1px rgba(var(--acc-rgb), .35), 0 10px 30px rgba(0,0,0,.45), 0 0 40px rgba(var(--acc-rgb), .5); } }
.ticket:hover, .ticket:focus-visible { color: var(--text); border-color: var(--acc-hi); background: rgba(14,16,24,.9); transform: translateY(-3px); animation: none; box-shadow: 0 0 0 2px rgba(var(--acc-rgb), .6), 0 16px 36px rgba(0,0,0,.55), 0 0 48px rgba(var(--acc-rgb), .65); outline: none; }
.ticket[hidden] { display: none; }
.ticket .offer-tag { position: absolute; top: -11px; left: 12px; padding: 4px 10px; background: var(--acc); color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; white-space: nowrap; box-shadow: 0 0 0 1px rgba(255,255,255,.3), 0 0 14px rgba(var(--acc-rgb), .45); }
.ticket .tk-label { grid-column: 1; grid-row: 1; align-self: end; font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--acc); }
.ticket .tk-date { grid-column: 1; grid-row: 2; font-family: var(--display); font-size: 34px; line-height: .9; color: var(--text); }
.ticket .tk-sub { grid-column: 2; grid-row: 1; align-self: end; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.ticket .tk-days { color: var(--acc-hi); font-weight: 800; }
.ticket .tk-go { grid-column: 2; grid-row: 2; justify-self: start; display: inline-flex; align-items: center; gap: 8px; min-height: 36px; padding: 0 14px; background: var(--acc); color: var(--ink); font-size: 13px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; box-shadow: 0 0 0 1px rgba(255,255,255,.25); transition: background-color .2s ease; }
.ticket .tk-arrow { display: inline-block; transition: transform .2s ease; }
.ticket:hover .tk-go, .ticket:focus-visible .tk-go { background: var(--acc-hi); }
.ticket:hover .tk-arrow, .ticket:focus-visible .tk-arrow { transform: translateX(4px); }
@media (prefers-reduced-motion: reduce) { .ticket { animation: none; transition: none; } .ticket:hover { transform: none; } }
@media (min-width: 1024px) {
  .ticket { margin-bottom: 22px; padding: 24px 18px 14px 14px; column-gap: 22px; }
  .ticket .tk-date { font-size: 40px; }
  .ticket .tk-sub { font-size: 12px; }
  .ticket .tk-go { min-height: 42px; padding: 0 18px; font-size: 14px; }
}
/* tech tiles: logos at one size, a line under each */
.tech-tiles { display: flex; flex-direction: column; gap: 10px; }
.tile { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px; background: rgba(7,9,15,.45); border: 1px solid var(--line); } /* phones: logo on top, the line under it */
.tile-logo { flex: none; width: 132px; height: 44px; display: flex; align-items: center; justify-content: flex-start; }
.tile-logo img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
/* dark logos (ProBatter is black, FungoMan dark red) sit on a light panel, brighter on the left (Cris, 2026-09-25); HitTrax is white and stays on the dark tile */
.tile-logo.light { background: linear-gradient(100deg, #FBF9F4 0%, #E9E3D6 100%); padding: 6px 10px; box-sizing: border-box; box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); }
.tile h3 { font-size: 22px; line-height: 1; margin-bottom: 4px; }
.tile p { font-size: 14px; color: var(--muted); max-width: none; }
@media (min-width: 1024px) {
  .tech-wrap { grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .tile { flex-direction: row; align-items: center; padding: 18px 20px; gap: 20px; } /* desktop: logo left, the line beside it */
  .tile-logo { width: 150px; height: 48px; justify-content: center; }
  .tile p { font-size: 15px; }
}
/* price inside Book buttons (Cris, 2026-09-25: bolder and bigger) */
.btn-sub { font-weight: 800; font-size: 1.15em; letter-spacing: .1em; text-transform: uppercase; opacity: 1; } /* same case and tracking as the button text so it reads as one font (Cris, 2026-09-25) */
.btn-acc .btn-sub { color: var(--ink); }
/* membership seal: pulses in colour, not size (Cris, 2026-09-25) */
@keyframes seal-pulse { 0%, 100% { background: var(--acc); box-shadow: 0 0 0 1px rgba(255,255,255,.3), 0 0 14px rgba(var(--acc-rgb), .45); } 50% { background: var(--acc-hi); box-shadow: 0 0 0 1px rgba(255,255,255,.5), 0 0 26px rgba(var(--acc-rgb), .9); } }
@media (prefers-reduced-motion: reduce) { .strip a.member .save-star { animation: none; } }
/* shop and product pages carry no bottom bar on phones (Cris, 2026-09-25) */
body.no-bar { padding-bottom: 0; }
