/* ═══════════════════════════════════════════════════
   LOCKERROOM — main.css
   Design system, components, landing page, legal pages
═══════════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── CSS VARIABLES ── */
:root {
  --bg-base:       #FFFFFF;
  --bg-surface:    #F5F5F7;
  --bg-elevated:   #EBEBEF;

  --accent:        #050508;
  --accent-dim:    rgba(0, 0, 0, 0.04);
  --accent-border: rgba(0, 0, 0, 0.10);

  --text-primary:  #050508;
  --text-secondary:#4A4A55;
  --text-muted:    #9A9AA5;

  --glass-bg:      rgba(0, 0, 0, 0.03);
  --glass-border:  rgba(0, 0, 0, 0.08);
  --glass-hover:   rgba(0, 0, 0, 0.05);

  --border:        rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.15);

  --max-width:         1200px;
  --container-padding: clamp(16px, 4vw, 48px);

  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    24px;
  --radius-pill:  9999px;
  --radius-phone: 44px;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ── LAYOUT ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ── ACCESSIBILITY ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ═══════════════════════════════════════════════════
   COMPONENTS
═══════════════════════════════════════════════════ */

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.8vw, 15px);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(13px, 1.8vw, 15px);
  padding: 13px 27px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-secondary:hover { background: var(--glass-bg); border-color: rgba(255,255,255,0.2); }
.btn-secondary:focus-visible { outline: 2px solid var(--text-primary); outline-offset: 3px; }

/* ── TYPOGRAPHY ── */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 6vw, 80px);
  letter-spacing: 1.5px;
  line-height: 1;
  color: var(--text-primary);
  margin: 16px 0 20px;
  word-break: keep-all;
}

.section-sub {
  font-size: clamp(14px, 2.5vw, 17px);
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 16px; left: 0; right: 0;
  z-index: 100;
  padding: 0 var(--container-padding);
  background: transparent;
  pointer-events: none;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
}

/* Logo pill — floating glass container */
.nav-pill-logo {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
  border-radius: 16px;
  box-shadow: none;
  padding: 10px 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 1.5px;
  color: var(--text-primary);
}
.nav-logo img {
  width: 28px; height: 28px;
  border-radius: 7px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  padding: 9px 18px;
  font-size: 13px;
}

/* Hamburger — same frosted glass as pill when visible (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 14px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile drawer — same frosted glass as nav pill & about back */
.nav-drawer {
  display: none;
  position: fixed;
  top: 72px;
  right: var(--container-padding);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  padding: 8px 0;
  z-index: 99;
  flex-direction: column;
  min-width: 180px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 10px 20px;
  border-bottom: none;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-drawer a:hover { color: var(--text-primary); background: rgba(0,0,0,0.04); }
.nav-drawer-cta {
  margin: 6px 12px 8px;
  padding: 9px 16px !important;
  font-size: 13px !important;
  color: #FFFFFF !important;
  border-radius: 999px !important;
  text-align: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  padding-top: calc(16px + 56px + 80px);
  padding-bottom: 80px;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  position: relative;
  overflow: hidden;
}

/* Background effects */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 65% 5%, rgba(0,0,0,0.02) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 70%, rgba(0,0,0,0.01) 0%, transparent 50%);
  pointer-events: none;
}
/* Dot grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 0%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 560px; }

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 7.5vw, 104px);
  letter-spacing: 2px;
  line-height: 0.93;
  color: var(--text-primary);
  margin: 20px 0 24px;
  word-break: keep-all;
}

.hero-sub {
  font-size: clamp(14px, 2.5vw, 17px);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Stat row */
.stat-row {
  display: flex;
  margin-top: 48px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.stat-item {
  flex: 1;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { border-right: none; padding-right: 0; }

.stat-number {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
/* Underglow — shadow beneath the phone */
.hero-visual::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-60%);
  width: 320px;
  height: 80px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.04) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: underglow-pulse 3.5s ease-in-out infinite;
  filter: blur(8px);
}

@keyframes underglow-pulse {
  0%, 100% { opacity: 0.6; transform: translateX(-60%) scaleX(1); }
  50%       { opacity: 1;   transform: translateX(-60%) scaleX(1.08); }
}

.phone-frame {
  position: relative;
  width: 280px;
  border-radius: var(--radius-phone);
  border: 1.5px solid rgba(0,0,0,0.10);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.04),
    0 32px 80px rgba(0,0,0,0.18),
    0 8px 32px rgba(0,0,0,0.10);
  transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.6s ease;
  z-index: 1;
}
.phone-frame:hover {
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg) translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.08),
    0 40px 100px rgba(0,0,0,0.22),
    0 12px 40px rgba(0,0,0,0.12);
}
.phone-frame img { width: 100%; height: auto; display: block; }

/* ═══════════════════════════════════════════════════
   TICKER
═══════════════════════════════════════════════════ */
.ticker-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: var(--bg-surface);
  overflow: hidden;
}
.ticker-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-scroll 35s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.ticker-item span { font-size: 16px; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════
   FEATURES — BENTO GRID
═══════════════════════════════════════════════════ */
.features {
  padding: 120px var(--container-padding);
  background: var(--bg-base);
}
.section-header {
  text-align: center;
  margin-bottom: 80px;
}
.section-header .section-sub { margin: 0 auto; }

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "messaging playbooks"
    "schedule  plays";
  gap: 14px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.bento-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.3s;
}
.bento-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }

.bento-card-inner { padding: 28px 32px; }

.bento-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}
.bento-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.bento-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Image containers inside bento cards */
.bento-media {
  width: 100%;
  overflow: hidden;
}
.bento-media img {
  width: 100%;
  display: block;
}

/* Named grid areas */
.bento-messaging { grid-area: messaging; }
.bento-playbooks { grid-area: playbooks; }
.bento-schedule  { grid-area: schedule; }
.bento-plays     { grid-area: plays; }

/* Messaging — phone rising from bottom of card */
.bento-messaging .bento-media {
  height: 300px;
  background: var(--bg-elevated);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.bento-messaging .bento-media img {
  width: 62%;
  height: auto;
  object-fit: contain;
  object-position: top;
  border-radius: 28px 28px 0 0;
  border: 1px solid var(--border-strong);
  border-bottom: none;
  box-shadow: 0 -20px 50px rgba(0,0,0,0.6);
}

/* Playbooks — same treatment */
.bento-playbooks .bento-media {
  height: 300px;
  background: var(--bg-elevated);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.bento-playbooks .bento-media img {
  width: 62%;
  height: auto;
  object-fit: contain;
  object-position: top;
  border-radius: 28px 28px 0 0;
  border: 1px solid var(--border-strong);
  border-bottom: none;
  box-shadow: 0 -20px 50px rgba(0,0,0,0.6);
}

/* Schedule — phone clipped to show top events */
.bento-schedule .bento-media {
  height: 220px;
  background: var(--bg-elevated);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.bento-schedule .bento-media img {
  width: 75%;
  height: auto;
  object-fit: cover;
  object-position: top;
  border-radius: 20px 20px 0 0;
  border: 1px solid var(--border-strong);
  border-bottom: none;
}

/* Plays — full-bleed football field image */
.bento-plays {
  position: relative;
  min-height: 380px;
}
.bento-plays .bento-media {
  position: absolute;
  inset: 0;
  height: 100%;
}
.bento-plays .bento-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.bento-plays .bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,5,8,0.95) 0%,
    rgba(5,5,8,0.5) 45%,
    rgba(5,5,8,0.15) 75%,
    transparent 100%
  );
}
.bento-plays .bento-card-inner {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 32px;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════ */
.how-it-works {
  padding: 120px var(--container-padding);
  background: var(--bg-base);
}
.how-it-works .section-header { margin-bottom: 80px; }

.steps {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.step-flipped { direction: rtl; }
.step-flipped > * { direction: ltr; }

.step-number {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4.5vw, 64px);
  letter-spacing: 1.5px;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 16px;
  word-break: keep-all;
}
.step-desc {
  font-size: clamp(14px, 2.5vw, 16px);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 28px;
}
.step-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.step-cta-link:hover { color: var(--text-primary); border-color: rgba(255,255,255,0.4); gap: 10px; }

.step-visual { display: flex; justify-content: center; }

.step-phone {
  width: 240px;
  border-radius: var(--radius-phone);
  border: 1.5px solid rgba(0,0,0,0.08);
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.12),
    0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
}
.step-phone:hover {
  transform: translateY(-10px);
  box-shadow: 0 36px 80px rgba(0,0,0,0.16), 0 8px 24px rgba(0,0,0,0.08);
}
.step-phone img { width: 100%; display: block; }

/* ═══════════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════════ */
.stats-section {
  background: var(--bg-base);
  border-top: 1px solid var(--border);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-block {
  padding: 56px 40px;
  border-right: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat-block:last-child { border-right: none; }
.stat-block::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(0,0,0,0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.stat-block-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 5vw, 72px);
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-block-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════
   SCROLL FEATURES
═══════════════════════════════════════════════════ */
.sf-section {
  background: var(--bg-base);
}
.sf-header {
  padding: 120px var(--container-padding) 80px;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Tall scroll container — 6 × 100vh so each of 5 features gets ~80vh of scroll */
.sf-container {
  height: calc(100vh * 5);
  position: relative;
}

.sf-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 0 max(var(--container-padding), calc((100% - var(--max-width)) / 2));
  overflow: hidden;
  background: #FFFFFF;
  transition: background-color 0.7s ease;
}
.sf-sticky.dark { background: #050508; }

/* LEFT — text items stack, only active is visible */
.sf-left {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}
.sf-item {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.sf-item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sf-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
  transition: color 0.7s ease;
}
.sf-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 4.5vw, 68px);
  letter-spacing: 1.5px;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 20px;
  word-break: keep-all;
  transition: color 0.7s ease;
}
.sf-desc {
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 400px;
  transition: color 0.7s ease;
}
/* Dark mode overrides */
.sf-sticky.dark .sf-label  { color: rgba(255,255,255,0.35); }
.sf-sticky.dark .sf-title  { color: #FFFFFF; }
.sf-sticky.dark .sf-desc   { color: rgba(255,255,255,0.55); }
.sf-sticky.dark .sf-progress-bar  { background: rgba(255,255,255,0.15); }
.sf-sticky.dark .sf-progress-fill { background: #FFFFFF; }
.sf-sticky.dark .sf-progress-label { color: rgba(255,255,255,0.35); }
.sf-sticky.dark .sf-phone {
  border-color: rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 32px 80px rgba(0,0,0,0.6),
    0 8px 32px rgba(0,0,0,0.4);
}

/* Mobile-only phone inside each item — hidden on desktop */
.sf-item-phone { display: none; }

/* RIGHT — floating phone */
.sf-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.sf-phone-wrap {
  will-change: transform;
}
.sf-phone {
  width: 260px;
  border-radius: 44px;
  border: 1.5px solid rgba(0,0,0,0.10);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.04),
    0 32px 80px rgba(0,0,0,0.18),
    0 8px 32px rgba(0,0,0,0.10);
  position: relative;
  aspect-ratio: 9 / 19.5;
  transition: border-color 0.7s ease, box-shadow 0.7s ease;
}
.sf-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transition: opacity 0.45s ease;
  display: block;
}
.sf-img.active { opacity: 1; }

/* Progress bar */
.sf-progress {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sf-progress-bar {
  width: 80px;
  height: 2px;
  background: var(--border);
  border-radius: 1px;
  overflow: hidden;
  transition: background-color 0.7s ease;
}
.sf-progress-fill {
  height: 100%;
  width: 20%;
  background: var(--text-primary);
  border-radius: 1px;
  transition: width 0.4s ease, background-color 0.7s ease;
}
.sf-progress-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  transition: color 0.7s ease;
}

/* ═══════════════════════════════════════════════════
   FOUNDERS STRIP
═══════════════════════════════════════════════════ */
.founders-section {
  padding: 72px var(--container-padding);
  background: var(--bg-base);
  border-top: 1px solid var(--border);
}
.founders-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.founder-card {
  display: flex;
  align-items: center;
  gap: 16px;
}
.founder-card-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
}
.founder-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
}
.founder-card-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.founders-info-right { text-align: right; }
.founder-card-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-primary);
}
.founder-card-cred {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.founders-statement {
  text-align: center;
  flex: 1;
}
.founders-statement p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 2px;
  line-height: 1.05;
  color: var(--text-primary);
}

@media (max-width: 640px) {
  .founders-inner {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  .founders-info-right { text-align: left; }
  .founders-statement p { font-size: clamp(24px, 8vw, 36px); }
}

/* ═══════════════════════════════════════════════════
   CTA SECTION — white
═══════════════════════════════════════════════════ */
.cta-section {
  padding: 120px var(--container-padding);
  background: #FFFFFF;
  text-align: center;
}
.cta-inner {
  max-width: 660px;
  margin: 0 auto;
}
/* Badge inverted for white bg */
.cta-section .badge {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.10);
  color: #666;
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 7vw, 92px);
  letter-spacing: 2px;
  line-height: 0.95;
  color: #050508;
  margin: 20px 0 24px;
  word-break: keep-all;
}
.cta-sub {
  font-size: clamp(14px, 2.5vw, 17px);
  color: #666;
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #050508;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  transition: opacity 0.2s, transform 0.15s;
}
.app-store-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.app-store-btn-icon { font-size: 20px; line-height: 1; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.site-footer {
  background: #FFFFFF;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 48px var(--container-padding);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1.5px;
  color: #050508;
  margin-bottom: 8px;
}
.footer-logo img { width: 24px; height: 24px; border-radius: 6px; }
.footer-tagline {
  font-size: 13px;
  color: #999;
  max-width: 240px;
  line-height: 1.6;
}
.footer-links-group {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: #555;
  transition: color 0.2s;
}
.footer-col a:hover { color: #050508; }

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-social-link svg { flex-shrink: 0; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 12px;
  color: #999;
}
.footer-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  transition: color 0.2s;
}
.footer-download:hover { color: #050508; }

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance animations */
.hero-badge   { opacity: 0; animation: fade-up 0.6s ease 0.05s forwards; }
.hero-title   { opacity: 0; animation: fade-up 0.7s ease 0.15s forwards; }
.hero-sub     { opacity: 0; animation: fade-up 0.7s ease 0.25s forwards; }
.hero-ctas    { opacity: 0; animation: fade-up 0.7s ease 0.35s forwards; }
.stat-row     { opacity: 0; animation: fade-up 0.7s ease 0.45s forwards; }
.hero-visual  { opacity: 0; animation: fade-up 0.9s ease 0.2s forwards; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════
   LEGAL PAGES (privacy, terms, support)
═══════════════════════════════════════════════════ */
.legal-hero {
  padding: calc(16px + 56px + 60px) var(--container-padding) 52px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.015) 0%, transparent 100%);
}
.legal-hero .badge { margin-bottom: 20px; }
.legal-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 80px);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 14px;
}
.legal-hero p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 440px;
  margin: 0 auto;
}

.legal-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.legal-content { padding: 64px 0 96px; }

.legal-section { margin-bottom: 52px; }
.legal-section-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.25);
  margin-bottom: 8px;
}
.legal-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.legal-section p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.75;
}
.legal-section p:last-child { margin-bottom: 0; }

.legal-divider {
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

/* Data grid */
.data-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}
.data-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-bottom: 1px solid var(--border);
  background: transparent;
}
.data-row .label {
  padding: 14px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.data-row .value {
  padding: 14px 0 14px 16px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Styled list */
.styled-list {
  list-style: none;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.styled-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  align-items: flex-start;
}
.styled-list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  margin-top: 10px;
}

/* Highlight box */
.highlight-box {
  background: transparent;
  border: none;
  border-left: 2px solid var(--text-primary);
  padding: 4px 0 4px 20px;
  margin: 24px 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.highlight-box strong { color: var(--text-primary); font-weight: 700; }

/* Contact card */
.contact-card {
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
  padding: 24px 0 0;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.contact-icon {
  display: none;
}
.contact-card h3 { font-size: 14px; font-weight: 600; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-card a { color: var(--text-primary); font-size: 17px; font-weight: 700; }
.contact-card a:hover { text-decoration: underline; }

/* ── WARNING BOX (terms) ── */
.warning-box {
  background: transparent;
  border: none;
  border-left: 2px solid var(--text-primary);
  padding: 4px 0 4px 20px;
  margin: 20px 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.warning-box strong { color: var(--text-primary); font-weight: 700; }

/* ── SUPPORT: CONTACT GRID ── */
.support-section { margin-bottom: 64px; }
.support-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.25);
  margin-bottom: 8px;
}
.support-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.support-sub {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}
.support-card {
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
  padding: 28px 0;
  transition: opacity 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.support-card:hover { opacity: 0.7; }
.support-card-icon {
  display: none;
}
.support-card-title { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.support-card-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 14px; }
.support-card-link  { font-size: 14px; font-weight: 700; color: var(--accent); }
.support-card-badge {
  display: inline-block;
  background: var(--glass-bg);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  margin-top: 8px;
}

.response-banner {
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
  padding: 24px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 8px;
}
.response-banner-icon { display: none; }
.response-banner h3 { font-size: 14px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.response-banner p  { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 2px; margin-top: 28px; }

.faq-item {
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}
.faq-chevron {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text-muted);
  transition: transform 0.25s, color 0.2s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent); }

.faq-answer {
  display: none;
  padding: 0 0 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p { margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ol { padding-left: 20px; margin: 10px 0; }
.faq-answer ol li { margin-bottom: 6px; color: var(--text-secondary); font-size: 15px; }
.faq-answer a { color: var(--accent); }
.faq-answer a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 56px;
  }
  .hero-content { max-width: 100%; }
  .hero-sub, .hero-ctas, .stat-row { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .stat-row  { justify-content: center; }
  .stat-item { text-align: center; }
  .hero-visual { order: -1; }
  .phone-frame { transform: none; }
  .phone-frame:hover { transform: translateY(-8px); }

  .step {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .step-flipped { direction: ltr; }
  .step-desc { margin: 0 auto 28px; }
  .step-visual { order: -1; }

  .stats-inner { grid-template-columns: repeat(3, 1fr); }
  .stat-block { border-bottom: none; padding: 40px 12px; }
  .stat-block-number { font-size: clamp(18px, 4.5vw, 72px); }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "messaging"
      "playbooks"
      "schedule"
      "plays";
  }
  .bento-plays { min-height: 300px; }

  .footer-inner { flex-direction: column; }
}

@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .founders-section { display: none; }
  .cta-section { padding: 48px var(--container-padding); }

  /* Scroll features — disable sticky on mobile, stack vertically */
  .sf-header { padding: 64px var(--container-padding) 48px; }
  .sf-container { height: auto !important; }
  .sf-sticky {
    position: static !important;
    height: auto !important;
    display: block !important;
    overflow: visible !important;
    padding: 0 var(--container-padding);
  }
  .sf-right { display: none !important; }
  .sf-left {
    display: block !important;
    position: static !important;
    height: auto !important;
  }
  .sf-item {
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    display: block;
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
  }
  .sf-item:last-child { border-bottom: none; }
  .sf-item-phone {
    display: flex;
    justify-content: center;
    margin-top: 28px;
  }
  .sf-item-phone img {
    width: min(220px, 60vw);
    border-radius: 36px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    display: block;
    max-height: 40vh;
    object-fit: cover;
    object-position: top;
  }
  .steps { gap: 56px; }
  .nav-hamburger {
    display: flex;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 12px;
  }

  /* Floating LockerRoom pill — scale down like about page */
  .site-nav { top: 12px; }
  .nav-pill-logo {
    padding: 8px 14px;
    border-radius: 14px;
  }
  .nav-logo {
    font-size: 18px;
    letter-spacing: 1.2px;
    gap: 8px;
  }
  .nav-logo img {
    width: 20px;
    height: 20px;
    border-radius: 6px;
  }

  /* Drawer scales down; fonts no bigger than LOCKERROOM (18px) */
  .nav-drawer {
    top: 52px;
    right: 12px;
    padding: 6px 0;
    border-radius: 14px;
    min-width: 160px;
  }
  .nav-drawer a {
    font-size: 14px;
    padding: 8px 14px;
  }
  .nav-drawer-cta {
    margin: 4px 10px 6px;
    padding: 8px 14px !important;
    font-size: 12px !important;
  }

  .hero {
    padding-top: calc(16px + 56px + 32px);
    padding-bottom: 48px;
  }
  .hero-inner { gap: 20px; }
  .hero-title { font-size: clamp(44px, 13vw, 76px); }

  .features { padding-top: 64px; padding-bottom: 64px; }
  .section-header { margin-bottom: 48px; }

  .stat-row { margin-top: 28px; padding-top: 20px; }
  .stat-item { padding: 0 10px; }
  .stat-number { font-size: clamp(16px, 4vw, 22px); }
  .stat-label { font-size: 10px; }

  .phone-frame {
    width: min(210px, 52vw);
    max-height: 42vh;
    overflow: hidden;
  }
  .phone-frame img {
    object-fit: cover;
    object-position: top;
  }

  .step-phone {
    width: min(190px, 46vw);
    max-height: 38vh;
    overflow: hidden;
  }
  .step-phone img {
    object-fit: cover;
    object-position: top;
  }

  .stats-inner { grid-template-columns: repeat(3, 1fr); }
  .stat-block { padding: 32px 8px; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .data-row { grid-template-columns: 1fr; }
  .data-row .label { border-right: none; border-bottom: 1px solid var(--border); }
  .contact-card { flex-direction: column; text-align: center; }
}
