/* SUNDAY SIDEKICK — sundaysidekick.com
   Brand: matches the app (dark #0A0A0A, orange #F7863C, broadcast energy).
   Display face: Anton (condensed, uppercase — NFL-broadcast). Body: system. */

:root {
  --ink: #0a0a0a;
  --panel: #121212;
  --panel2: #191919;
  --line: #242424;
  --text: #f5f5f5;
  --muted: #8f8f8f;
  --dim: #5a5a5a;
  --orange: #f7863c;
  --green: #34e07a;
  --red: #e9382b;
  --teal: #2bb6c4;
  --gold: #ffc530;
  --display: 'Anton', 'Arial Narrow', sans-serif;
  --body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 14px;
  padding: 14px clamp(16px, 4vw, 40px);
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav img { width: 34px; height: 34px; border-radius: 8px; }
.nav .brand {
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.04em;
  color: var(--text);
  text-transform: uppercase;
}
.nav .brand:hover { text-decoration: none; }
.nav .links { margin-left: auto; display: flex; gap: 22px; align-items: center; }
.nav .links a { color: var(--muted); font-size: 13.5px; font-weight: 600; }
.nav .links a:hover { color: var(--text); text-decoration: none; }
.nav .cta {
  background: var(--orange); color: #1a0d02 !important;
  padding: 9px 18px; border-radius: 999px;
  font-weight: 800; font-size: 13.5px;
}
.nav .cta:hover { filter: brightness(1.08); text-decoration: none; }
@media (max-width: 640px) { .nav .links a:not(.cta) { display: none; } }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(64px, 10vw, 120px) 20px 56px;
  /* yard lines + orange stadium glow */
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(247, 134, 60, 0.16), transparent 65%),
    repeating-linear-gradient(to bottom, transparent 0 119px, rgba(245, 245, 245, 0.035) 119px 120px),
    var(--ink);
}
.hero img.shield { width: clamp(132px, 18vw, 200px); margin: 0 auto 30px; border-radius: 32px;
  box-shadow: 0 14px 70px rgba(247, 134, 60, 0.32); }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(44px, 8.5vw, 96px);
  line-height: 0.98;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--orange); }
.hero .sub {
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 19px);
  max-width: 560px;
  margin: 22px auto 0;
  text-wrap: balance;
}
.hero .actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: var(--orange); color: #1a0d02;
  font-weight: 800; font-size: 15.5px;
  padding: 15px 30px; border-radius: 999px;
}
.btn-primary:hover { filter: brightness(1.08); text-decoration: none; }
.btn-ghost {
  display: inline-block;
  color: var(--text); font-weight: 700; font-size: 15.5px;
  padding: 15px 30px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--panel);
}
.btn-ghost:hover { border-color: var(--dim); text-decoration: none; }
.hero .fineprint { margin-top: 16px; color: var(--dim); font-size: 12.5px; }

/* ---------- live ticker ---------- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
}
.ticker .track { display: inline-flex; gap: 34px; animation: slide 36s linear infinite; will-change: transform; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker .track { animation: none; } }
.tick { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: 13.5px; font-weight: 600; }
.tick b { color: var(--text); font-weight: 700; }
.chip {
  font-size: 10px; font-weight: 800; letter-spacing: 0.09em;
  padding: 3px 9px; border-radius: 999px; color: #0a0a0a;
}
.chip.td { background: var(--green); }
.chip.rz { background: var(--red); color: #fff; }
.chip.big { background: var(--teal); }
.chip.to { background: var(--gold); }
.pts { color: var(--green); font-weight: 800; font-variant-numeric: tabular-nums; }

/* ---------- sections ---------- */
.section { padding: clamp(64px, 9vw, 110px) clamp(20px, 5vw, 48px); max-width: 1120px; margin: 0 auto; }
.kicker {
  color: var(--orange);
  font-size: 12.5px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 14px;
}
.section h2 {
  font-family: var(--display);
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.04;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-wrap: balance;
}
.section p.lead { color: var(--muted); font-size: 17px; max-width: 620px; margin-top: 18px; }

/* feature split: copy + phone */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split.flip .copy { order: 2; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split.flip .copy { order: 0; }
}
.split .copy h2 { margin-bottom: 6px; }
.split ul.points { list-style: none; margin-top: 22px; display: grid; gap: 14px; }
.split ul.points li { padding-left: 30px; position: relative; color: #cfcfcf; font-size: 15.5px; }
.split ul.points li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 16px; height: 4px; border-radius: 2px; background: var(--rail, var(--orange));
}
.split ul.points li b { color: var(--text); }

/* phone frame */
.phone {
  justify-self: center;
  width: min(320px, 78vw);
  border-radius: 44px;
  border: 1px solid #2e2e2e;
  background: #000;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 90px var(--glow, rgba(247, 134, 60, 0.10));
}
.phone .screen-wrap { border-radius: 34px; overflow: hidden; background: var(--panel); position: relative; }
.phone img { width: 100%; }

/* auto-rotating screenshots: first image sets the height; the rest stack on
   top and crossfade in sequence (12s loop). Reduced motion = first frame. */
.screen-wrap.rotate img + img { position: absolute; inset: 0; opacity: 0; }
.screen-wrap.rotate img:nth-child(2) { animation: rotB 12s ease-in-out infinite; }
.screen-wrap.rotate img:nth-child(3) { animation: rotC 12s ease-in-out infinite; }
@keyframes rotB { 0%, 30% { opacity: 0; } 36%, 63% { opacity: 1; } 69%, 100% { opacity: 0; } }
@keyframes rotC { 0%, 63% { opacity: 0; } 69%, 96% { opacity: 1; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .screen-wrap.rotate img + img { animation: none; } }

/* small feature grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin-top: 40px; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 4px solid var(--rail, var(--orange));
  border-radius: 14px;
  padding: 22px 20px;
}
.card .emoji { font-size: 26px; }
.card h3 { font-size: 16px; margin: 12px 0 6px; }
.card p { color: var(--muted); font-size: 14px; }

/* ethos band */
.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 70% 100% at 50% 120%, rgba(247, 134, 60, 0.10), transparent 70%),
    var(--panel);
  text-align: center;
}
.band .section { padding-top: clamp(56px, 7vw, 84px); padding-bottom: clamp(56px, 7vw, 84px); }
.band h2 { max-width: 800px; margin: 0 auto; }
.band p.lead { margin-left: auto; margin-right: auto; }

/* ---------- legal / prose pages ---------- */
.prose { max-width: 760px; margin: 0 auto; padding: clamp(48px, 7vw, 80px) 22px 80px; }
.prose h1 {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: 0.02em; text-transform: uppercase;
  margin-bottom: 6px;
}
.prose .updated { color: var(--dim); font-size: 13px; margin-bottom: 34px; }
.prose h2 { font-size: 19px; margin: 34px 0 10px; }
.prose h3 { font-size: 16px; margin: 22px 0 8px; }
.prose p, .prose li { color: #c9c9c9; font-size: 15px; }
.prose ul, .prose ol { padding-left: 22px; margin: 10px 0; }
.prose li { margin: 6px 0; }
.prose strong { color: var(--text); }
.prose .note {
  background: var(--panel); border: 1px solid var(--line); border-left: 4px solid var(--orange);
  border-radius: 10px; padding: 14px 16px; margin: 18px 0; font-size: 14px; color: #c9c9c9;
}
.contact-email { font-size: 20px; font-weight: 700; margin: 10px 0 26px; }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 42px clamp(20px, 5vw, 48px) 56px;
  max-width: 1120px; margin: 0 auto;
}
footer .row { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
footer img { width: 28px; height: 28px; border-radius: 7px; }
footer .brand { font-family: var(--display); font-size: 15px; letter-spacing: 0.05em; text-transform: uppercase; }
footer nav { margin-left: auto; display: flex; flex-wrap: wrap; gap: 18px; }
footer nav a { color: var(--muted); font-size: 13px; }
footer .legal {
  margin-top: 26px; color: var(--dim); font-size: 12px; line-height: 1.7; max-width: 760px;
}
