/* FootTime coming-soon holding page.
   Deliberately separate from Website/production/assets/site.css. This file
   reuses production's safe, non-IP visual language on purpose (colors, type,
   button styles, and the generic iPhone/Watch device-frame shapes and jersey
   -pattern gradients — none of which are part of the patent-pending match
   dial design). Anywhere the actual dial would appear is replaced with an
   abstract, deliberately shapeless "reveal-glow" placeholder instead of any
   ring/arc geometry, so nothing about the claimed design is disclosed while
   the design patent applications are unfiled. No JS, no dial markup at all. */

:root {
  color-scheme: light;
  --ft-blue: #007aff;
  --ft-green: #00c78c;
  --ft-amber: #ffb038;
  --ft-red: #f74559;
  --ink: #101827;
  --muted: #5f6f86;
  --soft: #f4f7fb;
  --paper: #ffffff;
  --line: #dce6f2;
  --shadow: 0 24px 70px rgba(16, 24, 39, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f7f9fc;
  line-height: 1.5;
}

a {
  color: inherit;
}

.page-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 max(22px, calc((100vw - 1180px) / 2));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(22px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(16, 24, 39, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  font-weight: 850;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.nav-links .cta {
  text-decoration: none;
}

.cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--ft-blue);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.button.secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  align-items: center;
  gap: 40px;
  padding: 64px 0 40px;
}

.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 700;
  color: var(--ft-blue);
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.lede {
  margin: 0 0 28px;
  font-size: 18px;
  color: var(--muted);
  max-width: 48ch;
}

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

/* Device frames below are generic iPhone/Watch mockup shapes, independent of
   whatever is shown on the "screen" — the same technique any app's marketing
   site uses. */

.hero-device-stage {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 460px;
}

.iphone-device {
  position: relative;
  z-index: 1;
  width: min(260px, 70vw);
  padding: 10px;
  border-radius: 40px;
  background: #101827;
  box-shadow: var(--shadow);
}

.match-wallpaper {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 10px;
  min-height: 460px;
  padding: 18px;
  border-radius: 32px;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}

.device-status {
  font-size: 12px;
  opacity: 0.85;
}

.match-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.watch-device {
  position: absolute;
  right: -12px;
  bottom: -18px;
  z-index: 2;
  width: 108px;
  height: 132px;
  padding: 8px;
  border-radius: 32px;
  background: #101827;
  box-shadow: var(--shadow);
}

.watch-action-button,
.watch-crown,
.watch-side-button {
  position: absolute;
  right: -3px;
  width: 5px;
  border-radius: 3px;
  background: #1f2937;
}

.watch-action-button { top: 32px; height: 14px; }
.watch-crown { top: 52px; height: 20px; }
.watch-side-button { top: 78px; height: 14px; }

.watch-screen {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 24px;
  padding: 12px 8px;
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.32);
}

/* Jersey/kit-style gradients: generic team-color decoration, not part of the
   claimed match-dial design (colors/patterns are explicitly unclaimed). */

.generated-wallpaper {
  --home: #0b64d8;
  --home-secondary: #93c5fd;
  --away: #00b783;
  --away-secondary: #99f6e4;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(0, 0, 0, 0.16)),
    linear-gradient(90deg, var(--home) 0 50%, var(--away) 50% 100%);
}

.generated-wallpaper::before,
.generated-wallpaper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 0;
  width: 50%;
  opacity: 1;
}

.generated-wallpaper::before { left: 0; }
.generated-wallpaper::after { right: 0; }
.generated-wallpaper > * { position: relative; z-index: 1; }

.generated-wallpaper[data-home-style="solid"]::before {
  background: linear-gradient(90deg, var(--home) 0 92%, var(--home-secondary) 92% 100%);
}
.generated-wallpaper[data-away-style="solid"]::after {
  background: linear-gradient(90deg, var(--away-secondary) 0 8%, var(--away) 8% 100%);
}
.generated-wallpaper[data-home-style="kit"]::before {
  background:
    linear-gradient(90deg, transparent 0 36%, var(--home-secondary) 36% 45%, transparent 45% 55%, var(--home-secondary) 55% 64%, transparent 64% 100%),
    var(--home);
}
.generated-wallpaper[data-home-style="soft"]::before {
  background:
    radial-gradient(ellipse at 8% 18%, rgba(255, 255, 255, 0.38) 0 8%, transparent 38%),
    radial-gradient(ellipse at 38% 82%, rgba(132, 207, 255, 0.28) 0 12%, transparent 45%),
    linear-gradient(110deg, var(--home-secondary) 0%, #278ee8 48%, var(--home) 100%);
}
.generated-wallpaper[data-away-style="hoops"]::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.1), transparent 18%, rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(
      180deg,
      var(--away) 0 14%,
      var(--away-secondary) 14% 28%
    );
}

/* Deliberately abstract "reveal" placeholder — a soft, shapeless glow with no
   ring/arc/nested-circle geometry, standing in for the match dial until
   launch. */

.reveal-teaser {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.reveal-teaser.small {
  flex: 1;
  min-height: 70px;
  margin-top: 8px;
}

.reveal-glow {
  width: min(220px, 78%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.05) 70%);
  filter: blur(6px);
  animation: reveal-pulse 3.2s ease-in-out infinite;
}

.reveal-teaser.small .reveal-glow {
  width: min(70px, 74%);
}

@keyframes reveal-pulse {
  0%, 100% { transform: scale(0.92); opacity: 0.75; }
  50% { transform: scale(1.05); opacity: 1; }
}

.reveal-badge {
  position: absolute;
  bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.reveal-badge.small {
  bottom: 4px;
  padding: 2px 7px;
  font-size: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-glow {
    animation: none;
  }
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.features,
.pro,
.notice-row,
.follow {
  padding: 40px 0;
  border-top: 1px solid var(--line);
}

.pro-panel {
  padding: 32px clamp(20px, 4vw, 40px);
  border-radius: 20px;
  background: linear-gradient(135deg, var(--ft-blue), var(--ft-green));
  color: #fff;
}

.pro-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.pro-panel h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.pro-panel p {
  margin: 0 0 20px;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.9);
}

.pro-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pro-perks li {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.feature-card {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.notice-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.notice-card h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

.notice-card p {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

.follow-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 32px max(22px, calc((100vw - 1180px) / 2)) 48px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.small {
  color: var(--muted);
  font-size: 14px;
  margin: 4px 0;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-device-stage {
    order: -1;
  }
}
