/* ============================================================
   PIVOT PLAY — styles
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg:        #090c0b;
  --bg-2:      #0e1211;
  --surface:   #141a18;
  --surface-2: #1a2220;
  --line:      rgba(255,255,255,.09);
  --line-2:    rgba(255,255,255,.16);

  --text:      #eef2ec;
  --muted:     #9aa39c;
  --muted-2:   #6f7a72;

  --lime:      #c6ff3a;
  --lime-2:    #a4e81f;
  --orange:    #ff5a1f;
  --orange-2:  #ff7a45;
  --pitch:     #0c3b2c;

  /* Brand holographic gradient */
  --grad: linear-gradient(100deg,#b6ff3a 0%,#7ef0b0 20%,#5ad2e6 40%,#6aa6ff 60%,#c3a2ff 78%,#ffb185 100%);
  --grad-lime:   #b6ff3a;
  --grad-aqua:   #5ad2e6;
  --grad-blue:   #6aa6ff;
  --grad-violet: #c3a2ff;
  --grad-peach:  #ffb185;

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --shadow:    0 24px 60px -20px rgba(0,0,0,.7);
  --shadow-lime: 0 14px 40px -12px rgba(198,255,58,.45);
  --shadow-orange: 0 14px 40px -12px rgba(255,90,31,.5);

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-alt: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; border-radius: 4px; }

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 2000;
  background: var(--lime); color: #0a0d0c; padding: 10px 16px; border-radius: 8px;
  font-weight: 700; transition: top .2s;
}
.skip-link:focus { top: 16px; }

.hidden { display: none !important; }

/* ---------- Canvas / cursor ---------- */
#balls-canvas {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
}
.cursor-shadow { position: fixed; top: 0; left: 0; z-index: 1500; pointer-events: none; border-radius: 50%; will-change: transform; opacity: 0;
  width: 54px; height: 54px; margin: -27px 0 0 -27px;
  background: radial-gradient(circle, rgba(198,255,58,.30) 0%, rgba(198,255,58,.07) 52%, transparent 72%);
  transition: opacity .3s, width .25s, height .25s, background .25s;
}
.cursor-shadow.is-hover { width: 84px; height: 84px; margin: -42px 0 0 -42px;
  background: radial-gradient(circle, rgba(255,90,31,.32) 0%, rgba(255,90,31,.07) 52%, transparent 72%); }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 1600;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(122,210,180,.6);
}

/* Keep content above canvas */
.nav, main, .footer { position: relative; z-index: 2; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 24px; border-radius: 999px; font-weight: 700; font-size: .98rem;
  letter-spacing: .01em; transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, color .25s;
  white-space: nowrap; position: relative;
}
.btn svg { transition: transform .25s; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn--primary { background: var(--grad); color: #0a0d0c; box-shadow: var(--shadow-lime); }
.btn--primary:hover { filter: brightness(1.06) saturate(1.04); box-shadow: 0 18px 46px -12px rgba(122,210,180,.55); }
.btn--primary:hover svg { transform: translateX(4px); }
.btn--secondary { background: var(--orange); color: #fff; box-shadow: var(--shadow-orange); }
.btn--secondary:hover { background: var(--orange-2); }
.btn--ghost { background: rgba(255,255,255,.05); color: var(--text); border: 1.5px solid var(--line-2); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: var(--grad-aqua); color: var(--grad-aqua); }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; }
.btn--sm { padding: 10px 18px; font-size: .9rem; }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: background .35s, backdrop-filter .35s, border-color .35s, padding .35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(9,12,11,.82); backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transition: padding .35s;
}
.nav.is-scrolled .nav__inner { padding-top: 12px; padding-bottom: 12px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { display: grid; place-items: center; filter: drop-shadow(0 2px 6px rgba(0,0,0,.5)); }
.brand__mark svg { animation: spin-slow 14s linear infinite; }
.brand__text { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: .02em; line-height: 1; text-transform: uppercase; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.brand__text span { -webkit-text-fill-color: transparent; color: transparent; }
.nav__links { display: flex; gap: 30px; flex-wrap: nowrap; }
.nav__links a { font-weight: 600; font-size: .95rem; color: #dfe4dc; position: relative; padding: 4px 0; transition: color .2s; text-shadow: 0 1px 12px rgba(0,0,0,.55); white-space: nowrap; }
.nav.is-scrolled .nav__links a { color: #c3cabf; text-shadow: none; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--grad); transition: width .28s cubic-bezier(.2,.8,.2,1); }
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .92rem; color: var(--text); transition: color .2s; }
.nav__phone:hover { color: var(--grad-aqua); }
.nav__phone svg { color: var(--lime); }
.nav__burger { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__burger span { width: 24px; height: 2.5px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999; background: rgba(9,12,11,.97); backdrop-filter: blur(16px);
  display: flex; flex-direction: column; justify-content: center; gap: 30px; padding: 100px var(--gutter) 40px;
  transform: translateY(-100%); transition: transform .5s cubic-bezier(.7,0,.2,1); visibility: hidden;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu nav a { font-family: var(--font-display); font-size: clamp(2rem, 10vw, 3rem); text-transform: uppercase; letter-spacing: .02em; color: var(--text); transition: color .2s, transform .2s; }
.mobile-menu nav a:hover { color: var(--grad-aqua); transform: translateX(8px); }
.mobile-menu__foot { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 120px var(--gutter) 90px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .5; transform: scale(1.08); }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 15% 10%, rgba(9,12,11,.2) 0%, rgba(9,12,11,.75) 55%, var(--bg) 100%),
    linear-gradient(180deg, rgba(9,12,11,.5) 0%, rgba(9,12,11,.2) 40%, var(--bg) 96%);
}
.hero__inner { max-width: var(--maxw); margin: 0 auto; width: 100%; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-alt); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; font-size: .8rem; color: var(--lime); background: rgba(198,255,58,.08); border: 1px solid rgba(198,255,58,.25); padding: 9px 16px; border-radius: 999px; margin-bottom: 26px; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(198,255,58,.7); animation: pulse 2s infinite; }
.hero__title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(3.2rem, 12vw, 9.5rem); line-height: .92; letter-spacing: -.01em;
  margin-bottom: 28px; text-shadow: 0 10px 40px rgba(0,0,0,.5);
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; position: relative; }
.hero__title .accent::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: .1em; height: .09em;
  background: var(--grad); border-radius: 4px; transform: scaleX(0); transform-origin: left; animation: underline 1s .9s forwards;
}
.hero__sub { max-width: 560px; font-size: clamp(1.05rem, 2vw, 1.28rem); color: #cfd6cd; margin-bottom: 38px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 60px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(24px, 6vw, 64px); }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.stat__label { font-size: .85rem; color: var(--muted); max-width: 130px; }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-family: var(--font-alt); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.hero__scroll-line { width: 1.5px; height: 44px; background: linear-gradient(var(--lime), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content:""; position:absolute; top:-40%; left:0; width:100%; height:40%; background: var(--lime); animation: scrolldot 1.8s infinite; }

/* ---------- Marquee ---------- */
.marquee { background: var(--grad); color: #0a0d0c; padding: 16px 0; overflow: hidden; border-top: 2px solid #0a0d0c; border-bottom: 2px solid #0a0d0c; position: relative; z-index: 2; }
.marquee__track { display: flex; align-items: center; gap: 28px; width: max-content; animation: marquee 26s linear infinite; }
.marquee span { font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; letter-spacing: .02em; white-space: nowrap; }
.marquee .dot { font-size: .7rem; opacity: .6; }

/* ---------- Section shells ---------- */
section { position: relative; }
.paths, .why, .leagues, .hire, .steps, .faq, .contact, .fixtures {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 8vw, 96px) var(--gutter);
}
.section-head { margin-bottom: 44px; }
.section-head--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.kicker { display: inline-block; font-family: var(--font-alt); font-weight: 600; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; margin-bottom: 14px; }
.section-title { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(2rem, 5.5vw, 4rem); line-height: .98; letter-spacing: -.005em; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.section-lead { color: var(--muted); font-size: 1.1rem; margin-top: 16px; }

/* ---------- Two paths ---------- */
.paths__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.path-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .4s, box-shadow .4s; }
.path-card:hover { transform: translateY(-8px); border-color: var(--line-2); box-shadow: var(--shadow); }
.path-card__img { aspect-ratio: 16/10; overflow: hidden; }
.path-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.path-card:hover .path-card__img img { transform: scale(1.06); }
.path-card__body { padding: 30px 30px 34px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.path-card__tag { font-family: var(--font-alt); font-weight: 700; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.path-card__tag--orange { background: rgba(255,90,31,.14); color: var(--orange-2); }
.path-card__tag--lime { background: rgba(198,255,58,.14); color: var(--lime); }
.path-card__body h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.6rem, 3.5vw, 2.2rem); line-height: 1; }
.path-card__body > p { color: var(--muted); }
.ticks { display: flex; flex-direction: column; gap: 9px; margin: 4px 0 8px; }
.ticks li { position: relative; padding-left: 28px; color: #cfd6cd; font-size: .96rem; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 4px; width: 17px; height: 17px; border-radius: 50%; background: var(--grad); }
.ticks li::after { content: ""; position: absolute; left: 5px; top: 8px; width: 7px; height: 4px; border-left: 2px solid #0a0d0c; border-bottom: 2px solid #0a0d0c; transform: rotate(-45deg); }

/* ---------- Why ---------- */
.why { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 6vw, 70px); align-items: center; }
.why__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.why__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.why__badge { position: absolute; bottom: 20px; left: 20px; background: var(--grad); color: #0a0d0c; padding: 14px 20px; border-radius: var(--radius); display: flex; flex-direction: column; box-shadow: var(--shadow-lime); }
.why__badge-num { font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.why__badge-txt { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.why__content > p { color: var(--muted); font-size: 1.12rem; margin-bottom: 34px; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feature { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; transition: transform .3s, border-color .3s; }
.feature:hover { transform: translateY(-5px); border-color: var(--line-2); }
.feature__ico {
  width: 46px; height: 46px; margin-bottom: 14px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 13px;
}
.feature__ico svg { width: 24px; height: 24px; display: block; }
.feature:hover .feature__ico { border-color: var(--line-2); }
.feature h4 { font-size: 1.05rem; margin-bottom: 5px; }
.feature p { color: var(--muted); font-size: .92rem; }

/* ---------- Leagues / schedule ---------- */
.leagues { text-align: center; }
.schedule { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 34px; }
.sched-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 24px 30px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 6px; position: relative; overflow: hidden; transition: transform .3s, border-color .3s, box-shadow .3s; }
.sched-card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px; }
.sched-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.sched-card--mens::before { background: var(--grad); }
.sched-card--mixed::before { background: var(--orange); }
.sched-card--hire::before { background: #4aa3ff; }
.sched-card--mens:hover { border-color: rgba(198,255,58,.4); }
.sched-card--mixed:hover { border-color: rgba(255,90,31,.4); }
.sched-card--hire:hover { border-color: rgba(74,163,255,.4); }
.sched-card__day { font-family: var(--font-display); font-size: 2.4rem; line-height: .95; text-transform: uppercase; color: var(--text); margin-bottom: 6px; }
.sched-card__body h3 { font-size: 1.35rem; margin-bottom: 2px; }
.sched-card__body p { color: var(--muted); font-size: .95rem; }
.leagues__legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; margin-bottom: 40px; color: var(--muted); font-size: .9rem; }
.leagues__legend span { display: inline-flex; align-items: center; gap: 8px; }
.swatch { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
.swatch--mens { background: var(--grad); }
.swatch--mixed { background: var(--orange); }
.swatch--hire { background: #4aa3ff; }
.leagues__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ---------- Fixtures & results (live GamzApp embed) ---------- */
.fixtures { text-align: center; }
.fixtures__sub { color: var(--muted); font-size: 1.05rem; margin-top: 16px; }
.fixtures__card {
  /* Matches official GamzApp embed: fWidth=650, fHeight=800 */
  max-width: 650px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(10px, 2vw, 16px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.fixtures__card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: var(--grad);
}
.fixtures__card iframe {
  width: 100% !important;
  max-width: 100%;
  height: 800px;
  border: 0 !important;
  display: block;
  border-radius: calc(var(--radius-lg) - 10px);
  background: var(--surface);
  overflow: hidden;
  transition: height .2s ease;
}
.fixtures__note { margin-top: 18px; color: var(--muted-2); font-size: .85rem; }
.fixtures__note a { color: var(--grad-aqua); font-weight: 600; }
.fixtures__note a:hover { color: var(--grad-lime); }

/* Team details overlay: gamz team pages float above the site, themed */
.pp-overlay { position: fixed; inset: 0; z-index: 3000; display: none;
  align-items: center; justify-content: center; padding: 20px;
  background: rgba(5,8,7,.8); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); }
.pp-overlay.is-open { display: flex; }
.pp-overlay__card { position: relative; width: min(940px, 96vw);
  height: min(88vh, 920px); background: var(--surface);
  border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); }
.pp-overlay__card::before { content: ""; position: absolute; top: 0; left: 0;
  right: 0; height: 5px; background: var(--grad); z-index: 2; }
.pp-overlay__close { position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line-2); background: rgba(10,13,12,.85);
  color: var(--text); font-size: 20px; line-height: 1; cursor: pointer; }
.pp-overlay__close:hover { border-color: var(--grad-aqua); color: var(--grad-aqua); }
.pp-overlay__frame { width: 100%; height: 100%; border: 0; display: block;
  background: var(--surface); }

/* ---------- Court hire ---------- */
.hire { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 6vw, 70px); align-items: center; }
.hire__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.hire__media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.hire__content > p { color: var(--muted); font-size: 1.12rem; margin-bottom: 26px; }
.hire__content > p strong { color: var(--text); }
.hire__list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }
.hire__list li { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; font-weight: 500; }
.hire__list li span { font-size: 1.3rem; }

/* ---------- Steps ---------- */
.steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; position: relative; overflow: hidden; transition: transform .3s, border-color .3s; }
.step:hover { transform: translateY(-6px); border-color: var(--line-2); }
.step__num { font-family: var(--font-display); font-size: 3.4rem; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; display: block; margin-bottom: 14px; }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .94rem; }

/* ---------- FAQ ---------- */
.faq__list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .3s, background .3s; }
.faq__item[open] { border-color: rgba(198,255,58,.3); background: linear-gradient(180deg, rgba(198,255,58,.05), var(--surface)); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-family: var(--font-alt); font-weight: 600; font-size: clamp(1rem, 2.2vw, 1.18rem); color: var(--text);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--grad-aqua); }
.faq__plus { position: relative; flex-shrink: 0; width: 22px; height: 22px; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; background: var(--lime); border-radius: 2px; transition: transform .3s; }
.faq__plus::before { top: 10px; left: 0; width: 22px; height: 2.5px; }
.faq__plus::after { left: 10px; top: 0; width: 2.5px; height: 22px; }
.faq__item[open] .faq__plus::after { transform: rotate(90deg); opacity: 0; }
.faq__answer { padding: 0 24px 24px; }
.faq__answer p { color: var(--muted); font-size: 1rem; max-width: 68ch; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(34px, 6vw, 70px); align-items: start; }
.contact__intro > p { color: var(--muted); font-size: 1.1rem; margin-bottom: 32px; }
.contact__info { display: flex; flex-direction: column; gap: 22px; }
.contact__info li { display: flex; gap: 16px; align-items: flex-start; }
.contact__ico { font-size: 1.5rem; width: 48px; height: 48px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; flex-shrink: 0; }
.contact__k { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); margin-bottom: 3px; }
.contact__v { font-weight: 700; font-size: 1.1rem; color: var(--text); line-height: 1.35; }
a.contact__v:hover { color: var(--grad-aqua); }

.contact__form-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow); }
.form { display: flex; flex-direction: column; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field > span { font-size: .85rem; font-weight: 600; color: #cfd6cd; }
.field .opt { color: var(--muted-2); font-weight: 400; }
.field input, .field textarea, .field select {
  background: var(--bg-2); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 15px; color: var(--text); transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--lime); box-shadow: 0 0 0 3px rgba(198,255,58,.15);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239aa39c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.form__status { font-weight: 600; font-size: .95rem; min-height: 1px; }
.form__status.is-success { color: var(--lime); }
.form__status.is-error { color: #ff6b6b; }
.form__fineprint { font-size: .8rem; color: var(--muted-2); }
.btn.is-loading { pointer-events: none; opacity: .8; }
.btn.is-loading .btn__label { opacity: .5; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: clamp(50px, 8vw, 80px); }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter) 50px; display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 40px; }
.footer__brand .brand { margin-bottom: 16px; }
.footer__brand p { color: var(--muted); max-width: 300px; font-size: .95rem; }
.footer__col h4 { font-family: var(--font-alt); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.footer__col a, .footer__col p { display: block; color: var(--muted); margin-bottom: 10px; font-size: .95rem; transition: color .2s; }
.footer__col a:hover { color: var(--grad-aqua); }
.footer__bar { max-width: var(--maxw); margin: 0 auto; padding: 22px var(--gutter); border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: var(--muted-2); font-size: .84rem; }
.footer__credit { flex-basis: 100%; opacity: .8; }
.footer__credit a { text-decoration: underline; }
.footer__credit a:hover { color: var(--grad-aqua); }

/* ---------- Reveal animation base ---------- */
[data-reveal] { opacity: 0; transform: translateY(34px); }
.no-anim [data-reveal] { opacity: 1; transform: none; }

/* ---------- Keyframes ---------- */
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(198,255,58,.6); } 70% { box-shadow: 0 0 0 10px rgba(198,255,58,0); } 100% { box-shadow: 0 0 0 0 rgba(198,255,58,0); } }
@keyframes underline { to { transform: scaleX(1); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes scrolldot { 0% { top: -40%; } 100% { top: 100%; } }

/* ============================================================
   HERO CONTACT FORM (top-of-page CTA)
   Slim card that sits beside the hero heading on desktop,
   reusing the main .form / .field styles so it matches the
   contact section exactly. Stacks under the heading on mobile.
   ============================================================ */
.pp-hero-form-col { margin-top: 34px; }

.pp-hero-card {
  background: rgba(20,26,24,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--line-2);
  position: relative;
  overflow: hidden;
  padding: 22px 22px 20px;
  border-radius: var(--radius);
}
.pp-hero-card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: var(--grad);
}
.pp-hero-card .kicker { margin-bottom: 6px; font-size: .72rem; }
.pp-hero-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-bottom: 14px;
}

/* Compact form controls inside the slim card */
.pp-hero-card .form { gap: 11px; }
.pp-hero-card .form__row { gap: 11px; }
.pp-hero-card .field { gap: 5px; }
.pp-hero-card .field > span { font-size: .78rem; }
.pp-hero-card .field input,
.pp-hero-card .field select,
.pp-hero-card .field textarea { padding: 10px 12px; font-size: .92rem; }
.pp-hero-card .field select { background-position: right 12px center; padding-right: 34px; }
.pp-hero-card .field textarea { min-height: 52px; }
.pp-hero-card .btn--lg { padding: 13px 24px; font-size: .98rem; }
.pp-hero-card .form__status { font-size: .85rem; }

/* Side-by-side hero: heading left, slim form right */
@media (min-width: 980px) {
  .pp-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: clamp(40px, 5vw, 72px);
    align-items: center;
  }
  .pp-hero-form-col { margin-top: 0; }

  /* Scale the heading so it shares the row comfortably */
  .pp-hero-inner .hero__title { font-size: clamp(2.8rem, 6.2vw, 5.4rem); }
  .pp-hero-inner .hero__sub { font-size: clamp(1rem, 1.4vw, 1.15rem); margin-bottom: 30px; }
  .pp-hero-inner .hero__actions { margin-bottom: 44px; }
}

@media (min-width: 1200px) {
  .pp-hero-inner { grid-template-columns: minmax(0, 1fr) 400px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Switch to burger a little early so the links + phone + CTAs never crowd */
@media (max-width: 1260px) {
  .nav__cta .btn--ghost { display: none; }
}
@media (max-width: 1120px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__phone span { display: none; }
}

@media (max-width: 1024px) {
  .schedule { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .paths__grid { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; }
  .why__media { max-width: 480px; }
  .hire { grid-template-columns: 1fr; }
  .hire__media { order: -1; }
  .contact__grid { grid-template-columns: 1fr; }
  .steps__grid { grid-template-columns: 1fr 1fr; }
  .nav__cta .btn { display: none; }
}

@media (max-width: 560px) {
  :root { --radius-lg: 22px; }
  .hero { padding-top: 108px; }
  .hero__stats { gap: 22px 34px; }
  .hero__actions .btn { flex: 1 1 auto; }
  .schedule { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .hire__list { grid-template-columns: 1fr; }
  .steps__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
  .marquee span { font-size: 1.2rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .brand__mark svg { animation: none; }
  .hero__bg img { transform: scale(1); }
}

/* Touch devices: hide the cursor glow */
@media (hover: none) {
  .cursor-shadow { display: none !important; }
}