/* =========================================================
   HockeyReferee — placeholder site styles
   No navigation. One-page flow. Calm, referee-first UI.
   ========================================================= */

:root {
  --bg: #ffffff;
  --text: #0c0f14;
  --muted: #5b6575;
  --border: rgba(12, 15, 20, 0.12);
  --soft: rgba(12, 15, 20, 0.06);
  --blue: #0b5fff;
  --blue-soft: rgba(11, 95, 255, 0.1);
  --alt: #f7f9fc;
  --card: #ffffff;
  --shadow: 0 14px 36px rgba(12, 15, 20, 0.12);
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1120px;
}

/* Reset & base */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  padding-left: 20px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Layout helpers */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Sections */

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-lead {
  max-width: 72ch;
  color: var(--muted);
  margin: 0 0 28px;
  font-size: 16px;
}

/* Typography */

h1,
h2,
h3 {
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(34px, 4vw, 52px);
  margin: 12px 0 16px;
}

h2 {
  font-size: clamp(24px, 2.4vw, 34px);
  margin: 0 0 12px;
}

h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  padding: 56px 0 60px;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(11,95,255,.10), transparent 60%),
    radial-gradient(900px 600px at 90% 0%, rgba(11,95,255,.08), transparent 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.brandline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.brandlogo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 22px rgba(12,15,20,0.1);
}

.brandname {
  font-weight: 800;
  font-size: 16px;
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  border: 1px solid rgba(11,95,255,0.2);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 66ch;
  margin-bottom: 18px;
}

.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.75);
  font-weight: 700;
}

.store-badge span {
  color: var(--muted);
  font-weight: 600;
}

.store-badge.disabled {
  opacity: 0.85;
}

.quick-points {
  color: var(--muted);
  margin: 0;
}

/* Hero visuals */

.hero-visual {
  position: relative;
  min-height: 420px;
}

.device-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.shot {
  position: absolute;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
}

.shot-1 {
  top: 0;
  right: 0;
  width: min(360px, 62%);
  transform: rotate(2deg);
}

.shot-2 {
  bottom: 0;
  left: 0;
  width: min(360px, 62%);
  transform: rotate(-2deg);
}

/* =========================================================
   Cards / features
   ========================================================= */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(12,15,20,0.06);
}

.card p {
  margin: 0;
  color: var(--muted);
}

/* =========================================================
   Gallery
   ========================================================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery-item {
  grid-column: span 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 22px rgba(12,15,20,0.06);
}

.gallery-item figcaption {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.gallery-item.watch {
  grid-column: span 4;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq {
  max-width: 860px;
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  font-weight: 700;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  padding: 0 16px 14px;
  margin: 0;
  color: var(--muted);
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.muted {
  color: var(--muted);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item {
    grid-column: span 6;
  }

  .hero-visual {
    min-height: 460px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 56px 0;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    grid-column: auto;
  }

  .hero {
    padding: 44px 0 48px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .shot-1,
  .shot-2 {
    width: min(380px, 86%);
  }
}
