/* Shootaround landing — self-contained, no external fonts or scripts.
   Palette mirrors the app: dark court surface + orange ball. */
:root {
  --bg: #101418;
  --panel: #1B2126;
  --panel-2: #232B32;
  --text: #F4F6F8;
  --muted: #AEB8BF;
  --orange: #E8632C;
  --line: #2E373E;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 960px; margin: 0 auto; padding: 0 20px; }

/* hero */
.hero { text-align: center; padding: 72px 20px 56px; }
.hero img.logo { width: 120px; height: 120px; }
.hero h1 { font-size: 52px; font-weight: 800; color: var(--orange); margin-top: 12px; }
.hero .kicker {
  color: var(--orange); opacity: .85; font-size: 14px; font-weight: 600;
  letter-spacing: .32em; text-transform: uppercase;
}
.hero .tagline { color: var(--muted); font-size: 20px; margin-top: 14px; }
.cta {
  display: inline-block; background: var(--orange); color: #1A1205;
  font-size: 18px; font-weight: 700; padding: 14px 34px; border-radius: 999px;
  margin-top: 28px;
}
.cta:hover { filter: brightness(1.08); text-decoration: none; }
.cta-sub { color: var(--muted); font-size: 13px; margin-top: 10px; }

/* sections */
section { padding: 48px 0; }
section.alt { background: var(--panel); }
h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.lede { color: var(--muted); font-size: 17px; max-width: 640px; }

/* feature grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 24px; }
.card { background: var(--panel-2); border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
section.alt .card { background: var(--bg); }
.card h3 { font-size: 17px; margin-bottom: 6px; }
.card p { color: var(--muted); font-size: 15px; }

/* screenshots */
.shots { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.shots figure { text-align: center; }
.shots img {
  width: 260px; max-width: 80vw; border-radius: 22px;
  border: 1px solid var(--line); box-shadow: 0 18px 48px rgba(0,0,0,.5);
}
.shots figcaption { color: var(--muted); font-size: 14px; margin-top: 10px; }

/* how it works */
.steps { counter-reset: step; margin-top: 20px; display: grid; gap: 12px; }
.steps li {
  list-style: none; background: var(--panel-2); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 18px 14px 58px; position: relative; color: var(--muted);
}
.steps li strong { color: var(--text); }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; background: var(--orange);
  color: #1A1205; font-weight: 800; display: flex; align-items: center; justify-content: center;
}

/* footer */
footer { border-top: 1px solid var(--line); padding: 28px 20px; text-align: center; color: var(--muted); font-size: 14px; }
footer .links { margin-bottom: 8px; }
footer .links a { margin: 0 10px; }

/* privacy page */
.doc { max-width: 760px; margin: 0 auto; padding: 40px 20px 64px; }
.doc h1 { font-size: 34px; margin-bottom: 4px; }
.doc .updated { color: var(--muted); margin-bottom: 24px; }
.doc h2 { font-size: 22px; margin: 28px 0 8px; }
.doc p, .doc li { color: #D6DCE0; font-size: 16px; }
.doc ul { padding-left: 22px; margin: 8px 0; }
.doc li { margin: 4px 0; }
.topnav { padding: 18px 20px; }
.topnav a.home { color: var(--muted); font-size: 15px; }

@media (max-width: 560px) {
  .hero h1 { font-size: 40px; }
  .hero { padding-top: 48px; }
}
