/* =========================================================
   ATHLETIX — Redesign stylesheet
   ========================================================= */

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #161616;
  --fg: #f5f5f5;
  --muted: #9a9a9a;
  --line: #222222;
  --accent: #00b8ef;
  --accent-2: #33d4ff;
  --radius: 14px;
  --container: 1600px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: .5px;
  text-transform: uppercase;
  line-height: 1;
}

h1 { font-size: clamp(3rem, 9vw, 7.5rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: 1.4rem; letter-spacing: .4px; }

.accent { color: var(--accent); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow.light { color: var(--accent-2); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.btn-lg { padding: 18px 34px; font-size: .95rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: #fff;
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap .25s var(--ease);
}
.arrow-link:hover { gap: 14px; }

/* Announcement bar */
.announce {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: .72rem;
  letter-spacing: 3px;
  font-weight: 700;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 8, 0.65);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.logo img {
  height: 55px;
  width: auto;
}
.nav {
  display: flex;
  gap: 34px;
}
.nav a {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ddd;
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--accent);
  transition: width .3s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }

/* Dropdown */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
/* Invisible bridge area to prevent hover from breaking */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 35px; 
}
.dropdown .dropbtn {
  cursor: pointer;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 24px);
  left: 0;
  background-color: #000;
  min-width: 180px;
  border-top: 2px solid var(--accent);
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.8);
  z-index: 100;
  padding: 10px 0;
}
.dropdown-content a {
  color: #fff;
  padding: 12px 20px;
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.dropdown-content a::after {
  display: none; /* remove hover line for dropdown items */
}
.dropdown-content a:hover {
  color: var(--accent);
  background-color: #111;
}
.dropdown:hover .dropdown-content {
  display: block;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-cta .btn {
  border-radius: 4px;
  background: #00b8ef;
  color: #fff;
  padding: 12px 24px;
  font-size: .85rem;
}

.nav-toggle, .side-toggle {
  display: none;
  background: none;
  border: 0;
  width: 34px;
  height: 34px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span, .side-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: .3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.side-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.side-toggle span {
  width: 30px;
}
.side-toggle span:nth-child(2) { width: 30px; margin-top: 6px; }
.side-toggle span:nth-child(3) { display: none; }
.side-toggle:hover span { background: var(--accent); }

/* Side Panel */
.side-panel {
  position: fixed;
  top: 0; right: 0;
  width: 420px;
  max-width: 90vw;
  height: 100vh;
  background: #0a0a0a;
  border-left: 1px solid var(--line);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .5s var(--ease);
  overflow-y: auto;
  padding: 40px 44px 60px;
}
.side-panel.open { transform: translateX(0); }

.side-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
  z-index: 150;
}
.side-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.side-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  transition: color .2s var(--ease), transform .3s var(--ease);
}
.side-close:hover {
  color: var(--accent);
  transform: rotate(90deg);
}

.side-inner {
  padding-top: 20px;
}
.side-logo img {
  height: 90px;
  margin-bottom: 28px;
}
.side-about {
  color: #d0d0d0;
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.side-address, .side-phone {
  color: #fff;
  font-size: .95rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: .5px;
}
.side-phone { border-bottom: 0; margin-bottom: 20px; }
.side-phone a { color: #fff; }
.side-phone a:hover { color: var(--accent); }
.side-address .pin, .side-phone .pin {
  color: var(--accent);
  margin-right: 6px;
}

.side-heading {
  font-family: 'Anton', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin: 24px 0 16px;
  font-weight: 400;
}

.side-hours {
  list-style: none;
  margin-bottom: 16px;
}
.side-hours li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .92rem;
}
.side-hours li:last-child { border-bottom: 0; }
.side-hours span {
  flex: 0 0 50px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff;
  font-size: .78rem;
}
.side-hours strong {
  color: #bbb;
  font-weight: 400;
}

.side-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.side-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  transition: all .25s var(--ease);
}
.side-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* =============================================
   HERO — clean two-column (text · visual)
   ============================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  background: #050505;
  padding: 80px 0 0;
  display: flex;
  flex-direction: column;
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 85%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: float-glow 16s ease-in-out infinite;
}
.glow-1 {
  width: 520px; height: 520px;
  background: var(--accent);
  top: -150px; left: -100px;
  opacity: .4;
}
.glow-2 {
  width: 620px; height: 620px;
  background: #003a66;
  bottom: -200px; right: -150px;
  animation-delay: -8s;
  opacity: .55;
}
@keyframes float-glow {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(50px,-30px) scale(1.1); }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-particles span {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  opacity: .6;
  animation: particle-float 14s linear infinite;
}
.hero-particles span:nth-child(1)  { left: 8%;  bottom: -5%; animation-duration: 18s; animation-delay: 0s; }
.hero-particles span:nth-child(2)  { left: 18%; bottom: -5%; animation-duration: 22s; animation-delay: -3s; width: 3px; height: 3px; }
.hero-particles span:nth-child(3)  { left: 28%; bottom: -5%; animation-duration: 16s; animation-delay: -6s; }
.hero-particles span:nth-child(4)  { left: 36%; bottom: -5%; animation-duration: 20s; animation-delay: -9s; width: 5px; height: 5px; }
.hero-particles span:nth-child(5)  { left: 47%; bottom: -5%; animation-duration: 24s; animation-delay: -2s; }
.hero-particles span:nth-child(6)  { left: 55%; bottom: -5%; animation-duration: 19s; animation-delay: -5s; width: 3px; height: 3px; }
.hero-particles span:nth-child(7)  { left: 64%; bottom: -5%; animation-duration: 17s; animation-delay: -8s; }
.hero-particles span:nth-child(8)  { left: 72%; bottom: -5%; animation-duration: 21s; animation-delay: -1s; width: 5px; height: 5px; }
.hero-particles span:nth-child(9)  { left: 82%; bottom: -5%; animation-duration: 23s; animation-delay: -4s; }
.hero-particles span:nth-child(10) { left: 90%; bottom: -5%; animation-duration: 18s; animation-delay: -7s; width: 3px; height: 3px; }
.hero-particles span:nth-child(11) { left: 40%; bottom: -5%; animation-duration: 25s; animation-delay: -10s; }
.hero-particles span:nth-child(12) { left: 60%; bottom: -5%; animation-duration: 20s; animation-delay: -12s; width: 4px; height: 4px; }
@keyframes particle-float {
  0%   { transform: translateY(0) translateX(0);  opacity: 0; }
  10%  { opacity: .6; }
  50%  { transform: translateY(-55vh) translateX(20px); }
  90%  { opacity: .4; }
  100% { transform: translateY(-110vh) translateX(-10px); opacity: 0; }
}

/* Generic fade-up entrance */
.anim-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up .9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ==== Two-container split ==== */
.hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  align-items: center;
  flex: 1;
  padding-top: 20px;
  padding-bottom: 60px;
}

/* ==== LEFT COLUMN ==== */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(0,184,239,.08);
  border: 1px solid rgba(0,184,239,.35);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--accent);
  backdrop-filter: blur(8px);
  align-self: flex-start;
}
.hero-pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

/* Title — single line with reveal animation */
.hero-title {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  gap: .3em;
  align-items: baseline;
  overflow: hidden;
  padding-bottom: .1em;
}
.t-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%) rotate(4deg);
  animation: word-up .9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes word-up {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}
.accent-word {
  color: var(--accent);
  display: inline-block;
  position: relative;
}
.accent-word::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: under-grow 1s var(--ease) 1s forwards;
}
@keyframes under-grow { to { transform: scaleX(1); } }
.rotator-inline {
  position: relative;
  display: inline-block;
  min-width: 5.5em;
  height: 1em;
  vertical-align: baseline;
  overflow: hidden;
  color: var(--accent);
  text-shadow: 0 0 40px rgba(0,184,239,.35);
}
.rotator-inline .r-word {
  position: absolute;
  left: 0; top: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: transform .6s var(--ease), opacity .5s var(--ease);
  white-space: nowrap;
}
.rotator-inline .r-word.active {
  opacity: 1;
  transform: translateY(0);
}
.rotator-inline .r-word.leaving {
  opacity: 0;
  transform: translateY(-100%);
}

/* Lede */
.hero-lede {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #c8c8c8;
  max-width: 560px;
  margin: 0;
}

/* CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Meta stats */
.hero-meta {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 24px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-val {
  display: flex;
  align-items: baseline;
}
.hero-meta strong {
  font-family: 'Anton', sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  background: linear-gradient(135deg, #fff 30%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-meta .plus {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  color: var(--accent);
  margin-left: 2px;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
}
.hero-meta .divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

/* ==== RIGHT COLUMN ==== */
.hero-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 5/6;
  min-height: 620px;
  max-height: 820px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06);
  opacity: 0;
  transform: translateY(40px) scale(.96);
  animation: media-in 1.2s var(--ease) .3s forwards;
  transform-style: preserve-3d;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
@keyframes media-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-media.tilt {
  transition: transform .15s ease-out;
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken-burns 14s ease-in-out infinite alternate;
}
@keyframes ken-burns {
  0%   { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.08) translate(-1%, -2%); }
}

/* Corner brackets */
.corner {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 2px solid var(--accent);
  z-index: 3;
  opacity: 0;
  animation: corner-in .6s var(--ease) forwards;
}
.c-tl { top: 14px; left: 14px;  border-right: 0; border-bottom: 0; animation-delay: 1s; }
.c-tr { top: 14px; right: 14px; border-left: 0;  border-bottom: 0; animation-delay: 1.15s; }
.c-bl { bottom: 14px; left: 14px;  border-right: 0; border-top: 0; animation-delay: 1.3s; }
.c-br { bottom: 14px; right: 14px; border-left: 0;  border-top: 0; animation-delay: 1.45s; }
@keyframes corner-in {
  0%   { opacity: 0; transform: scale(.4); }
  100% { opacity: 1; transform: scale(1); }
}

/* Shine sweep */
.media-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(115deg,
    transparent 35%,
    rgba(255,255,255,.08) 45%,
    rgba(0,184,239,.2) 50%,
    rgba(255,255,255,.08) 55%,
    transparent 65%);
  transform: translateX(-100%);
  animation: shine 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shine {
  0%, 30%  { transform: translateX(-100%); }
  65%      { transform: translateX(100%); }
  100%     { transform: translateX(100%); }
}

/* Scanline */
.media-scan {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  box-shadow: 0 0 16px var(--accent);
  opacity: .7;
  top: 0;
  z-index: 2;
  animation: scan 6s linear infinite;
  pointer-events: none;
}
@keyframes scan {
  0%   { top: 0;   opacity: 0; }
  10%  { opacity: .7; }
  90%  { opacity: .7; }
  100% { top: 100%; opacity: 0; }
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 35%, transparent 70%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
}

/* Live badge on media */
.media-badge {
  position: absolute;
  top: 22px; left: 22px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  opacity: 0;
  transform: translateY(-10px);
  animation: badge-slide .6s var(--ease) 1.6s forwards, badge-glow 3s ease-in-out 2.2s infinite;
}
@keyframes badge-slide {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes badge-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,59,59,0); }
  50%     { box-shadow: 0 0 20px 4px rgba(255,59,59,.3); }
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff3b3b;
  box-shadow: 0 0 10px #ff3b3b;
  animation: pulse-dot 1.4s ease-in-out infinite;
}

/* Caption card on media */
.media-caption {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(10,10,10,.7);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  opacity: 0;
  transform: translateY(20px);
  animation: caption-up .7s var(--ease) 1.8s forwards;
}
@keyframes caption-up {
  to { opacity: 1; transform: translateY(0); }
}
.caption-avatars img {
  animation: avatar-pop .6s var(--ease) backwards;
}
.caption-avatars img:nth-child(1) { animation-delay: 2.0s; }
.caption-avatars img:nth-child(2) { animation-delay: 2.15s; }
.caption-avatars img:nth-child(3) { animation-delay: 2.3s; }
@keyframes avatar-pop {
  0%   { opacity: 0; transform: scale(0); }
  70%  { transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1); }
}
.caption-avatars {
  display: flex;
}
.caption-avatars img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0a0a0a;
  margin-left: -10px;
}
.caption-avatars img:first-child { margin-left: 0; }
.caption-text strong {
  display: block;
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
}
.caption-text span {
  color: #a0a0a0;
  font-size: .78rem;
  letter-spacing: .5px;
}

/* Floating rating tag */
.hero-tag {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 5;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0,184,239,.4);
  opacity: 0;
  transform: scale(0) rotate(-90deg);
  animation: tag-in .8s var(--ease) 1.4s forwards, float-tag 5s ease-in-out 2.2s infinite;
}
@keyframes tag-in {
  0%   { opacity: 0; transform: scale(0) rotate(-90deg); }
  70%  { transform: scale(1.15) rotate(10deg); }
  100% { opacity: 1; transform: scale(1) rotate(-4deg); }
}
@keyframes float-tag {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50%     { transform: translateY(-10px) rotate(4deg); }
}
.tag-ring {
  position: absolute;
  inset: -10px;
  border: 2px dashed rgba(255,255,255,.5);
  border-radius: 50%;
  animation: spin 18s linear infinite;
  pointer-events: none;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-tag div {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.hero-tag strong {
  font-family: 'Anton', sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
}
.hero-tag .stars {
  font-size: .65rem;
  letter-spacing: 2px;
  margin-top: 2px;
}
.hero-tag p {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
  line-height: 1.3;
  opacity: .95;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #888;
  opacity: 0;
  animation: fade-in 1s var(--ease) 2s forwards;
}
@keyframes fade-in { to { opacity: 1; } }
.sc-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  animation: sc-drop 2s ease-in-out infinite;
}
@keyframes sc-drop {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.sc-text {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .scroll-cue { display: none; }
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.4); opacity: .6; }
}

/* (legacy title styles — no longer used) */

/* Lede */
.hero-lede {
  font-size: 1.15rem;
  color: #c8c8c8;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-ctas .btn-primary {
  box-shadow: 0 0 0 0 rgba(0,184,239,.6);
  animation: btn-pulse 2.5s ease-in-out infinite;
}
@keyframes btn-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,184,239,.5); }
  50%     { box-shadow: 0 0 0 12px rgba(0,184,239,0); }
}
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: gap .25s var(--ease);
}
.btn-play:hover { gap: 20px; color: var(--accent); }
.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  font-size: .7rem;
  color: var(--accent);
  transition: all .3s var(--ease);
}
.btn-play:hover .play-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: scale(1.1);
}

/* Meta row */
/* Removed duplicate hero-meta styles */

/* (legacy collage styles — no longer used) */

/* Marquee */
.hero-marquee {
  position: relative;
  z-index: 2;
  padding: 22px 0;
  background: #000;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 50px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  letter-spacing: 4px;
  color: #fff;
  width: max-content;
}
.marquee-track span { flex-shrink: 0; }
.marquee-track .star {
  color: var(--accent);
  font-size: .7em;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Responsive hero */
@media (max-width: 1024px) {
  .hero { min-height: auto; padding-top: 60px; }
  .hero-split { grid-template-columns: 1fr; gap: 50px; padding-bottom: 40px; }
  .hero-right { justify-content: center; }
  .hero-media { max-width: 640px; aspect-ratio: 4/5; min-height: auto; }
  .hero-tag { width: 120px; height: 120px; }
}
@media (max-width: 720px) {
  .hero { padding-top: 40px; }
  .hero-split { gap: 40px; }
  .hero-title {
    font-size: clamp(1.8rem, 7.5vw, 2.6rem);
    white-space: normal;
    flex-wrap: wrap;
  }
  .hero-meta { gap: 14px; }
  .hero-meta strong { font-size: 1.7rem; }
  .hero-meta .divider { display: none; }
  .hero-ctas .btn { flex: 1; min-width: 45%; }
  .hero-tag { width: 100px; height: 100px; top: -15px; right: -10px; padding: 10px; }
  .hero-tag strong { font-size: 1.6rem; }
  .hero-tag p { font-size: .55rem; }
  .media-caption { padding: 10px 14px; }
  .caption-avatars img { width: 32px; height: 32px; }
  .marquee-track { font-size: 1.3rem; gap: 26px; letter-spacing: 2px; }
}

/* Section head */
.section-head {
  max-width: 780px;
  margin-bottom: 44px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-sub {
  color: var(--muted);
  margin-top: 18px;
  font-size: 1.05rem;
}

/* Trusted By */
.trusted-by {
  padding: 78px 0;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.trusted-title {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 46px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
.trusted-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}
.trusted-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.trusted-track {
  display: flex;
  width: max-content;
  animation: trustedScroll 40s linear infinite;
}
.trusted-marquee:hover .trusted-track {
  animation-play-state: paused;
}
.trusted-logos {
  display: flex;
  flex-wrap: nowrap;
  flex-shrink: 0;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0 12.5px;
  list-style: none;
}
.trusted-logos li { flex-shrink: 0; }
.trusted-logos img {
  height: 90px;
  width: 200px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  display: block;
}
.trusted-logos img:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 184, 239, 0.3);
  background: #fff;
}
@keyframes trustedScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trusted-track { animation: none; }
}

/* Coaching Benefits */
.coaching-benefits {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.coaching-benefits::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 360px;
  background: radial-gradient(circle, rgba(0, 184, 239, 0.18) 0%, transparent 65%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.coaching-benefits .container { position: relative; z-index: 1; }
.coaching-benefits .section-head { margin-bottom: 56px; }
.coaching-benefits h2 {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 12px 0 14px;
}
.coaching-benefits .section-sub {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.benefit-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 28px 30px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(0, 184, 239, 0.12) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
  z-index: -1;
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 184, 239, 0.35);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}
.benefit-card:hover::after { opacity: 1; }
.benefit-card:hover .benefit-icon {
  color: var(--accent-2);
  border-color: rgba(0, 184, 239, 0.5);
  transform: rotate(-4deg) scale(1.05);
}
.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0, 184, 239, 0.08);
  border: 1px solid rgba(0, 184, 239, 0.25);
  color: var(--accent);
  margin-bottom: 22px;
  transition: transform 0.35s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.benefit-icon svg {
  width: 26px;
  height: 26px;
}
.benefit-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin: 0 0 10px;
  color: #fff;
}
.benefit-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.66);
  margin: 0;
}
@media (max-width: 980px) {
  .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .coaching-benefits { padding: 72px 0; }
  .coaching-benefits h2 { font-size: 2.3rem; }
  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
  .benefit-card { padding: 26px 22px 24px; }
}

/* Testimonials / Videos */
.testimonials {
  padding: 100px 0;
  background: radial-gradient(circle at center, var(--bg-2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%; right: -50%; bottom: -50%;
  background: radial-gradient(circle at 50% 50%, rgba(0,184,239,0.05) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.testimonials .container {
  position: relative;
  z-index: 1;
}
.eyebrow.center {
  text-align: center;
  margin-bottom: 10px;
}
.testimonials .section-heading {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 3.5rem;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #fff 40%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}
.section-heading.center {
  text-align: center;
}
.testimonials-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 44px auto;
  line-height: 1.5;
}

/* Custom Video Slider */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0; /* Extra padding so hover shadows don't clip */
}
.slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.video-card {
  flex: 0 0 calc((100% - 60px) / 3); /* Shows exactly 3 items when gap is 30px */
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  background: #111;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s var(--ease);
  transform-style: preserve-3d;
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 184, 239, 0.5);
  box-shadow: 0 15px 30px rgba(0, 184, 239, 0.2);
}
.card-frame {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 20px rgba(0, 184, 239, 0);
  transition: all 0.4s var(--ease);
  pointer-events: none;
  z-index: 2;
}
.video-card:hover .card-frame {
  box-shadow: inset 0 0 20px rgba(0, 184, 239, 0.2);
}
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

/* Play Button Overlay */
.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 184, 239, 0.85);
  border: none;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  color: white;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.play-overlay svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}
.video-card:hover .play-overlay {
  transform: translate(-50%, -50%) scale(1.15);
  background: #00b8ef;
}
.video-card.is-playing .play-overlay,
.video-card.is-playing .card-frame {
  opacity: 0;
}
.video-card.is-playing:hover {
  transform: translateY(0) scale(1);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Slider Buttons */
.slider-controls {
  position: absolute;
  top: 50%;
  left: -20px;
  width: calc(100% + 40px);
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* Let clicks pass through to slider unless on buttons */
  z-index: 10;
}
.slider-btn {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s var(--ease);
  pointer-events: auto; /* Re-enable clicks for the buttons */
}
.slider-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 184, 239, 0.4);
}

.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.slider-dot:hover {
  border-color: rgba(0, 184, 239, 0.8);
  background: rgba(0, 184, 239, 0.45);
}

.slider-dot.active {
  width: 26px;
  border-radius: 999px;
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 10px rgba(0, 184, 239, 0.8);
}

/* Manifesto / Our Philosophy */
.manifesto {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
  overflow: hidden;
  isolation: isolate;
}
.manifesto-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.manifesto-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.manifesto-glow.glow-a {
  width: 520px;
  height: 520px;
  top: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(0, 184, 239, 0.35) 0%, transparent 65%);
}
.manifesto-glow.glow-b {
  width: 420px;
  height: 420px;
  bottom: -140px;
  right: -100px;
  background: radial-gradient(circle, rgba(51, 212, 255, 0.22) 0%, transparent 65%);
}
.manifesto-quote {
  position: absolute;
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(20rem, 32vw, 32rem);
  line-height: 0.6;
  color: rgba(0, 184, 239, 0.05);
  top: -40px;
  left: -10px;
  user-select: none;
  -webkit-user-select: none;
}

.manifesto .container { position: relative; z-index: 1; }

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center;
}

.manifesto-copy {
  position: relative;
  padding-top: 8px;
}
.manifesto-marker {
  display: inline-block;
  font-family: 'Anton', Impact, sans-serif;
  font-size: 5rem;
  line-height: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.02) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -2px;
  margin-bottom: 4px;
}
.manifesto-heading {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 8px 0 28px;
  color: #fff;
}
.manifesto-heading .accent-mark {
  position: relative;
  display: inline;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.manifesto-heading .accent-mark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 999px;
  opacity: 0.55;
}
.manifesto-body {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
  margin: 0 0 30px;
  max-width: 540px;
}
.manifesto-copy .arrow-link {
  font-size: .92rem;
}
.manifesto-copy .arrow-link span {
  display: inline-block;
  transition: transform .25s var(--ease);
}
.manifesto-copy .arrow-link:hover span {
  transform: translateX(4px);
}

/* Image frame with corner accents */
.manifesto-media {
  position: relative;
}
.manifesto-frame {
  position: relative;
  aspect-ratio: 4/5;
  padding: 14px;
}
.frame-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--accent);
  z-index: 2;
  pointer-events: none;
  opacity: 0.85;
}
.frame-corner.c-tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.frame-corner.c-tr { top: 0; right: 0; border-left: 0;  border-bottom: 0; }
.frame-corner.c-bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.frame-corner.c-br { bottom: 0; right: 0; border-left: 0;  border-top: 0; }

.manifesto-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.manifesto-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
  display: block;
}
.manifesto-frame:hover .manifesto-image img { transform: scale(1.06); }

.manifesto-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.08) 50%, transparent 65%);
  transform: translateX(-100%);
  pointer-events: none;
}
.manifesto-frame:hover .manifesto-shine {
  animation: manifestoShine 1.2s ease forwards;
}
@keyframes manifestoShine {
  to { transform: translateX(100%); }
}

.manifesto-badge {
  position: absolute;
  bottom: -14px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-3);
  border: 1px solid rgba(0, 184, 239, 0.35);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 184, 239, 0.18);
  z-index: 3;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 184, 239, 0.18);
  animation: manifestoPulse 1.8s var(--ease) infinite;
}
@keyframes manifestoPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 184, 239, 0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(0, 184, 239, 0); }
}

@media (max-width: 980px) {
  .manifesto { padding: 80px 0; }
  .manifesto-grid { gap: 50px; }
  .manifesto-quote { font-size: 18rem; }
}
@media (max-width: 720px) {
  .manifesto { padding: 64px 0; }
  .manifesto-marker { font-size: 3.5rem; }
  .manifesto-heading { font-size: 1.9rem; }
  .manifesto-quote { font-size: 14rem; top: -20px; }
  .manifesto-frame { padding: 10px; }
  .frame-corner { width: 22px; height: 22px; }
  .manifesto-badge { bottom: -10px; right: 12px; font-size: .65rem; padding: 8px 12px; }
}

/* Classes */
.classes { padding: 96px 0; }
.class-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.class-card {
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), border-color .3s var(--ease);
}
.class-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}
.class-card img {
  height: 280px;
  width: 100%;
  object-fit: cover;
  filter: grayscale(.2);
  transition: filter .4s var(--ease), transform .6s var(--ease);
}
.class-card:hover img {
  filter: grayscale(0);
  transform: scale(1.04);
}
.class-card-body {
  padding: 26px 24px 28px;
}
.class-card-body h3 { margin-bottom: 10px; }
.class-card-body p {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 18px;
}

/* Programs */
.programs {
  padding: 96px 0;
  background: var(--bg-2);
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.program {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
  position: relative;
}
.program:hover {
  background: var(--bg-3);
}
.program .num {
  font-family: 'Anton', sans-serif;
  font-size: .9rem;
  color: var(--accent);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 30px;
}
.program h3 {
  margin-bottom: 14px;
}
.program p {
  color: var(--muted);
  font-size: .92rem;
}

/* Membership */
.membership {
  padding: 85px 0;
  background: linear-gradient(180deg, #101010 0%, #0a0a0a 100%);
}
.membership-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}
.membership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.plan-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 184, 239, 0.55);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}
.plan-card.featured {
  border-color: rgba(0, 184, 239, 0.65);
  box-shadow: 0 0 0 1px rgba(0, 184, 239, 0.4), 0 16px 35px rgba(0, 0, 0, 0.35);
}
.plan-media {
  aspect-ratio: 16 / 10;
  background: #0d0d0d;
}
.plan-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.plan-body {
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  height: 100%;
}
.plan-body h3 {
  font-size: 1.25rem;
}
.plan-price {
  font-family: 'Anton', sans-serif;
  font-size: 1.85rem;
  letter-spacing: .8px;
  line-height: 1;
  color: #fff;
}
.plan-price span {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
}
.plan-note {
  margin-top: -4px;
  font-size: .8rem;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 6px;
}
.plan-features li {
  position: relative;
  padding-left: 16px;
  color: #dbdbdb;
  font-size: .84rem;
  line-height: 1.35;
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(0, 184, 239, 0.7);
}
.plan-body .btn {
  margin-top: auto;
}

/* Trial CTA */
.trial-cta {
  position: relative;
  padding: 104px 0;
  overflow: hidden;
  text-align: center;
}
.trial-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.trial-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.35) grayscale(.5);
}
.trial-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.trial-inner h2 {
  margin: 14px 0 22px;
  color: #fff;
}
.trial-inner p {
  color: #d0d0d0;
  font-size: 1.1rem;
  margin-bottom: 34px;
}

/* Stats */
.stats {
  padding: 72px 0;
  background: var(--accent);
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stats-grid div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stats-grid strong {
  font-family: 'Anton', sans-serif;
  font-size: 4rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}
.stats-grid span {
  font-size: .82rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: .9;
}

/* Timetable */
.timetable {
  padding: 96px 0;
  background: radial-gradient(circle at top, rgba(0, 184, 239, 0.08), transparent 40%), var(--bg-2);
}
.tt-embed {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
}
.tt-embed .gmiframe {
  display: block;
  width: 100%;
  height: 1400px;
  border: 0;
  background: #fff;
}
@media (max-width: 900px) {
  .tt-embed .gmiframe { height: 1100px; }
}
@media (max-width: 600px) {
  .timetable { padding: 60px 0; }
  .tt-embed .gmiframe { height: 900px; }
}
.timetable-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 24px;
}
.timetable-head h2 {
  margin-bottom: 12px;
}
.tt-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.tt-pill {
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.tt-pill.adult {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}
.tt-pill.youth {
  background: rgba(0, 184, 239, 0.2);
  border-color: rgba(0, 184, 239, 0.5);
}
.tt-pill.recovery {
  background: rgba(164, 174, 187, 0.2);
  border-color: rgba(164, 174, 187, 0.45);
}
.tt-pill.performance {
  background: rgba(126, 105, 255, 0.2);
  border-color: rgba(126, 105, 255, 0.45);
}
.tt-scroll {
  overflow-x: auto;
  padding-bottom: 8px;
}
.tt-grid {
  min-width: 980px;
  display: grid;
  grid-template-columns: 95px repeat(6, minmax(130px, 1fr));
  gap: 8px;
}
.tt-head-cell,
.tt-time-cell {
  background: #2b2f34;
  border-radius: 10px;
  padding: 12px 10px;
}
.tt-head-cell {
  font-size: .72rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
}
.tt-head-cell span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .65rem;
  letter-spacing: 1px;
}
.tt-corner {
  color: var(--accent);
}
.tt-time-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d2d2d2;
  font-size: .72rem;
  letter-spacing: 1.3px;
  font-weight: 700;
}
.tt-cell {
  min-height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 6px;
}
.tt-item {
  height: 100%;
  border-radius: 8px;
  padding: 10px 10px 8px;
  border: 1px solid transparent;
}
.tt-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  line-height: 1.2;
  letter-spacing: .8px;
  margin-bottom: 5px;
}
.tt-item p {
  font-size: .64rem;
  letter-spacing: .8px;
  color: #d5d5d5;
  line-height: 1.25;
}
.tt-item.adult {
  background: #72787f;
  border-color: #8a939d;
}
.tt-item.youth {
  background: #2f5662;
  border-color: #4d889b;
}
.tt-item.recovery {
  background: #5f6273;
  border-color: #82869e;
}
.tt-item.performance {
  background: #3e3a8a;
  border-color: #6762cd;
}

/* Elite coaches */
.elite-coaches {
  padding: 96px 0;
  background: linear-gradient(180deg, #ececec 0%, #e6e6e6 100%);
  color: #0f0f0f;
}
.elite-coaches .container {
  max-width: 1180px;
}
.elite-coaches-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 44px;
}
.elite-coaches-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.elite-coaches-title::after {
  content: '';
  display: block;
  width: 130px;
  height: 2px;
  margin: 16px auto 0;
  background: var(--accent);
}
.elite-coaches-sub {
  color: #1f1f1f;
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  line-height: 1.45;
  max-width: 760px;
  margin: 0 auto;
}
.elite-coaches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.elite-coach-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  backdrop-filter: blur(12px) saturate(130%);
  border-radius: 12px;
  overflow: hidden;
}
.elite-coach-photo {
  position: relative;
}
.elite-coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.elite-share {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 34px;
  height: 34px;
  border: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.elite-share svg {
  width: 16px;
  height: 16px;
}
.elite-share:hover {
  transform: scale(1.06);
  background: #111;
}
.elite-socials {
  position: absolute;
  left: 8px;
  bottom: 8px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.elite-socials a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .2s var(--ease), background .2s var(--ease);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.elite-socials a:hover {
  transform: scale(1.1);
  background: #111;
}
.elite-socials svg {
  width: 14px;
  height: 14px;
  display: block;
}
.elite-coach-meta {
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: rgba(0, 184, 239, 0.7);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.elite-coach-meta h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.elite-role {
  font-family: 'Inter', sans-serif;
  font-size: .58rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Partners */
.partners { padding: 88px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partner-track {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.partner-row {
  display: flex;
  align-items: center;
  gap: 70px;
  animation: slide 35s linear infinite;
  width: max-content;
}
.partner-row img {
  height: 62px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(.75);
  transition: filter .3s var(--ease);
}
.partner-row img:hover {
  filter: brightness(0) invert(1) opacity(1);
}
@keyframes slide {
  to { transform: translateX(-50%); }
}

/* Gallery */
.gallery { padding: 96px 0 56px; }
.gallery-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 20px 24px 40px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.gallery-strip::-webkit-scrollbar { height: 6px; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
.gallery-strip img {
  height: 360px;
  width: auto;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
  scroll-snap-align: start;
  filter: grayscale(.3);
  transition: filter .4s var(--ease), transform .4s var(--ease);
}
.gallery-strip img:hover {
  filter: none;
  transform: scale(1.02);
}

/* Contact */
.contact { padding: 96px 0; background: var(--bg-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-copy h2 { margin: 10px 0 30px; }
.contact-list {
  list-style: none;
  border-top: 1px solid var(--line);
}
.contact-list li {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 30px;
}
.contact-list .label {
  flex: 0 0 100px;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-list a {
  font-size: 1.1rem;
  font-weight: 500;
  transition: color .2s var(--ease);
}
.contact-list a:hover { color: var(--accent); }

.areas { margin-top: 30px; }
.areas .label {
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.areas p { color: #ddd; line-height: 1.8; }

/* Form */
.contact-form {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-form h3 {
  margin-bottom: 26px;
  font-size: 1.6rem;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field textarea { resize: vertical; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form .btn { margin-top: 10px; }

/* Footer */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand img {
  height: 56px;
  margin-bottom: 20px;
}
.footer-brand p {
  color: var(--muted);
  max-width: 320px;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  color: #ccc;
  padding: 5px 0;
  font-size: .95rem;
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--accent); }
.footer-col p { color: #ccc; margin-bottom: 8px; }

.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0;
}
.socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: .85rem;
}
.footer-bottom .links { display: flex; gap: 26px; }
.footer-bottom .links a:hover { color: var(--accent); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .class-grid, .elite-coaches-grid, .program-grid, .membership-grid { grid-template-columns: repeat(2, 1fr); }
  .video-card { flex: 0 0 calc((100% - 30px) / 2); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
  .tt-grid { min-width: 900px; }
  .manifesto-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 720px) {
  .container { padding: 0 16px; }
  .header-inner { height: 78px; }
  .nav {
    position: fixed;
    top: 78px; right: 0;
    width: 100%;
    background: rgba(10,10,10,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 40px 24px;
    gap: 0;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    border-top: 1px solid var(--line);
    height: calc(100vh - 78px);
  }
  .nav.open { transform: translateX(0); }
  .nav a {
    padding: 20px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--line);
    width: 100%;
  }
  .nav-toggle { display: block; }
  .header-cta .btn { display: none; }
  .announce { font-size: .62rem; letter-spacing: 1.5px; }

  .hero { padding: 60px 0 60px; min-height: 80vh; }
  .hero { min-height: auto; }
  .hero-meta { gap: 26px; }
  .hero-meta strong { font-size: 2rem; }

  .manifesto, .classes, .programs, .elite-coaches, .timetable, .membership, .contact, .testimonials { padding: 64px 0; }
  .trusted-by, .partners { padding: 64px 0; }
  .gallery { padding: 64px 0 42px; }
  .trial-cta { padding: 72px 0; }
  .stats { padding: 60px 0; }

  .class-grid, .elite-coaches-grid, .membership-grid { grid-template-columns: 1fr; }
  .elite-coaches-head { margin-bottom: 42px; }
  .elite-coach-card { max-width: 340px; margin: 0 auto; }
  .plan-card { max-width: 420px; margin: 0 auto; width: 100%; }
  .trusted-title { font-size: 2.1rem; margin-bottom: 28px; }
  .trusted-logos { gap: 12px; }
  .trusted-logos img { width: 140px; height: 68px; padding: 10px 12px; }
  .testimonials .section-heading { font-size: 2.3rem; }
  .testimonials-sub { font-size: .96rem; margin-bottom: 30px; }
  .slider-controls {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 14px;
    justify-content: center;
    gap: 14px;
  }
  .slider-btn { width: 44px; height: 44px; font-size: 1.2rem; }
  .video-card { flex: 0 0 100%; }
  .program-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid strong { font-size: 3rem; }
  .timetable-head { margin-bottom: 18px; }
  .tt-grid {
    min-width: 760px;
    grid-template-columns: 72px repeat(6, minmax(105px, 1fr));
    gap: 6px;
  }
  .tt-head-cell,
  .tt-time-cell { padding: 9px 6px; }
  .tt-time-cell { font-size: .62rem; letter-spacing: 1px; }
  .tt-head-cell { font-size: .64rem; }
  .tt-head-cell span { font-size: .58rem; margin-top: 4px; }
  .tt-cell { min-height: 78px; padding: 4px; }
  .tt-item { padding: 8px 7px 6px; }
  .tt-item h3 { font-size: .66rem; margin-bottom: 3px; }
  .tt-item p { font-size: .58rem; }
  .two-col { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery-strip img { height: 240px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .contact-list li { flex-direction: column; gap: 6px; }
  .contact-list .label { flex: none; }
}

@media (max-width: 520px) {
  .hero-ctas .btn { min-width: 100%; }
  .hero-meta { gap: 12px; }
  .hero-meta .divider { display: none; }
  .elite-coach-card { max-width: 100%; }
  .plan-card { max-width: 100%; }
  .partner-row { gap: 40px; }
  .partner-row img { height: 48px; }
}

/* ===========================
   Inner page banner / hero
   =========================== */
.page-banner {
  position: relative;
  padding: 160px 0 90px;
  background:
    radial-gradient(1200px 500px at 80% 20%, rgba(0,184,239,.25), transparent 60%),
    radial-gradient(900px 400px at 10% 80%, rgba(0,184,239,.15), transparent 60%),
    linear-gradient(180deg, #001f2e 0%, #0a1a26 100%);
  border-bottom: 1px solid rgba(0,184,239,.2);
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
  pointer-events: none;
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner .crumbs {
  display: inline-flex; gap: 10px; align-items: center;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 18px;
}
.page-banner .crumbs a { color: rgba(255,255,255,.55); text-decoration: none; }
.page-banner .crumbs a:hover { color: #ff6b00; }
.page-banner .crumbs span { color: rgba(255,255,255,.25); }
.page-banner h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: .02em;
  line-height: 1;
  margin: 0 0 18px;
  color: #fff;
}
.page-banner h1 .accent { color: #00b8ef; }
.page-banner p.lede {
  max-width: 720px;
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Blog landing banner — toned down so short heading does not overpower the page */
.page-banner--blog { padding: 110px 0 70px; }
.page-banner--blog h1 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.page-banner--blog p.lede {
  font-size: .98rem;
  max-width: 620px;
}

/* Generic page section wrapper */
.page-section { padding: 90px 0; }
.page-section.alt { background: #0d0d0d; }
.page-section .lede {
  max-width: 760px;
  color: rgba(255,255,255,.7);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.page-section h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: .02em;
  margin: 0 0 18px;
  color: #fff;
}
.page-section h2 .accent { color: #00b8ef; }
.page-section h3 { color: #fff; }

/* Two-up info grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.info-card {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 28px 24px;
  transition: transform .3s ease, border-color .3s ease;
}
.info-card:hover { transform: translateY(-4px); border-color: rgba(255,107,0,.4); }
.info-card .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(255,107,0,.12);
  color: #ff6b00;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; margin-bottom: 14px;
}
.info-card h3 { margin: 0 0 8px; font-size: 1.15rem; }
.info-card p { color: rgba(255,255,255,.65); line-height: 1.6; margin: 0; font-size: .95rem; }

/* Blog list */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 36px;
}
.blog-card {
  background: #131313;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.blog-card:hover { transform: translateY(-6px); border-color: rgba(255,107,0,.4); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.blog-card .body { padding: 22px 22px 26px; }
.blog-card .meta { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: #ff6b00; margin-bottom: 10px; }
.blog-card h3 { margin: 0 0 10px; font-size: 1.15rem; line-height: 1.3; }
.blog-card p { color: rgba(255,255,255,.6); font-size: .92rem; line-height: 1.55; margin: 0 0 14px; }

/* Job openings */
.job-list { display: grid; gap: 16px; margin-top: 28px; }
.job-card {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px;
  background: #131313;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 22px 26px;
  transition: border-color .3s ease;
}
.job-card:hover { border-color: rgba(255,107,0,.4); }
.job-card h3 { margin: 0 0 4px; font-size: 1.1rem; }
.job-card .tags { color: rgba(255,255,255,.55); font-size: .85rem; }
.job-card .tags span + span::before { content: " · "; }

@media (max-width: 720px) {
  .page-banner { padding: 130px 0 70px; }
  .page-section { padding: 64px 0; }
}

/* =============================================
   ADULT MEMBERSHIPS — tier cards
   ============================================= */
.adult-mem {
  padding: 80px 0 100px;
  background: var(--bg);
}
.adult-mem-head {
  text-align: center;
  margin-bottom: 48px;
}
.adult-mem-head h2 {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
}
.adult-mem-divider {
  display: inline-block;
  width: 60px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.adult-mem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 38px;
}
.adult-mem-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.adult-mem-card {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
}
.adult-mem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 184, 239, 0.32);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 184, 239, 0.08);
}
.adult-mem-card.is-best-value::before {
  content: "BEST VALUE";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: var(--accent);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 5px 9px;
  border-radius: 4px;
  box-shadow: 0 6px 14px rgba(0, 184, 239, 0.35);
}

.adult-mem-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #050505;
  overflow: hidden;
}
.adult-mem-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .6s var(--ease);
}
.adult-mem-card:hover .adult-mem-media img { transform: scale(1.03); }

.adult-mem-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.adult-mem-duration {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.4px;
  color: var(--accent);
  margin-bottom: 8px;
}
.adult-mem-price {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 2.2rem;
  letter-spacing: -0.5px;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1;
}
.adult-mem-price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-left: 2px;
}
.adult-mem-tagline {
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0 0 18px;
  min-height: 38px;
}

.adult-mem-features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 9px;
  flex: 1;
}
.adult-mem-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}
.adult-mem-features li em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.78);
}
.adult-mem-features svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 3px;
}

.adult-mem-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  background: #0a0a0a;
  border: 1px solid var(--accent);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: all .2s var(--ease);
  align-self: flex-start;
}
.adult-mem-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 184, 239, 0.32);
}

.adult-mem-footnote {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 22px 26px;
  margin: 20px 0 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.adult-mem-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.adult-mem-stack .adult-mem-card { height: 100%; }
.adult-mem-card-note {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1100px) {
  .adult-mem-grid,
  .adult-mem-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .adult-mem { padding: 60px 0 80px; }
  .adult-mem-grid,
  .adult-mem-grid-3 { grid-template-columns: 1fr; gap: 16px; }
  .adult-mem-tagline { min-height: 0; }
}

/* =============================================
   BOOK TRIAL MODAL — modern conversion-focused
   ============================================= */
body.trial-modal-open { overflow: hidden; }

.trial-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity .25s ease;
  overflow-y: auto;
  padding: 3vh 16px;
  -webkit-overflow-scrolling: touch;
}
.trial-modal.is-open { display: flex; opacity: 1; justify-content: center; }

.trial-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 10, 0.82);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 0;
}

.trial-modal-card {
  position: relative;
  z-index: 1;
  margin: auto;
  width: min(1080px, 100%);
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 80px rgba(0, 184, 239, 0.08);
  transform: translateY(20px) scale(0.985);
  transition: transform .3s var(--ease);
}
.trial-modal.is-open .trial-modal-card {
  transform: translateY(0) scale(1);
}

/* Close button — glassy circular */
.trial-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  transition: background .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease);
}
.trial-modal-close:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.06) rotate(90deg);
}
.trial-modal-close svg { display: block; }

/* Two-column grid */
.trial-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  min-height: 580px;
}

/* ===== LEFT — pitch ===== */
.trial-pitch {
  position: relative;
  padding: 44px 38px 36px;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 184, 239, 0.10) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(0, 184, 239, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}
.trial-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 2.4px;
  color: var(--accent);
  background: rgba(0, 184, 239, 0.08);
  border: 1px solid rgba(0, 184, 239, 0.3);
  padding: 6px 12px;
  border-radius: 999px;
  align-self: flex-start;
}
.trial-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(0, 184, 239, 0.5);
  animation: trial-pulse 1.8s var(--ease) infinite;
}
@keyframes trial-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 184, 239, 0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(0, 184, 239, 0); }
}

.trial-pitch-title {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  margin: 16px 0 10px;
}
.trial-pitch-lede {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Price card */
.trial-price-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  margin-bottom: 24px;
  background:
    linear-gradient(135deg, rgba(0, 184, 239, 0.14) 0%, rgba(0, 184, 239, 0.04) 100%);
  border: 1px solid rgba(0, 184, 239, 0.32);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.trial-price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.06) 50%, transparent 70%);
  pointer-events: none;
}
.price-stack {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-prefix {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
}
.price-num {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 3.6rem;
  line-height: 1;
  color: #fff;
  letter-spacing: -2px;
}
.price-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-left: 6px;
}
.price-period {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: var(--accent);
}
.price-was {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}
.price-badge {
  margin-left: auto;
  background: var(--accent);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.6rem;
  letter-spacing: 1.2px;
  padding: 5px 9px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 1;
}

/* Pitch description copy */
.trial-pitch-copy {
  margin: 0 0 26px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}
.trial-pitch-copy strong {
  color: #fff;
  font-weight: 700;
}
.trial-pitch-copy a {
  color: var(--accent);
  text-decoration: none;
  transition: color .15s ease;
}
.trial-pitch-copy a:hover {
  color: var(--accent-2);
  text-decoration: underline;
}

/* Trust strip */
.trial-trust {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.trial-trust-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}
.trial-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.trust-cell {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  height: 52px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.trust-cell:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 6px 14px rgba(0, 184, 239, 0.18);
}
.trust-cell img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* ===== RIGHT — form ===== */
.trial-form {
  padding: 44px 38px 36px;
  background: #0d0d0d;
  display: flex;
  flex-direction: column;
}
.trial-form-head {
  margin-bottom: 22px;
}
.trial-form-head h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  margin: 0 0 6px;
  color: #fff;
  letter-spacing: -0.2px;
}
.trial-form-head p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.trial-form-head p strong { color: #fff; font-weight: 700; }

/* Floating-label input */
.trial-input {
  position: relative;
  margin-bottom: 12px;
}
.trial-input input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 22px 16px 8px;
  font-family: 'Inter', sans-serif;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.trial-input input::placeholder { color: transparent; }
.trial-input input:hover {
  border-color: rgba(255, 255, 255, 0.18);
}
.trial-input input:focus {
  border-color: var(--accent);
  background: rgba(0, 184, 239, 0.06);
  box-shadow: 0 0 0 3px rgba(0, 184, 239, 0.12);
}
.trial-input label {
  position: absolute;
  top: 18px;
  left: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  pointer-events: none;
  transition: top .15s ease, font-size .15s ease, color .15s ease, font-weight .15s ease;
}
.trial-input input:focus ~ label,
.trial-input input:not(:placeholder-shown) ~ label {
  top: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.5px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
}
.trial-input .req { color: var(--accent); margin-left: 1px; }

/* Pill-style radio group */
.trial-pill-group {
  border: 0;
  margin: 6px 0 4px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trial-pill-group legend {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 10px;
  padding: 0;
  letter-spacing: 0.4px;
}
.trial-pill {
  position: relative;
  cursor: pointer;
}
.trial-pill input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.trial-pill span {
  display: inline-block;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  transition: all 0.2s var(--ease);
}
.trial-pill:hover span {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.trial-pill input:checked + span {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 184, 239, 0.32);
}
.trial-pill input:focus-visible + span {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

/* Gradient CTA */
.trial-cta {
  margin-top: 18px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  border: 0;
  padding: 17px 26px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 28px rgba(0, 184, 239, 0.32), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  position: relative;
  overflow: hidden;
}
.trial-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.18) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform .6s ease;
}
.trial-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 184, 239, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.trial-cta:hover::before { transform: translateX(100%); }
.trial-cta:disabled { opacity: 0.7; cursor: not-allowed; }
.trial-cta svg { transition: transform .2s var(--ease); position: relative; z-index: 1; }
.trial-cta span { position: relative; z-index: 1; }
.trial-cta:hover svg { transform: translateX(5px); }

/* Trust microcopy under CTA */
.trial-foot {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 18px;
  font-size: 0.78rem;
  color: var(--muted);
}
.trial-foot-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trial-foot-item svg { color: var(--accent); flex-shrink: 0; }
.trial-foot-item a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: color .15s ease;
}
.trial-foot-item a:hover { color: var(--accent); }

/* Responsive */
@media (max-width: 860px) {
  .trial-modal { padding: 2vh 12px; }
  .trial-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .trial-pitch {
    padding: 36px 24px 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .trial-form { padding: 32px 24px 28px; }
  .trial-trust-grid { gap: 6px; }
  .trust-cell { height: 48px; padding: 5px 8px; }
}
@media (max-width: 480px) {
  .trial-modal-card { border-radius: 12px; }
  .trial-pitch { padding: 30px 20px 24px; }
  .trial-form { padding: 28px 20px 24px; }
  .trial-pitch-title { font-size: 1.55rem; }
  .price-num { font-size: 3rem; }
  .trial-foot { flex-direction: column; gap: 8px; }
  .trial-modal-close { width: 32px; height: 32px; top: 12px; right: 12px; }
  .trial-modal-close svg { width: 12px; height: 12px; }
}

/* =========================================================
   BLOG — landing, single, archive, search, 404
   ========================================================= */

/* Make the existing card image area a clickable link without breaking layout. */
.blog-card-media {
  display: block;
  overflow: hidden;
}
.blog-card-media img { transition: transform .5s var(--ease); }
.blog-card:hover .blog-card-media img { transform: scale(1.05); }
.blog-card h3 a { color: inherit; transition: color .2s ease; }
.blog-card h3 a:hover { color: var(--accent); }

/* Category chips above the grid */
.blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.blog-cats a {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: all .2s ease;
}
.blog-cats a:hover { border-color: var(--accent); color: var(--accent); }
.blog-cats a.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Numbered pagination */
.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 56px;
}
.blog-pagination .page-numbers {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .2s ease;
}
.blog-pagination .page-numbers:hover { border-color: var(--accent); color: var(--accent); }
.blog-pagination .page-numbers.current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.blog-pagination .page-numbers.dots { border: 0; }

/* Empty state for blog landing / archives */
.blog-empty {
  text-align: center;
  padding: 60px 20px;
  border: 1px dashed rgba(255,255,255,.1);
  border-radius: 18px;
  background: #131313;
}
.blog-empty h2 { margin-bottom: 10px; color: #fff; }
.blog-empty p { color: rgba(255,255,255,.6); }
.blog-empty a { color: var(--accent); }

/* Archive eyebrow on banner */
.archive-eyebrow {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 700;
}

/* ===== Single post ===== */
.page-banner.post-banner { padding: 110px 0 70px; }
.page-banner.post-banner h1 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  text-transform: none;
  letter-spacing: .005em;
  font-family: 'Anton', sans-serif;
  line-height: 1.15;
  max-width: 820px;
  color: #fff;
  margin: 6px 0 16px;
}
.post-category {
  display: inline-block;
  margin-bottom: 14px;
}
.post-category a {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.post-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
}
.post-meta .dot { color: rgba(255,255,255,.25); }

.post-hero {
  margin: -40px 0 0;
  position: relative;
  z-index: 2;
}
.post-hero .container { padding: 0 24px; }
.post-hero-img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.06);
}

.post-section { padding-top: 70px; }

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
  align-items: start;
}

.post-body {
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,.82);
}
.post-body h1,
.post-body h2,
.post-body h3,
.post-body h4 {
  color: #fff;
  margin: 1.6em 0 .6em;
  letter-spacing: .02em;
  line-height: 1.2;
  text-transform: none;
}
.post-body h1 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); }
.post-body h2 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
.post-body h3 { font-size: 1.25rem; }
.post-body h4 { font-size: 1.05rem; }
.post-body p,
.post-body ul,
.post-body ol,
.post-body blockquote,
.post-body figure,
.post-body pre,
.post-body table { margin: 0 0 1.2em; }
.post-body a {
  color: var(--accent);
  border-bottom: 1px solid rgba(0,184,239,.4);
  transition: border-color .2s ease;
}
.post-body a:hover { border-color: var(--accent); }
.post-body ul,
.post-body ol { padding-left: 1.4em; }
.post-body li { margin-bottom: .4em; }
.post-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 6px 0 6px 22px;
  color: #fff;
  font-style: italic;
  font-size: 1.15rem;
}
.post-body img,
.post-body figure img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.06);
}
.post-body figcaption {
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-top: 8px;
}
.post-body pre,
.post-body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .92em;
}
.post-body code {
  background: rgba(255,255,255,.06);
  padding: 2px 6px;
  border-radius: 4px;
}
.post-body pre {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.08);
  padding: 18px 22px;
  border-radius: 12px;
  overflow-x: auto;
}
.post-body pre code { background: transparent; padding: 0; }
.post-body table {
  width: 100%;
  border-collapse: collapse;
}
.post-body table th,
.post-body table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: left;
}
.post-body hr {
  border: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  margin: 36px 0;
}

.post-pagelinks {
  margin: 24px 0;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
}
.post-pagelinks a {
  display: inline-block;
  margin: 0 4px;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  color: rgba(255,255,255,.8);
}

.post-tags {
  margin: 36px 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.post-tags a {
  font-size: .8rem;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: rgba(255,255,255,.7);
  transition: all .2s ease;
}
.post-tags a:hover { border-color: var(--accent); color: var(--accent); }

.post-share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 28px 0 36px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.65);
  font-size: .9rem;
}
.post-share span { letter-spacing: .12em; text-transform: uppercase; font-size: .76rem; font-weight: 700; color: rgba(255,255,255,.5); }
.post-share a {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
  transition: all .2s ease;
}
.post-share a:hover { border-color: var(--accent); color: var(--accent); }

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 40px 0;
}
.post-nav-link {
  display: block;
  padding: 18px 22px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: #131313;
  transition: border-color .25s ease, transform .25s ease;
}
.post-nav-link:hover { border-color: rgba(0,184,239,.4); transform: translateY(-2px); }
.post-nav-link .label {
  display: block;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  font-weight: 700;
}
.post-nav-link .title {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: .98rem;
}
.post-nav-link.next { text-align: right; }

/* Sidebar */
.post-sidebar { display: grid; gap: 24px; position: sticky; top: 100px; }
.sidebar-block {
  background: #131313;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 22px;
}
.sidebar-block h4 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: .12em;
  margin-bottom: 14px;
}
.sidebar-block .author-name { color: #fff; font-weight: 700; margin-bottom: 6px; }
.sidebar-block .author-bio { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.55; margin: 0; }
.related-list, .cat-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.related-list li,
.cat-list li {
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding-bottom: 10px;
}
.related-list li:last-child,
.cat-list li:last-child { border: 0; padding-bottom: 0; }
.related-list a,
.cat-list a {
  display: block;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: .92rem;
  transition: color .2s ease;
}
.related-list a:hover,
.cat-list a:hover { color: var(--accent); }
.related-date {
  display: block;
  font-size: .76rem;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}
.cat-list a span { color: rgba(255,255,255,.4); font-size: .82rem; margin-left: 6px; }

/* Comments */
.post-comments { margin-top: 56px; }
.comments-title {
  color: #fff;
  margin-bottom: 24px;
}
.comments-list { list-style: none; padding: 0; margin: 0 0 36px; }
.comments-list ol.children { list-style: none; padding-left: 32px; margin-top: 16px; }
.comments-list .comment {
  background: #131313;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 16px;
}
.comments-list .comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.comments-list .comment-author .avatar {
  border-radius: 50%;
  width: 42px;
  height: 42px;
}
.comments-list .comment-author .fn {
  color: #fff;
  font-weight: 700;
  font-style: normal;
}
.comments-list .comment-metadata {
  font-size: .76rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 12px;
}
.comments-list .comment-metadata a { color: inherit; }
.comments-list .comment-content { color: rgba(255,255,255,.8); font-size: .95rem; line-height: 1.6; }
.comments-list .reply { margin-top: 10px; }
.comments-list .reply a {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.comment-respond {
  background: #131313;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 28px;
}
.comment-reply-title { color: #fff; margin-bottom: 16px; }
.comment-notes { color: rgba(255,255,255,.55); font-size: .85rem; margin-bottom: 16px; }
.comment-form label {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: .95rem;
  margin-bottom: 14px;
  transition: border-color .2s ease;
}
.comment-form input:focus,
.comment-form textarea:focus { outline: none; border-color: var(--accent); }
.comment-form textarea { min-height: 130px; resize: vertical; }
.form-submit { margin-top: 8px; }
.form-submit .submit { cursor: pointer; }
.no-comments { color: rgba(255,255,255,.5); font-size: .9rem; }

/* Search form (used on search page + 404) */
.search-form {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  max-width: 560px;
}
.search-form input[type="search"] {
  flex: 1;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  border-radius: 999px;
  padding: 12px 20px;
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .2s ease;
}
.search-form input[type="search"]:focus { outline: none; border-color: var(--accent); }
.search-form input[type="search"]::placeholder { color: rgba(255,255,255,.4); }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* 404 */
.err-banner { padding: 140px 0 100px; text-align: center; }
.err-banner .crumbs { justify-content: center; }
.err-code {
  font-family: 'Anton', sans-serif;
  font-size: clamp(5rem, 14vw, 9rem);
  line-height: 1;
  background: linear-gradient(135deg, #fff 30%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.err-banner h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: 14px;
}
.err-banner .lede { margin: 0 auto 28px; }
.err-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .post-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .post-sidebar { position: static; }
}

@media (max-width: 720px) {
  .post-hero { margin-top: -20px; }
  .post-hero-img { max-height: 360px; border-radius: 12px; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-link.next { text-align: left; }
  .blog-pagination .page-numbers { min-width: 38px; height: 38px; padding: 0 10px; font-size: .8rem; }
  .search-form { flex-direction: column; }
  .search-form .btn { width: 100%; }
}

/* =========================================================
   BLOG LANDING — V2 redesign (date-badge cards,
   View here CTA, AJAX Load More)
   Banner uses the shared .page-banner from elsewhere — same
   look as Classes / About / etc.
   ========================================================= */

/* Listing wrapper */
.blog-listing { padding: 80px 0 110px; }

/* ===== Card v2 ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 28px;
}
.blog-card {
  position: relative;
  background: linear-gradient(180deg, #161616 0%, #101010 100%);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,184,239,.4);
  box-shadow: 0 20px 40px -20px rgba(0,184,239,.25);
}
.blog-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #0a0a0a;
}
.blog-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.blog-card:hover .blog-card-media img { transform: scale(1.06); }

/* Floating date badge in image corner */
.date-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 10px 12px;
  background: #000;
  color: #fff;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 10px 24px rgba(0,0,0,.4);
  line-height: 1;
}
.date-badge .d {
  font-family: 'Anton', sans-serif;
  font-size: 1.65rem;
  letter-spacing: 1px;
  color: #fff;
}
.date-badge .m {
  margin-top: 4px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--accent);
}

/* Card body */
.blog-card .body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card h3 {
  margin: 0 0 12px;
  font-family: 'Anton', sans-serif;
  font-size: 1.35rem;
  letter-spacing: .02em;
  line-height: 1.18;
  color: #fff;
  text-transform: uppercase;
}
.blog-card h3 a { color: inherit; transition: color .2s ease; }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p {
  color: rgba(255,255,255,.6);
  font-size: .94rem;
  line-height: 1.6;
  margin: 0 0 18px;
  flex: 1;
}

/* "View here" link styled like reference */
.view-here {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 8px 0 6px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 2px solid var(--accent);
  transition: gap .25s var(--ease), color .25s ease, border-color .25s ease;
}
.view-here:hover {
  gap: 14px;
  color: var(--accent);
  border-color: #fff;
}

/* ===== Load More button ===== */
.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}
.load-more-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff;
  border: 2px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 18px 44px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: all .3s var(--ease);
}
.load-more-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(100%);
  transition: transform .35s var(--ease);
  z-index: 0;
}
.load-more-btn .lm-text,
.load-more-btn .lm-arrow { position: relative; z-index: 1; }
.load-more-btn:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.load-more-btn:hover::before { transform: translateY(0); }
.load-more-btn .lm-arrow {
  display: inline-block;
  transition: transform .35s var(--ease);
}
.load-more-btn:hover .lm-arrow { transform: translateY(4px); }

.load-more-btn.is-loading {
  cursor: wait;
  opacity: .7;
}
.load-more-btn.is-loading .lm-arrow {
  animation: lmSpin .9s linear infinite;
  transform-origin: center;
}
@keyframes lmSpin {
  to { transform: rotate(360deg); }
}

/* Fade-in animation for AJAX-appended cards */
.blog-card.lm-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.blog-card.lm-fade-in.lm-visible {
  opacity: 1;
  transform: none;
}

/* Category chips refined for v2 */
.blog-listing .blog-cats {
  margin-bottom: 36px;
  justify-content: flex-start;
}

/* Responsive */
@media (max-width: 1080px) {
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .blog-listing { padding: 56px 0 80px; }
  .blog-grid { grid-template-columns: 1fr; gap: 22px; }
  .blog-card .body { padding: 20px 20px 22px; }
  .blog-card h3 { font-size: 1.2rem; }
  .date-badge { top: 12px; right: 12px; min-width: 56px; padding: 8px 10px; }
  .date-badge .d { font-size: 1.4rem; }
  .load-more-btn { padding: 16px 32px; font-size: .8rem; letter-spacing: .2em; }
  .load-more-wrap { margin-top: 48px; }
}

/* =============================================
   Contact Form 7 — make CF7's wrapper markup play nicely
   with the existing trial-form and contact-form designs.
   ============================================= */

/* CF7 wraps every input in <span class="wpcf7-form-control-wrap">.
   Make that wrapper layout-transparent so widths and absolute-positioned
   labels in the existing CSS continue to work. */
.trial-input .wpcf7-form-control-wrap,
.field .wpcf7-form-control-wrap {
  display: block;
  position: static;
}

/* Floating label — CF7's wrapper breaks `~ label` selectors because the
   input is no longer a sibling of the label. Use :has() instead. */
.trial-input:has(input:focus) > label,
.trial-input:has(input:not(:placeholder-shown)) > label {
  top: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.5px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
}

/* CF7 response output (the success / error banner below the form). */
.wpcf7-response-output {
  margin: 16px 0 0 !important;
  padding: 12px 16px !important;
  border: 1px solid transparent !important;
  border-radius: 10px !important;
  font-size: .95rem !important;
  line-height: 1.45 !important;
}
.wpcf7 form.sent .wpcf7-response-output {
  background: #ecfdf5;
  border-color: #34d399 !important;
  color: #065f46;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  background: #fef2f2;
  border-color: #f87171 !important;
  color: #991b1b;
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
  background: #fff7ed;
  border-color: #fb923c !important;
  color: #9a3412;
}

/* Per-field validation tooltip. */
.wpcf7-not-valid-tip {
  color: #f87171 !important;
  font-size: .8rem !important;
  margin-top: 6px !important;
  display: block;
}
.wpcf7 .wpcf7-not-valid {
  border-color: #f87171 !important;
}

/* CF7 loader spinner — keep it inline next to the submit button. */
.wpcf7 .wpcf7-spinner {
  vertical-align: middle;
  margin: 0 0 0 12px;
}

/* CF7 radio buttons inside .trial-pill-group — re-create the pill look
   against CF7's <label><input><span class="wpcf7-list-item-label"> markup. */
.trial-pill-group .wpcf7-form-control-wrap { width: 100%; }
.trial-pill-group .wpcf7-radio,
.trial-pill-group .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trial-pill-group .wpcf7-list-item { margin: 0 !important; }
.trial-pill-group .wpcf7-list-item label {
  position: relative;
  cursor: pointer;
  margin: 0;
}
.trial-pill-group .wpcf7-list-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.trial-pill-group .wpcf7-list-item-label {
  display: inline-block;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  transition: all 0.2s var(--ease);
}
.trial-pill-group .wpcf7-list-item label:hover .wpcf7-list-item-label {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.trial-pill-group .wpcf7-list-item input:checked + .wpcf7-list-item-label {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 184, 239, 0.32);
}
.trial-pill-group .wpcf7-list-item input:focus-visible + .wpcf7-list-item-label {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}



