/* ============================================================
   Hockey Watch & Football Watch — referee apps landing site
   Single stylesheet, no build step, no dependencies.
   ============================================================ */

:root {
  --bg:            #070b16;
  --bg-soft:       #0d1424;
  --card:          rgba(255, 255, 255, 0.04);
  --card-border:   rgba(255, 255, 255, 0.09);
  --text:          #eef2fb;
  --text-soft:     #9aa6c0;
  --text-dim:      #5f6b86;

  --hockey:        #38bdf8;
  --hockey-2:      #6366f1;
  --football:      #22c55e;
  --football-2:    #15803d;

  --accent:        #818cf8;
  --ring:          rgba(129, 140, 248, 0.45);

  --radius:        18px;
  --radius-lg:     26px;
  --maxw:          1140px;
  --shadow:        0 24px 60px -20px rgba(0, 0, 0, 0.65);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 15% 0%, rgba(56, 189, 248, 0.16), transparent 60%),
    radial-gradient(55% 45% at 90% 10%, rgba(34, 197, 94, 0.14), transparent 60%),
    radial-gradient(50% 50% at 50% 100%, rgba(129, 140, 248, 0.12), transparent 70%),
    var(--bg);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 820px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-soft);
  padding: 7px 14px; border: 1px solid var(--card-border); border-radius: 999px;
  background: var(--card); backdrop-filter: blur(8px);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(129,140,248,0.18); }

.gradient-text {
  background: linear-gradient(100deg, var(--hockey), var(--accent) 45%, var(--football));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 0.98rem; padding: 13px 22px; border-radius: 13px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary {
  color: #0a0a16;
  background: linear-gradient(100deg, var(--hockey), var(--accent) 55%, #a78bfa);
  box-shadow: 0 12px 30px -10px rgba(129, 140, 248, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -12px rgba(129, 140, 248, 0.7); }
.btn-ghost { color: var(--text); background: var(--card); border-color: var(--card-border); }
.btn-ghost:hover { border-color: var(--ring); background: rgba(255,255,255,0.07); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px); background: rgba(7, 11, 22, 0.6);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.scrolled { border-bottom-color: var(--card-border); background: rgba(7, 11, 22, 0.82); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; }
.brand .logo { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--hockey), var(--football)); box-shadow: 0 6px 18px -6px rgba(56,189,248,0.6); }
.brand .logo svg { width: 20px; height: 20px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a.link { color: var(--text-soft); font-weight: 500; font-size: 0.95rem; transition: color 0.15s; }
.nav-links a.link:hover { color: var(--text); }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); cursor: pointer; padding: 6px; }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.7rem); line-height: 1.05; letter-spacing: -0.03em; font-weight: 800; margin: 22px 0 18px; }
.hero p.lead { font-size: 1.18rem; color: var(--text-soft); max-width: 38ch; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-meta { margin-top: 28px; display: flex; gap: 26px; flex-wrap: wrap; color: var(--text-dim); font-size: 0.9rem; }
.hero-meta strong { color: var(--text); font-weight: 700; font-size: 1.02rem; display: block; }

/* ---------- Apple Watch mockup ---------- */
.mockup-wrap { display: grid; place-items: center; position: relative; }
.watch {
  position: relative;
  width: 236px;
  aspect-ratio: 42 / 51;
  background: linear-gradient(150deg, #2b2f37, #0b0d11 62%);
  border-radius: 62px;
  padding: 15px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.14), inset 0 -2px 8px rgba(0,0,0,0.7);
}
.watch.float { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
/* digital crown */
.watch::before {
  content: ""; position: absolute; right: -5px; top: 28%;
  width: 9px; height: 40px; border-radius: 5px;
  background: linear-gradient(90deg, #41454d, #14161a);
  box-shadow: 0 2px 6px rgba(0,0,0,0.55);
}
/* side button */
.watch::after {
  content: ""; position: absolute; right: -3px; top: 47%;
  width: 6px; height: 58px; border-radius: 4px;
  background: linear-gradient(90deg, #2c3038, #101216);
}
.watch .band {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 64%; height: 60px; background: linear-gradient(180deg, #161a24, #0c0f17);
  z-index: -1; border-radius: 12px;
}
.watch .band-top { top: -38px; }
.watch .band-bottom { bottom: -38px; }
.watch-screen {
  width: 100%; height: 100%; border-radius: 48px;
  background: radial-gradient(120% 90% at 50% 0%, #0c1120, #000 75%);
  overflow: hidden; padding: 16px 15px 14px;
  display: flex; flex-direction: column; gap: 7px;
  border: 1px solid rgba(255,255,255,0.05);
}
.watch-screen.center { justify-content: center; align-items: center; text-align: center; gap: 12px; }
.w-head { display: flex; justify-content: space-between; align-items: center; font-size: 0.62rem; letter-spacing: 0.04em; color: var(--text-dim); text-transform: uppercase; }
.w-live { color: #34d399; font-weight: 700; }
.w-teams { display: flex; justify-content: space-between; font-size: 0.6rem; color: var(--text-soft); letter-spacing: 0.1em; padding: 4px 4px 0; }
.w-big { text-align: center; font-size: 2.7rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.w-big span { color: var(--text-dim); margin: 0 4px; }
.w-big.timer { font-size: 2.5rem; color: var(--hockey); font-variant-numeric: tabular-nums; }
.w-cards { display: flex; justify-content: center; gap: 10px; margin-top: 2px; }
.w-chip { position: relative; padding: 2px 10px 2px 16px; border-radius: 6px; font-size: 0.78rem; font-weight: 700; background: rgba(255,255,255,0.06); color: var(--text); }
.w-chip::before { content: ""; position: absolute; left: 6px; top: 50%; transform: translateY(-50%); width: 6px; height: 13px; border-radius: 2px; }
.w-chip.yellow::before { background: #facc15; }
.w-chip.red::before { background: #ef4444; }
.w-timer { margin: auto auto 0; font-size: 1.05rem; font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; background: rgba(255,255,255,0.06); padding: 5px 14px; border-radius: 999px; }
.w-tap { text-align: center; font-size: 0.62rem; color: var(--text-dim); }
.w-list { display: flex; flex-direction: column; gap: 7px; margin-top: 4px; }
.w-li { display: flex; align-items: center; gap: 9px; font-size: 0.82rem; font-weight: 600; background: rgba(255,255,255,0.05); padding: 7px 10px; border-radius: 9px; font-variant-numeric: tabular-nums; }
.cdot { width: 11px; height: 14px; border-radius: 2px; flex: none; }
.cdot.green { background: #22c55e; }
.cdot.yellow { background: #facc15; }
.cdot.red { background: #ef4444; }
.w-run { display: flex; align-items: center; gap: 7px; font-size: 0.78rem; color: var(--text-soft); }
.w-run .pulse { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 0 rgba(52,211,153,0.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,0.5);} 70% { box-shadow: 0 0 0 9px rgba(52,211,153,0);} 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0);} }
.w-ctrl { width: 50px; height: 50px; border-radius: 50%; border: 0; background: rgba(239,68,68,0.18); color: #fca5a5; font-size: 0.9rem; display: grid; place-items: center; cursor: default; }

/* swap-in for real screenshots */
.watch-shot { width: 100%; height: 100%; object-fit: cover; border-radius: 48px; display: block; }

/* hero brand splash (not a claimed screenshot) */
.watch-screen.splash { justify-content: center; align-items: center; text-align: center; gap: 12px; }
.splash-badge { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--hockey), var(--football)); box-shadow: 0 10px 26px -10px rgba(56,189,248,0.7); }
.splash-badge svg { width: 34px; height: 34px; }
.splash-title { font-size: 1.22rem; font-weight: 800; line-height: 1.12; letter-spacing: -0.01em; }
.splash-sub { font-size: 0.7rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.14em; }

/* screenshot placeholder */
.watch-screen.ph { justify-content: center; align-items: center; text-align: center; gap: 12px;
  color: var(--text-dim); border: 1px dashed rgba(255,255,255,0.16); }
.watch-screen.ph .ph-ic { width: 40px; height: 40px; opacity: 0.55; }
.watch-screen.ph span { font-size: 0.78rem; line-height: 1.35; letter-spacing: 0.02em; }

/* ---------- Section heading ---------- */
.section { padding: 76px 0; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 50px; }
.section-head h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); letter-spacing: -0.025em; font-weight: 800; margin: 16px 0 14px; }
.section-head p { color: var(--text-soft); font-size: 1.1rem; }

/* ---------- App cards ---------- */
.apps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.app-card {
  position: relative; border-radius: var(--radius-lg); padding: 36px;
  background: var(--card); border: 1px solid var(--card-border); backdrop-filter: blur(10px);
  overflow: hidden; transition: transform 0.25s ease, border-color 0.25s ease;
}
.app-card:hover { transform: translateY(-6px); }
.app-card::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; }
.app-card.hockey::after { background: linear-gradient(90deg, var(--hockey), var(--hockey-2)); }
.app-card.football::after { background: linear-gradient(90deg, var(--football), var(--football-2)); }
.app-card.hockey:hover { border-color: rgba(56,189,248,0.5); }
.app-card.football:hover { border-color: rgba(34,197,94,0.5); }
.app-card .glow { position: absolute; width: 240px; height: 240px; border-radius: 50%; filter: blur(70px); opacity: 0.25; top: -60px; right: -60px; pointer-events: none; }
.app-card.hockey .glow { background: var(--hockey); }
.app-card.football .glow { background: var(--football); }
.app-icon { width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; font-size: 32px; margin-bottom: 20px; box-shadow: 0 12px 28px -10px rgba(0,0,0,0.6); }
.app-card.hockey .app-icon { background: linear-gradient(140deg, var(--hockey), var(--hockey-2)); }
.app-card.football .app-icon { background: linear-gradient(140deg, var(--football), var(--football-2)); }
.app-card h3 { font-size: 1.5rem; letter-spacing: -0.02em; margin-bottom: 8px; }
.app-card .sub { color: var(--text-soft); margin-bottom: 22px; min-height: 48px; }
.app-card ul { list-style: none; margin-bottom: 26px; display: grid; gap: 10px; }
.app-card ul li { display: flex; gap: 10px; align-items: center; color: var(--text-soft); font-size: 0.95rem; }
.app-card ul li svg { flex: none; }
.app-card.hockey ul li svg { color: var(--hockey); }
.app-card.football ul li svg { color: var(--football); }

/* Store badges */
.stores { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 12px;
  background: #050810; border: 1px solid rgba(255,255,255,0.14); transition: border-color 0.2s, transform 0.15s, background 0.2s; }
.store-badge:hover { border-color: var(--ring); transform: translateY(-2px); background: #0a0f1c; }
.store-badge svg { width: 22px; height: 22px; flex: none; }
.store-badge .s { display: flex; flex-direction: column; line-height: 1.1; }
.store-badge .s small { font-size: 0.62rem; color: var(--text-dim); }
.store-badge .s span { font-size: 0.96rem; font-weight: 700; }
.store-badge.big { padding: 12px 22px; }
.store-badge.big svg { width: 26px; height: 26px; }
.store-badge.big .s span { font-size: 1.08rem; }

/* ---------- Features ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { padding: 28px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--card-border);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease; }
.feature:hover { transform: translateY(-4px); border-color: var(--ring); background: rgba(255,255,255,0.06); }
.feature .ficon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(129,140,248,0.14); color: var(--accent); margin-bottom: 16px; }
.feature h4 { font-size: 1.12rem; margin-bottom: 7px; letter-spacing: -0.01em; }
.feature p { color: var(--text-soft); font-size: 0.95rem; }

/* ---------- Screens ---------- */
.screens-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; justify-items: center; }
.screen-item { display: flex; flex-direction: column; align-items: center; }
.screen-item figcaption { text-align: center; margin-top: 26px; color: var(--text-soft); font-size: 0.95rem; max-width: 30ch; }
.screen-item figcaption strong { display: block; color: var(--text); font-size: 1.05rem; margin-bottom: 5px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 820px; margin: 0 auto; }
.price-card { position: relative; border-radius: var(--radius-lg); padding: 34px; background: var(--card); border: 1px solid var(--card-border); backdrop-filter: blur(10px); }
.price-card.featured { border-color: rgba(129,140,248,0.5); background: rgba(129,140,248,0.07); box-shadow: 0 24px 60px -28px rgba(129,140,248,0.55); }
.price-ribbon { position: absolute; top: 18px; right: 18px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #0a0a16; background: linear-gradient(100deg, var(--hockey), #a78bfa); padding: 5px 12px; border-radius: 999px; }
.price-name { font-size: 1.05rem; font-weight: 700; color: var(--text-soft); }
.price-amount { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em; margin: 6px 0 2px; }
.price-amount span { font-size: 1rem; font-weight: 600; color: var(--text-soft); }
.price-sub { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 22px; }
.price-card ul { list-style: none; display: grid; gap: 12px; margin-bottom: 26px; }
.price-card ul li { display: flex; gap: 10px; align-items: flex-start; color: var(--text-soft); font-size: 0.96rem; }
.price-card ul li svg { flex: none; color: var(--football); margin-top: 3px; }
.price-card.featured ul li svg { color: var(--accent); }
.price-card ul li strong { color: var(--text); }
.pricing-foot { text-align: center; color: var(--text-dim); font-size: 0.85rem; margin-top: 24px; max-width: 620px; margin-left: auto; margin-right: auto; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-list details { background: var(--card); border: 1px solid var(--card-border); border-radius: 14px; overflow: hidden; transition: border-color 0.2s; }
.faq-list details[open] { border-color: var(--ring); }
.faq-list summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 600; font-size: 1.02rem; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list .chev { position: relative; width: 14px; height: 14px; flex: none; }
.faq-list .chev::before, .faq-list .chev::after { content: ""; position: absolute; background: var(--text-soft); border-radius: 2px; transition: transform 0.25s ease; }
.faq-list .chev::before { top: 6px; left: 0; width: 14px; height: 2px; }
.faq-list .chev::after { left: 6px; top: 0; width: 2px; height: 14px; }
.faq-list details[open] .chev::after { transform: scaleY(0); }
.faq-list .faq-body { padding: 0 22px 20px; color: var(--text-soft); font-size: 0.98rem; }
.faq-list .faq-body a { color: var(--accent); }

/* ---------- Support ---------- */
.support-card { text-align: center; max-width: 640px; margin: 0 auto; padding: 50px 36px; border-radius: var(--radius-lg);
  background: var(--card); border: 1px solid var(--card-border); backdrop-filter: blur(10px); }
.support-card h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); letter-spacing: -0.025em; margin: 16px 0 12px; }
.support-card p { color: var(--text-soft); font-size: 1.08rem; margin-bottom: 26px; }
.big-mail { font-size: 1.05rem; padding: 15px 28px; }
.reply-note { color: var(--text-dim); font-size: 0.88rem; margin-top: 18px; margin-bottom: 0; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--card-border); padding: 50px 0 40px; margin-top: 30px; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
.footer .brand { margin-bottom: 14px; }
.footer p.tag { color: var(--text-dim); font-size: 0.9rem; max-width: 32ch; }
.footer-links { display: flex; gap: 50px; flex-wrap: wrap; }
.footer-col h5 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--text-soft); font-size: 0.94rem; margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--card-border); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--text-dim); font-size: 0.88rem; }

/* ---------- Legal pages ---------- */
.legal { padding: 60px 0 40px; max-width: 800px; }
.legal h1 { font-size: 2.4rem; letter-spacing: -0.02em; margin-bottom: 8px; }
.legal .updated { color: var(--text-dim); margin-bottom: 36px; font-size: 0.92rem; }
.legal h2 { font-size: 1.35rem; margin: 34px 0 12px; letter-spacing: -0.01em; }
.legal p, .legal li { color: var(--text-soft); margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal a { color: var(--accent); }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--text-soft); margin-bottom: 30px; font-weight: 500; }
.back-link:hover { color: var(--text); }
.placeholder-note { background: rgba(251,191,36,0.08); border: 1px solid rgba(251,191,36,0.3); border-radius: 12px; padding: 14px 18px; color: #fcd34d; font-size: 0.9rem; margin-bottom: 30px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero p.lead { max-width: none; }
  .mockup-wrap { order: -1; }
  .apps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .screens-grid { grid-template-columns: 1fr; gap: 46px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
    position: absolute; top: 70px; left: 0; right: 0; background: rgba(7,11,22,0.97);
    border-bottom: 1px solid var(--card-border); padding: 22px 24px; }
  .nav-toggle { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .hero { padding: 46px 0; }
}
