/* ============================================
   Squadd — Landing Page Styles
   ============================================ */

:root {
  --green: #22C55E;
  --green-dark: #16A34A;
  --green-bg: #052e1633;
  --dark: #0F172A;
  --surface: #1E293B;
  --surface-alt: #334155;
  --text: #F1F5F9;
  --text-muted: #94A3B8;
  --text-faint: #64748B;
  --border: #1E293B;
  --amber: #F59E0B;
  --red: #EF4444;
  --blue: #3B82F6;
  --max-width: 1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
}
.nav-brand img { width: 36px; height: 36px; border-radius: 8px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text-muted); font-size: 14px; font-weight: 600; text-decoration: none; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--green);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--green-dark); text-decoration: none; }

/* ---- HERO ---- */
.hero {
  padding: 120px 0 80px;
  background:
    radial-gradient(circle at 90% 0%, rgba(34, 197, 94, 0.07) 0%, transparent 50%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.hero-text {
  text-align: left;
}
.hero-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -1.5px;
}
.hero h1 span { color: var(--green); }
.hero p {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 0 32px;
  line-height: 1.55;
}
.hero-buttons { display: flex; gap: 12px; justify-content: flex-start; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--green-dark); text-decoration: none; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  color: var(--text);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid var(--surface-alt);
  transition: background 0.2s;
  text-decoration: none;
}
.btn-secondary:hover { background: var(--surface-alt); text-decoration: none; }

.hero-badge {
  display: inline-block;
  background: var(--surface);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

/* ---- SOCIAL PROOF ---- */
.social-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.proof-number {
  font-size: 20px;
}
.proof-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.proof-divider {
  width: 1px;
  height: 24px;
  background: var(--surface-alt);
}
@media (max-width: 768px) {
  .proof-divider { display: none; }
  .social-proof { gap: 16px; }
}

/* ---- FEATURES ---- */
.features {
  padding: 80px 0;
}
.features h2 {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
}
.features .subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 48px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid transparent;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--green); }
.feature-icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- COMPARISON TABLE ---- */
.comparison {
  padding: 80px 0;
  background: var(--surface);
}
.comparison h2 {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
}
.comparison .subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 48px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--surface-alt);
}
.compare-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th,
.compare-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid var(--surface-alt);
  color: var(--text-muted);
}
.compare-table th {
  background: var(--dark);
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
}
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text);
  min-width: 200px;
}
.compare-table th.highlight {
  color: var(--green);
  background: rgba(34, 197, 94, 0.08);
}
.compare-table td.highlight {
  color: var(--green);
  font-weight: 700;
  font-size: 16px;
  background: rgba(34, 197, 94, 0.04);
}
.compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* Big stats row */
.big-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.big-stat {
  background: var(--dark);
  border: 1px solid var(--surface-alt);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.big-stat:hover { transform: translateY(-2px); border-color: var(--green); }
.big-stat-hero {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18) 0%, var(--dark) 100%);
  border-color: var(--green);
}
.big-stat-number {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: var(--green);
  letter-spacing: -2px;
  margin-bottom: 8px;
}
.big-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.4;
}

/* Score bars */
.score-bars {
  background: var(--dark);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 48px;
  border: 1px solid var(--surface-alt);
}
.score-row {
  margin-bottom: 16px;
}
.score-row:last-child { margin-bottom: 0; }
.score-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.score-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.score-row-hero .score-name {
  color: var(--green);
  font-size: 17px;
  font-weight: 800;
}
.score-note {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-faint);
  font-style: italic;
}
.score-count {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-muted);
}
.score-row-hero .score-count { color: var(--green); }
.score-bar-track {
  height: 28px;
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green) 0%, #16A34A 100%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  transition: width 0.8s ease-out;
  min-width: 40px;
}
.score-bar-fill-competitor {
  background: linear-gradient(90deg, var(--surface-alt) 0%, var(--surface) 100%);
}
.score-bar-pct {
  font-size: 12px;
  font-weight: 800;
  color: var(--dark);
}
.score-bar-fill-competitor .score-bar-pct { color: var(--text-muted); }

/* Only Squadd callout */
.only-squadd {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, transparent 100%);
  border: 2px solid var(--green);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 48px;
}
.only-squadd-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.only-squadd-badge {
  background: var(--green);
  color: var(--dark);
  font-size: 11px;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.only-squadd-head h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}
.only-squadd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.only-squadd-item {
  background: var(--surface);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-left: 3px solid var(--green);
}

/* Section subheading */
.section-h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 24px;
  margin-top: 16px;
}

/* Score badge on head-to-head cards */
.compare-card-score {
  background: var(--green);
  color: var(--dark);
  font-size: 11px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mobile: stacked comparison cards */
.compare-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.compare-card {
  background: var(--dark);
  border: 1px solid var(--surface-alt);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 12px;
}
.compare-card-hero {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, var(--dark) 100%);
  border-color: var(--green);
}
.compare-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.compare-card-label {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}
.compare-card-hero .compare-card-label { color: var(--green); font-size: 20px; }
.compare-card-tag {
  background: var(--green);
  color: var(--dark);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.compare-card-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}
.compare-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.compare-card-list li {
  padding: 4px 0 4px 22px;
  position: relative;
  font-size: 13px;
  color: var(--text);
}
.compare-card-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  position: absolute;
  left: 0;
}
.compare-foot {
  font-size: 11px;
  color: var(--text-faint);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* Mobile: show cards as single-column stack, hide the wide table */
@media (max-width: 768px) {
  .compare-cards { grid-template-columns: 1fr; }
  .table-wrap { display: none; }
  .big-stats { grid-template-columns: 1fr; }
  .big-stat-number { font-size: 48px; }
  .only-squadd-head h3 { font-size: 18px; }
  .only-squadd { padding: 24px; }
  .score-bars { padding: 20px; }
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 80px 0;
  background: var(--surface);
}
.how-it-works h2 {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
}
.steps {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
}
.step-num {
  width: 48px;
  height: 48px;
  background: var(--green);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-muted); }

/* ---- FOR WHO ---- */
.for-who {
  padding: 80px 0;
}
.for-who h2 {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
}
.roles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.role-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 28px;
  border-left: 4px solid var(--green);
}
.role-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.role-card ul { list-style: none; padding: 0; }
.role-card li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}
.role-card li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* ---- PRICING ---- */
.pricing {
  padding: 80px 0;
}
.pricing h2 {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
}
.pricing .subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 48px;
}
.summer-banner {
  max-width: 720px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.14) 0%, rgba(34, 197, 94, 0.1) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}
.summer-banner-emoji {
  font-size: 28px;
  flex-shrink: 0;
}
.summer-banner strong { color: #F59E0B; }
@media (max-width: 640px) {
  .summer-banner { flex-direction: column; text-align: center; font-size: 14px; }
}

.pricing-quote {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
  background: var(--surface);
  border-radius: 16px;
  padding: 28px 32px;
  border-left: 4px solid var(--green);
}
.pricing-quote p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.pricing-quote p:last-child {
  margin-bottom: 0;
  color: var(--text);
  font-weight: 600;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--surface-alt);
  position: relative;
}
.pricing-card-pro {
  border-color: var(--green);
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.1);
}
.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-tier {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.pricing-price {
  font-size: 42px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.pricing-card-pro .pricing-price {
  color: var(--green);
}
.pricing-period {
  font-size: 14px;
  color: var(--text-faint);
  margin-bottom: 24px;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.pricing-card li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
}
.pricing-card li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  position: absolute;
  left: 0;
}
.pricing-card li strong {
  color: var(--text);
}
.pricing-annual {
  text-align: center;
  font-size: 13px;
  color: var(--text-faint);
  margin-top: 12px;
}

/* ---- FAQ ---- */
.faq {
  padding: 80px 0;
  background: var(--surface);
}
.faq h2 {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 20px;
}
.faq-item {
  background: var(--dark);
  border-radius: 14px;
  padding: 24px;
}
.faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ---- CTA ---- */
.cta {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #052e16 0%, var(--dark) 100%);
  border-top: 1px solid var(--border);
}
.cta h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.cta p { font-size: 18px; color: var(--text-muted); margin-bottom: 28px; }

/* ---- WAITLIST ---- */
.waitlist-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}
.waitlist-input {
  flex: 1;
  min-width: 240px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--surface-alt);
  background: var(--surface);
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-input:focus {
  border-color: var(--green);
}
.waitlist-input::placeholder {
  color: var(--text-faint);
}
.waitlist-btn {
  white-space: nowrap;
}

/* ---- FOOTER ---- */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text-muted);
}
.footer-brand img { width: 28px; height: 28px; border-radius: 6px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-faint); font-size: 13px; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--text-faint); font-size: 12px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .features h2, .how-it-works h2, .for-who h2, .cta h2 { font-size: 28px; }
  .nav-links { display: none; }
  .steps { flex-direction: column; align-items: center; }
}

/* ---- LEGAL PAGES ---- */
.legal {
  padding: 120px 0 80px;
  max-width: 720px;
  margin: 0 auto;
}
.legal h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}
.legal .updated {
  color: var(--text-faint);
  font-size: 13px;
  margin-bottom: 32px;
}
.legal h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal h3 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 8px;
}
.legal p, .legal li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal ul { padding-left: 20px; margin-bottom: 12px; }
.legal table { width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.legal th, .legal td {
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
}
.legal th { font-weight: 700; color: var(--text); }

/* ================================================================
   FAIR PLAY HERO SECTION
   ================================================================ */
.fair-play {
  padding: 96px 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(34, 197, 94, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(245, 158, 11, 0.06) 0%, transparent 45%);
  border-top: 1px solid var(--surface);
  border-bottom: 1px solid var(--surface);
}
.fair-play-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.fair-play-tag {
  display: inline-block;
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 20px;
}
.fair-play-head h2 {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 20px;
}
.fair-play-head h2 .accent {
  color: var(--green);
}
.fair-play-head .subtitle {
  font-size: 17px;
  line-height: 1.6;
}
.fair-play-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

/* Phone mockup */
.fair-play-visual {
  display: flex;
  justify-content: center;
}
.phone-frame {
  background: #0B1220;
  border: 2px solid var(--surface-alt);
  border-radius: 26px;
  padding: 20px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(34, 197, 94, 0.14);
  width: 100%;
  max-width: 360px;
}
.mock-clock {
  background: var(--surface);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.mock-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #EF4444;
  animation: mock-pulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
}
@keyframes mock-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55); }
  50% { opacity: 0.5; box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}
.mock-minute {
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 1px;
}
.mock-remaining {
  font-size: 11px;
  color: var(--text-faint);
  margin-left: auto;
  font-weight: 600;
}

.mock-warning {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}
.mock-warning-icon { font-size: 18px; }
.mock-warning-title { font-size: 13px; font-weight: 800; color: #F59E0B; }
.mock-warning-text { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.mock-warning-hint { font-size: 10px; color: var(--text-faint); margin-top: 3px; font-weight: 600; }
.mock-warning-chev { color: #F59E0B; font-size: 22px; font-weight: 700; }

.mock-bench-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 1.2px;
  margin: 6px 0 10px;
}
.mock-bench-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: var(--surface);
  border-radius: 10px;
  margin-bottom: 6px;
}
.mock-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--text-muted);
  font-size: 13px;
}
.mock-name { flex: 1; font-size: 13px; font-weight: 600; color: var(--text); }
.mock-mins {
  background: #475569;
  color: #F1F5F9;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
}

.mock-suggest {
  margin-top: 14px;
  padding: 10px 12px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  line-height: 1.5;
}
.mock-suggest strong { color: var(--green); font-weight: 800; }

/* Pillars */
.fair-play-pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pillar {
  background: var(--surface);
  border-radius: 14px;
  padding: 22px;
  border-left: 3px solid var(--green);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.pillar:hover {
  transform: translateX(4px);
  border-left-width: 5px;
}
.pillar-icon {
  font-size: 24px;
  margin-bottom: 8px;
}
.pillar h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 6px;
}
.pillar p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.fair-play-footer {
  margin-top: 56px;
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.fair-play-footer em {
  color: var(--green);
  font-weight: 700;
  font-style: normal;
}

@media (max-width: 768px) {
  .fair-play { padding: 64px 0; }
  .fair-play-head h2 { font-size: 30px; }
  .fair-play-head .subtitle { font-size: 15px; }
  .fair-play-grid { grid-template-columns: 1fr; gap: 40px; }
  .fair-play-footer { margin-top: 40px; font-size: 14px; }
}

/* ================================================================
   HERO PHONE MOCKUP — Saturday's match day card
   ================================================================ */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-phone {
  background: #0B1220;
  border: 2px solid var(--surface-alt);
  border-radius: 28px;
  padding: 22px;
  width: 100%;
  max-width: 380px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 100px rgba(34, 197, 94, 0.18);
}
.hero-phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.hero-day-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 1.5px;
}
.hero-status-pill {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #F59E0B;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.4px;
}

.hero-fixture {
  background: var(--surface);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 14px;
}
.hero-fixture-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.hero-team-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.hero-team-crest {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #F1F5F9;
}
.hero-us {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #052e16;
}
.hero-them {
  background: var(--surface-alt);
  color: #94A3B8;
  border: 1px solid #475569;
}
.hero-team-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}
.hero-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 70px;
}
.hero-ko-time {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
}
.hero-vs-label {
  font-size: 9px;
  font-weight: 800;
  color: var(--text-faint);
  letter-spacing: 1.5px;
  margin-top: -2px;
}
.hero-meta-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.hero-meta-pill {
  background: #0B1220;
  color: var(--text-muted);
  font-size: 10.5px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--surface-alt);
}
.hero-weather {
  color: #60A5FA;
  border-color: rgba(96, 165, 250, 0.3);
}

.hero-availability {
  background: var(--surface);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 12px;
}
.hero-avail-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.hero-avail-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.hero-avail-count {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
}
.hero-avail-bar {
  display: flex;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: #0B1220;
  margin-bottom: 10px;
  gap: 2px;
}
.hero-avail-yes { background: var(--green); }
.hero-avail-no { background: #EF4444; }
.hero-avail-pending { background: #F59E0B; }
.hero-avail-legend {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
}
.hero-avail-legend .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}
.hero-avail-legend .dot-yes { background: var(--green); }
.hero-avail-legend .dot-no { background: #EF4444; }
.hero-avail-legend .dot-pending { background: #F59E0B; }

.hero-cta-btn {
  width: 100%;
  background: var(--green);
  color: #052e16;
  border: none;
  border-radius: 12px;
  padding: 13px;
  font-size: 13px;
  font-weight: 800;
  cursor: default;
  margin-bottom: 12px;
  transition: transform 0.15s ease;
}
.hero-cta-btn:hover { transform: translateY(-1px); }

.hero-mini-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-mini-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 11.5px;
  color: var(--text);
  font-weight: 600;
}
.hero-mini-icon { font-size: 14px; }
.hero-mini-text { flex: 1; }
.hero-mini-chev { color: var(--text-faint); font-size: 16px; font-weight: 700; }

/* Mobile: stack hero text + mockup vertically, shrink mockup */
@media (max-width: 900px) {
  .hero { padding: 100px 0 60px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero h1 { font-size: 40px; }
  .hero p { font-size: 17px; }
  .hero-phone { max-width: 340px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 34px; }
  .hero-phone { padding: 18px; }
  .hero-team-crest { width: 42px; height: 42px; font-size: 11px; }
  .hero-ko-time { font-size: 20px; }
}
