/*
Theme Name:   ScoreUp Child
Description:  Child theme for Twenty Twenty-Four — ScoreUp sports technology platform.
Author:       ScoreUp / Frames Agency
Template:     twentytwentyfour
Version:      1.1.0
Text Domain:  scoreup-child
*/

/* ══════════════════════════════════════════════════
   ScoreUp design system and responsive layouts.
   Content is edited through ACF in WordPress; layout
   and visual behavior are controlled in this file.
   ══════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Variables ── */
:root {
  --black:        #000000;
  --black-soft:   #0c0c0a;
  --warm-white:   #f6f3ec;
  --sand:         #e6dcc8;
  --sand-deep:    #d4c5a3;
  --ink:          #15140f;
  --ink-soft:     rgba(21,20,15,0.6);
  --ink-faint:    rgba(21,20,15,0.34);
  --dark:          #15140f;
  --text-muted:   rgba(21,20,15,0.60);

  --green:        #1f8a44;
  --green-deep:   #1f8a44;
  --green-tint:   rgba(31,138,68,0.12);
  --green-line:   rgba(31,138,68,0.4);

  --red:          #d63d2f;
  --red-tint:     rgba(214,61,47,0.12);

  --cream-muted:  rgba(246,243,236,0.6);
  --cream-faint:  rgba(246,243,236,0.32);
  --line-on-dark: rgba(246,243,236,0.12);
  --line-on-light:rgba(21,20,15,0.12);

  --ff-display: 'Archivo', sans-serif;
  --ff-body:    'Inter', sans-serif;
  --max: 1180px;
  --nav-h: 70px;
}

/* ── Base ── */
body.scoreup-template {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.scoreup-template.scoreup-menu-open { overflow: hidden; }
.scoreup-site { width: 100%; min-height: 100vh; overflow: clip; }
.scoreup-site img { display: block; max-width: 100%; }
.scoreup-site a { color: inherit; text-decoration: none; }
.scoreup-site button,
.scoreup-site input,
.scoreup-site select,
.scoreup-site textarea { font: inherit; }
.scoreup-site :where(h1, h2, h3, h4, p) {
  margin: 0;
}
.scoreup-main section[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 32px; }

.su-skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--warm-white);
  color: var(--ink);
  font-weight: 700;
}
.su-skip-link:focus { top: 16px; }

/* ── Background helpers ── */
.bg-dark  { background: var(--black); color: var(--warm-white); }
.bg-soft  { background: var(--black-soft); color: var(--warm-white); }
.bg-light { background: var(--warm-white); color: var(--ink); }
.bg-sand  { background: var(--sand); color: var(--ink); }

/* ── Eyebrow ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 18px;
}
.bg-dark .eyebrow, .bg-soft .eyebrow { color: var(--green); }
.bg-light .eyebrow, .bg-sand .eyebrow { color: var(--green-deep); }
.eyebrow::before { content: ''; width: 20px; height: 2px; background: currentColor; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: 2px;
  font-family: var(--ff-body); font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  cursor: pointer; border: 1px solid transparent; transition: all 0.18s; white-space: nowrap;
}
.btn-green { background: var(--green); color: var(--warm-white); }
.btn-green:hover { background: #156b35; color: var(--warm-white); transform: translateY(-1px); }
.btn-outline-dark { background: transparent; color: var(--warm-white); border-color: rgba(246,243,236,0.35); }
.btn-outline-dark:hover { border-color: var(--green); color: var(--green); }
.btn-dark { background: var(--ink); color: var(--warm-white); }
.btn-dark:hover { background: var(--green-deep); }
.btn-outline-light { background: transparent; color: var(--ink); border-color: var(--line-on-light); }
.btn-outline-light:hover { border-color: var(--ink); }
/* Inner page hero secondary buttons */
.page-hero .btn-outline-light {
  color: var(--warm-white);
  border-color: rgba(246,243,236,0.35);
  background: transparent;
}

.page-hero .btn-outline-light:hover,
.page-hero .btn-outline-light:focus-visible {
  color: var(--green);
  border-color: var(--green);
}

/* ── NAV ── */
.scoreup-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(10,10,8,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-on-dark);
}
body.admin-bar .scoreup-nav { top: 32px; }
.nav-inner {
  width: 100%;
  max-width: var(--max);
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.nav-logo {
  flex: 0 0 auto;
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: lowercase;
  color: var(--warm-white);
}
.nav-logo span { color: var(--green); }
.nav-logo img { width: auto; height: 22px; }
.nav-drawer {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 12.5px; font-weight: 500; letter-spacing: 0.03em; color: var(--cream-muted); transition: color 0.15s; }
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active { color: var(--green); }
.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-social { display: flex; align-items: center; gap: 16px; }
.nav-social a { color: var(--cream-muted); transition: color 0.15s; display: flex; }
.nav-social a:hover,
.nav-social a:focus-visible { color: var(--green); }
.nav-social svg { width: 16px; height: 16px; fill: currentColor; }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--warm-white);
  cursor: pointer;
}
/* ══ HERO ══ */
.hero {
  position: relative;
  min-height: 0;
  padding-top: var(--nav-h);
  background: var(--black);
  overflow: hidden;
  isolation: isolate;
}

/* Editable hero background image */
.hero.hero-has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
  180deg,
  rgba(0,0,0,0.50) 0%,
  rgba(0,0,0,0.58) 45%,
  rgba(0,0,0,0.80) 100%
    ),
    var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.85;
  filter: saturate(0.85) contrast(1.05);
  pointer-events: none;
}
.hero-court-bg {
  z-index: 1;
}

.hero-top,
.profile-picker,
.hero-foot {
  position: relative;
  z-index: 2;
}
  position: relative;
  min-height: 0;
  padding-top: var(--nav-h);
  background: var(--black);
  overflow: hidden;
}

.hero-court-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  z-index: 0;
}

.hero-court-bg svg {
  position: absolute;
  top: 50%; left: 50%;
  width: 1400px;
  max-width: 160vw;
  transform: translate(-50%, -50%) rotate(-6deg);
}

.hero-court-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.8) 100%);
}

.hero-top {
  position: relative;
  z-index: 2;
  padding: 64px 32px 40px;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow-row {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 28px;
}
.hero-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.hero-eyebrow-text { font-size: 11px; letter-spacing: 0.18em; text-transform: none; color: var(--warm-white); font-style: italic; font-weight: 500; }

h1.hero-h1 {
  font-family: var(--ff-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--warm-white);
}
.hero-line1 { display: block; font-size: clamp(40px, 8vw, 88px); }
.hero-line2 { display: block; font-size: clamp(40px, 8vw, 88px); }
.hero-line2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--green);
}
.hero-line3 {
  display: block;
  font-size: clamp(40px, 8vw, 88px);
  color: var(--cream-faint);
  -webkit-text-stroke: 1.5px var(--cream-faint);
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  max-width: 480px;
  margin: 28px auto 0;
  font-size: 14.5px;
  color: var(--cream-muted);
  line-height: 1.7;
}

/* ── Profile Picker ── */
.profile-picker {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line-on-dark);
  margin-top: 48px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.profile-card {
  position: relative;
  padding: 56px 40px 48px;
  border-right: 1px solid var(--line-on-dark);
  cursor: pointer;
  overflow: hidden;
  transition: background 0.25s;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.profile-card:last-child { border-right: none; }
.profile-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.48) 60%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
}

.profile-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.22;
  filter: saturate(0.6) contrast(1.1);
  transition: opacity 0.3s, transform 0.4s;
  transform: scale(1.04);
}
.profile-card:hover .profile-card-bg { opacity: 0.4; transform: scale(1.1); }

.profile-card-num {
  position: relative; z-index: 2;
  font-family: var(--ff-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.profile-card-title {
  position: relative; z-index: 2;
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--warm-white);
  margin-bottom: 12px;
}
.profile-card-title em { font-style: italic; font-weight: 500; color: var(--green); }

.profile-card-sub {
  position: relative; z-index: 2;
  font-size: 13px;
  color: var(--cream-muted);
  line-height: 1.55;
  margin-bottom: 20px;
  max-width: 220px;
}

.profile-card-cta {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.03em;
  color: var(--green);
  transition: gap 0.15s;
}
.profile-card:hover .profile-card-cta { gap: 13px; }

.profile-card.accent .profile-card-num { color: var(--red); }
.profile-card.accent .profile-card-cta { color: var(--red); }
.profile-card.accent .profile-card-title em { color: var(--red); }

/* ── Hero foot ── */
.hero-foot {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line-on-dark);
  padding: 22px 32px;
  max-width: var(--max);
  margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.hero-foot-tag { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); }
.hero-foot-terr { font-size: 11px; color: var(--cream-muted); }
.hero-foot-terr strong { color: var(--warm-white); font-weight: 600; }

/* ══ SECTIONS ══ */
.section { padding: 110px 0; }
.section-tight { padding: 80px 0; }

/* ── Editorial header ── */
.ed-header { margin-bottom: 56px; }
.ed-header h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.96;
}
.ed-header .ln { display: block; font-size: clamp(30px, 4.6vw, 54px); }
.ed-header em { font-style: italic; font-weight: 500; color: var(--green-deep); }
.bg-dark .ed-header em, .bg-soft .ed-header em { color: var(--green); }
.ed-header p { margin-top: 18px; font-size: 14.5px; max-width: 440px; line-height: 1.7; }
.bg-light .ed-header p, .bg-sand .ed-header p { color: var(--ink-soft); }
.bg-dark .ed-header p, .bg-soft .ed-header p { color: var(--cream-muted); }

/* ══ ABOUT ══ */
.about-inner { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(1.05) contrast(1.05); }
.about-badge {
  position: absolute; bottom: -1px; left: -1px;
  background: var(--ink); padding: 16px 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.about-badge-top { font-size: 9px; color: var(--cream-faint); letter-spacing: 0.12em; text-transform: uppercase; }
.about-badge-name { font-family: var(--ff-display); font-size: 16px; font-weight: 700; letter-spacing: 0.04em; color: var(--warm-white); }
.about-badge-sub { font-size: 10.5px; color: var(--green); font-weight: 500; }

.about-text p { color: var(--ink-soft); font-size: 15px; line-height: 1.75; margin-bottom: 18px; max-width: 480px; }
.about-rule { width: 56px; height: 3px; background: var(--green); margin: 26px 0; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.pill { border: 1px solid var(--line-on-light); border-radius: 2px; padding: 6px 14px; font-size: 11.5px; letter-spacing: 0.03em; color: var(--ink-soft); }


/* ══ SOLUTIONS ══ */
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-on-dark); border-left: 1px solid var(--line-on-dark); }
.sol-card { padding: 42px 34px; border-right: 1px solid var(--line-on-dark); border-bottom: 1px solid var(--line-on-dark); transition: background 0.2s; display: flex; flex-direction: column; }
.sol-card:hover { background: rgba(246,243,236,0.03); }
.sol-num { font-family: var(--ff-display); font-size: 13px; font-weight: 700; color: var(--green); letter-spacing: 0.06em; margin-bottom: 26px; }
.sol-card h3 { font-family: var(--ff-display); font-size: 21px; font-weight: 700; letter-spacing: -0.01em; color: var(--warm-white); margin-bottom: 14px; line-height: 1.15; }
.sol-card p { font-size: 13.5px; color: var(--cream-muted); line-height: 1.7; flex: 1; margin-bottom: 26px; }
.sol-card-cta { font-size: 12.5px; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 6px; transition: gap 0.15s; border-top: 1px solid var(--line-on-dark); padding-top: 18px; }
.sol-card:hover .sol-card-cta { gap: 10px; }

/* ══ AUDIENCE ══ */
.audience-tabs { display: flex; justify-content: center; gap: 0; margin-bottom: 56px; border-bottom: 1px solid var(--line-on-light); }
.aud-tab { padding: 14px 32px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; border: none; background: transparent; color: var(--ink-faint); transition: color 0.2s; font-family: var(--ff-body); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.aud-tab.active { color: var(--ink); border-bottom-color: var(--green-deep); }
.aud-tab:not(.active):hover { color: var(--ink-soft); }
.aud-panel { display: none; }
.aud-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.aud-panel-text h3 { font-family: var(--ff-display); font-weight: 800; letter-spacing: -0.015em; line-height: 1.02; margin-bottom: 18px; font-size: clamp(26px, 3.2vw, 38px); }
.aud-panel-text h3 em { font-style: italic; font-weight: 500; color: var(--green-deep); }
.aud-panel-text p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.75; margin-bottom: 26px; max-width: 440px; }
.aud-features { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 13px; }
.aud-features li { display: flex; align-items: baseline; gap: 12px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; padding-bottom: 13px; border-bottom: 1px solid var(--line-on-light); }
.aud-features li:last-child { border-bottom: none; padding-bottom: 0; }
.aud-features li::before { content: ''; width: 5px; height: 5px; background: var(--green-deep); flex-shrink: 0; align-self: center; }
.aud-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.aud-panel-visual { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.aud-panel-img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.05); }
.aud-panel-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--black); color: var(--green);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px;
}

/* ══ INSTAGRAM ══ */
.ig-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; gap: 20px; flex-wrap: wrap; }
.ig-handle { display: flex; align-items: center; gap: 9px; color: var(--green); font-size: 13px; font-weight: 600; border-bottom: 1px solid var(--green-line); padding-bottom: 4px; transition: opacity 0.15s; }
.ig-handle:hover { opacity: 0.7; }
.ig-handle svg { width: 16px; height: 16px; fill: currentColor; }
.ig-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }
.ig-post { aspect-ratio: 1; background: var(--black-soft); display: flex; align-items: center; justify-content: center; cursor: pointer; position: relative; overflow: hidden; }
.ig-post img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.1); transition: transform 0.3s; }
.ig-post:hover img { transform: scale(1.06); }
.ig-post-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,8,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.ig-post:hover .ig-post-overlay { opacity: 1; }
.ig-post-overlay svg { width: 22px; height: 22px; fill: var(--green); }

/* ══ TERRITORY ══ */
.territory-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.territory-grid { display: flex; flex-direction: column; gap: 1px; background: var(--line-on-light); border: 1px solid var(--line-on-light); }
.terr-row { background: var(--sand); padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; }
.terr-row.exclusive { background: var(--warm-white); }
.terr-state { font-family: var(--ff-display); font-size: 16px; font-weight: 700; }
.terr-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-deep); font-weight: 600; }
.terr-national { background: var(--sand-deep); padding: 16px 22px; font-size: 12.5px; color: var(--ink-soft); }
.terr-national strong { color: var(--ink); }

/* ══ CONTACT ══ */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-left p { color: var(--ink-soft); font-size: 15px; line-height: 1.75; margin-bottom: 36px; max-width: 440px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: baseline; gap: 14px; font-size: 14px; color: var(--ink-soft); padding-bottom: 14px; border-bottom: 1px solid var(--line-on-light); }
.contact-detail:last-child { border-bottom: none; }
.contact-detail-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); width: 70px; flex-shrink: 0; }
.contact-detail a { color: var(--ink); font-weight: 600; }
.contact-detail a:hover { color: var(--green-deep); }
.contact-social { display: flex; gap: 16px; }
.contact-social a { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--ink-soft); transition: color 0.15s; }
.contact-social a:hover { color: var(--green-deep); }
.contact-social svg { width: 15px; height: 15px; fill: currentColor; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.form-group input, .form-group select, .form-group textarea {
  background: transparent; border: none; border-bottom: 1px solid var(--line-on-light);
  padding: 10px 2px; font-family: var(--ff-body); font-size: 14px; color: var(--ink);
  outline: none; transition: border-color 0.15s; appearance: none; -webkit-appearance: none; border-radius: 0;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-deep); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select option { background: var(--warm-white); }

/* ── CF7 overrides so form inherits our styles ── */
.wpcf7-form { display: flex; flex-direction: column; gap: 16px; }
.wpcf7-form p { margin: 0; }

/* ══ FOOTER ══ */
.scoreup-footer { padding: 56px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo-image { width: auto; height: 26px; margin-bottom: 16px; }
.footer-logo { font-family: var(--ff-display); font-size: 15px; font-weight: 600; letter-spacing: 0.3em; color: var(--warm-white); margin-bottom: 14px; }
.footer-logo span { color: var(--green); }
.footer-brand p { font-size: 12.5px; color: var(--cream-muted); line-height: 1.7; max-width: 230px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: var(--cream-muted); transition: color 0.15s; }
.footer-social a:hover,
.footer-social a:focus-visible { color: var(--green); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-faint); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { font-size: 12.5px; color: var(--cream-muted); transition: color 0.15s; }
.footer-col ul a:hover,
.footer-col ul a:focus-visible { color: var(--green); }
.footer-bottom { border-top: 1px solid var(--line-on-dark); padding-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 11.5px; color: var(--cream-faint); }
.padelboard-lockup { display: inline-flex; align-items: center; gap: 10px; font-size: 10.5px; letter-spacing: 0.04em; }
.pb-name { font-family: var(--ff-display); color: var(--warm-white); font-weight: 700; letter-spacing: 0.06em; }
.pb-powered { color: var(--cream-faint); }
.pb-powered strong { color: var(--green); font-weight: 600; }


/* Light-background solution cards */
.bg-light .solutions-grid,
.bg-sand .solutions-grid { border-color: var(--line-on-light); }
.bg-light .sol-card,
.bg-sand .sol-card { border-color: var(--line-on-light); }
.bg-light .sol-card:hover,
.bg-sand .sol-card:hover { background: rgba(21,20,15,0.035); }
.bg-light .sol-card h3,
.bg-sand .sol-card h3 { color: var(--ink); }
.bg-light .sol-card p,
.bg-sand .sol-card p { color: var(--ink-soft); }
.bg-light .sol-card-cta,
.bg-sand .sol-card-cta { border-top-color: var(--line-on-light); color: var(--green-deep); }

/* Contact Form 7 */
.wpcf7-form label { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.wpcf7-form-control-wrap { display: block; margin-top: 7px; }
.wpcf7-form input:not([type="submit"]),
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-on-light);
  border-radius: 0;
  padding: 10px 2px;
  color: var(--ink);
  outline: none;
}
.wpcf7-form input:not([type="submit"]):focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus { border-bottom-color: var(--green-deep); }
.wpcf7-form textarea { min-height: 110px; resize: vertical; }
.wpcf7-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: var(--warm-white);
  font-weight: 600;
  cursor: pointer;
}
.wpcf7-submit:hover { background: var(--green-deep); border-color: var(--green-deep); }
.contact-fallback { padding: 28px; border: 1px solid var(--line-on-light); background: rgba(21,20,15,0.025); }
.contact-fallback p { margin-bottom: 18px; color: var(--ink-soft); }
.admin-setup-note { margin-top: 12px !important; font-size: 12px; color: var(--ink-soft); }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } html { scroll-behavior: auto; } }

/* ── WordPress / Twenty Twenty-Four resets ── */
body.scoreup-template { --wp--style--global--content-size: var(--max); }
body.scoreup-template .scoreup-site { background: var(--warm-white); }
.scoreup-site .bg-dark,
.scoreup-site .bg-soft,
.scoreup-site .scoreup-footer { color: var(--warm-white); }
.scoreup-site .bg-light,
.scoreup-site .bg-sand { color: var(--ink); }
.scoreup-site .bg-dark h1,
.scoreup-site .bg-dark h2,
.scoreup-site .bg-dark h3,
.scoreup-site .bg-dark h4,
.scoreup-site .bg-soft h1,
.scoreup-site .bg-soft h2,
.scoreup-site .bg-soft h3,
.scoreup-site .bg-soft h4,
.scoreup-site .scoreup-footer h1,
.scoreup-site .scoreup-footer h2,
.scoreup-site .scoreup-footer h3,
.scoreup-site .scoreup-footer h4 { color: var(--warm-white); }
.scoreup-site .bg-light h1,
.scoreup-site .bg-light h2,
.scoreup-site .bg-light h3,
.scoreup-site .bg-light h4,
.scoreup-site .bg-sand h1,
.scoreup-site .bg-sand h2,
.scoreup-site .bg-sand h3,
.scoreup-site .bg-sand h4 { color: var(--ink); }
.ig-icon { width: 16px; height: 16px; fill: currentColor; }
.aud-panel[hidden] { display: none !important; }

/* ══════════════════════════════════════════════════════════════
   INNER PAGES — Clubs / Brands / Players
   ══════════════════════════════════════════════════════════════ */

/* ── Back link (breadcrumb) ── */
.back-link {
  display: flex;
width: fit-content;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--green); }

/* ── Inner page hero ── */
.page-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.4) 55%, rgba(0,0,0,0.18) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 90px 0 64px;
}
.page-hero-content .eyebrow { color: var(--green); }
.page-hero-content h1 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 76px);
  color: var(--warm-white);
  line-height: 1.04;
  margin: 14px 0 22px;
  max-width: 700px;
}
.page-hero-content h1 em {
  font-style: italic;
  color: var(--green);
}
.page-hero-content p {
  font-size: 17px;
  color: var(--cream-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 32px;
}
.page-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Split intro (two-column) ── */
.split-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.split-intro-left .eyebrow { margin-bottom: 16px; }
.split-intro-left h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 46px);
  color: var(--dark);
  line-height: 1.1;
}
.split-intro-left h2 em { color: var(--green); font-style: italic; }
.split-intro-right p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Step cards (process / how it works) ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 22px 24px;
}
.bg-light .step-card {
  background: var(--warm-white);
  border-color: rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.step-step {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.step-card h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--warm-white);
  margin-bottom: 9px;
  line-height: 1.25;
}
.bg-light .step-card h4 { color: var(--dark); }
.step-card p {
  font-size: 13.5px;
  color: var(--cream-muted);
  line-height: 1.65;
}
.bg-light .step-card p { color: var(--text-muted); }

/* ── Stat grid (network numbers) ── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  margin: 40px 0;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--green);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: 8px;
  display: block;
  line-height: 1.45;
}

/* ── Formats grid (ad placements) ── */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 44px;
}
.format-card {
  background: var(--warm-white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.format-card h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 10px;
}
.format-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Revenue callout ── */
.revenue-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.revenue-callout-text .eyebrow { color: var(--green); }
.revenue-callout-text h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 46px);
  color: var(--dark);
  line-height: 1.08;
  margin-bottom: 16px;
}
.revenue-callout-text h2 em { color: var(--green); font-style: italic; }
.revenue-callout-text p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.revenue-callout-stat {
  text-align: center;
  flex-shrink: 0;
  min-width: 180px;
  background: var(--green);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rev-stat-num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 52px;
  color: var(--warm-white);
  line-height: 1;
}
.rev-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
  white-space: pre-line;
}
.rev-stat-note {
  font-size: 10.5px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}

/* ── CTA Banner ── */
.cta-banner { text-align: center; }
.cta-banner .eyebrow { justify-content: center; margin-bottom: 18px; }
.cta-banner h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 54px);
  color: var(--warm-white);
  line-height: 1.06;
  margin-bottom: 18px;
}
.bg-sand .cta-banner h2,
.bg-light .cta-banner h2 { color: var(--dark); }
.cta-banner h2 .ln { display: block; }
.cta-banner h2 em { color: var(--green); font-style: italic; }
.cta-banner p {
  font-size: 16px;
  color: var(--cream-muted);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.bg-sand .cta-banner p,
.bg-light .cta-banner p { color: var(--text-muted); }
.cta-banner-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --nav-h: 68px; }
  body.admin-bar .scoreup-nav { top: 46px; }

  .scoreup-nav { height: var(--nav-h); }
  .nav-inner { padding: 0 20px; flex-wrap: wrap; gap: 0; }
  .nav-logo { font-size: 14px; letter-spacing: 0.26em; }
  .nav-toggle { display: inline-flex; }
  .nav-drawer {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100svh - var(--nav-h));
    overflow-y: auto;
    padding: 8px 20px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(6,6,6,0.98);
    border-top: 1px solid var(--line-on-dark);
    box-shadow: 0 18px 36px rgba(0,0,0,0.45);
  }
  .scoreup-nav.nav-open .nav-drawer { display: flex; }
  .nav-links { width: 100%; flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; width: 100%; padding: 13px 4px; font-size: 14px; color: var(--warm-white); }
  .nav-right { width: 100%; padding-top: 16px; margin-top: 6px; border-top: 1px solid var(--line-on-dark); justify-content: space-between; }
  .nav-cta { justify-content: center; }

  .hero { min-height: 0; }
  .hero-court-bg { height: calc(100svh - var(--nav-h)); opacity: 0.18; }
  .hero-court-bg svg { width: 185vw; max-width: none; }
  .hero-top {
    min-height: calc(100svh - var(--nav-h));
    padding: 42px 20px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-eyebrow-row { margin-bottom: 24px; }
  h1.hero-h1 { width: 100%; line-height: 0.98; overflow: visible; }
  .hero-line1 { font-size: clamp(42px, 12.6vw, 68px); }
  .hero-line2 { font-size: clamp(44px, 13.2vw, 72px); }
  .hero-line3 {
    margin-top: 12px;
    font-size: clamp(25px, 7.6vw, 39px);
    line-height: 1.08;
    white-space: normal;
    opacity: 1;
    -webkit-text-stroke: 1px rgba(246,243,236,0.62);
  }
  .hero-sub { width: 100%; max-width: 420px; margin-top: 28px; font-size: 14px; line-height: 1.65; }

  .profile-picker { margin-top: 0; padding: 20px 16px 30px; border-top: 1px solid var(--line-on-dark); }
  .profile-grid { grid-template-columns: 1fr; gap: 14px; }
  .profile-card {
    min-height: 300px;
    width: 100%;
    padding: 32px 26px 28px;
    border: 1px solid var(--line-on-dark);
    border-radius: 12px;
  }
  .profile-card:last-child { border: 1px solid var(--line-on-dark); }
  .profile-card-bg { opacity: 0.38; transform: scale(1.02); }
  .profile-card-title { max-width: 320px; font-size: clamp(28px, 8vw, 40px); }
  .profile-card-sub { max-width: 270px; font-size: 14px; }
  .hero-foot { padding: 18px 20px; flex-direction: column; align-items: flex-start; gap: 6px; }

  .container { padding: 0 20px; }
  .section { padding: 68px 0; }
  .section-tight { padding: 46px 0; }
  .ed-header { margin-bottom: 38px; }
  .ed-header .ln { font-size: clamp(30px, 9vw, 44px); }

  .about-inner,
  .territory-inner,
  .contact-inner,
  .split-intro,
  .revenue-callout,
  .aud-panel.active { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { width: 100%; max-width: none; }
  .about-img { width: 100%; max-height: 520px; object-fit: cover; }
  .solutions-grid { grid-template-columns: 1fr; }
  .sol-card { padding: 34px 26px; }

  .audience-tabs { justify-content: flex-start; overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
  .audience-tabs::-webkit-scrollbar { display: none; }
  .aud-tab { flex: 0 0 auto; padding: 12px 18px; }
  .aud-panel-visual { display: block; width: 100%; aspect-ratio: 4 / 3; }

  .ig-header { flex-direction: column; align-items: flex-start; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .form-row { grid-template-columns: 1fr; }

  .page-hero { min-height: 540px; }
  .page-hero-content { padding: 116px 0 52px; }
  .page-hero-content h1 { font-size: clamp(38px, 11vw, 62px); }
  .page-hero-content p { font-size: 15px; }
  .steps-grid,
  .formats-grid { grid-template-columns: 1fr; }
  .revenue-callout-stat { width: 100%; min-width: 0; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .hero-top { padding-left: 18px; padding-right: 18px; }
  .hero-line1 { font-size: clamp(38px, 12vw, 58px); }
  .hero-line2 { font-size: clamp(40px, 13vw, 62px); }
  .hero-line3 { font-size: clamp(23px, 7.2vw, 34px); }
  .profile-picker { padding-left: 12px; padding-right: 12px; }
  .profile-card { min-height: 280px; padding: 28px 22px; }
  .hero-foot-terr { line-height: 1.55; }
  .aud-ctas,
  .page-hero-ctas,
  .cta-banner-btns { flex-direction: column; align-items: stretch; }
  .aud-ctas .btn,
  .page-hero-ctas .btn,
  .cta-banner-btns .btn { width: 100%; justify-content: center; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 380px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .hero-line1 { font-size: 36px; }
  .hero-line2 { font-size: 38px; }
  .hero-line3 { font-size: 22px; }
  .profile-card-title { font-size: 27px; }
  .nav-social { display: none; }
  .nav-cta { width: 100%; }
}
/* ══ SCOREUP BUTTON COLOR FIX ══ */

.scoreup-site a.btn-dark,
.scoreup-site button.btn-dark,
.scoreup-site .btn-dark,
.scoreup-site input[type="submit"].wpcf7-submit {
  background-color: var(--ink) !important;
  border-color: var(--ink) !important;
  color: var(--warm-white) !important;
  -webkit-text-fill-color: var(--warm-white) !important;
}

.scoreup-site a.btn-dark:hover,
.scoreup-site a.btn-dark:focus-visible,
.scoreup-site button.btn-dark:hover,
.scoreup-site button.btn-dark:focus-visible,
.scoreup-site .btn-dark:hover,
.scoreup-site .btn-dark:focus-visible,
.scoreup-site input[type="submit"].wpcf7-submit:hover,
.scoreup-site input[type="submit"].wpcf7-submit:focus-visible {
  background-color: var(--green-deep) !important;
  border-color: var(--green-deep) !important;
  color: var(--warm-white) !important;
  -webkit-text-fill-color: var(--warm-white) !important;
}
/* ══ SCOREUP FOOTER TYPOGRAPHY FIX ══ */

.scoreup-site footer,
.scoreup-site footer p,
.scoreup-site footer a,
.scoreup-site footer li,
.scoreup-site footer span,
.scoreup-site footer h4 {
  font-family: var(--ff-body) !important;
}

.scoreup-site footer .footer-col h4 {
  font-family: var(--ff-body) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--cream-faint) !important;
}

.scoreup-site footer .footer-col ul a {
  font-family: var(--ff-body) !important;
  font-size: 12.5px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.scoreup-site footer .footer-logo,
.scoreup-site footer .pb-name {
  font-family: var(--ff-display) !important;
}

/* Hide hero footer distributor language */
.hero-foot-tag {
  display: none !important;
}

.hero-foot-terr {
  font-size: 0 !important;
}

.hero-foot-terr::after {
  content: "available nationwide";
  font-size: 11px;
  color: var(--cream-muted);
}

.hero-foot {
  justify-content: flex-end;
}
/* Hide audience image tags on homepage */
.aud-panel-tag {
  display: none !important;
}
