/* Sightline marketing site — design tokens match the live app exactly:
   background #060910, text #E8EDF5, green #00C896, blue #4A9EFF, orange #FF6B35,
   Barlow / Barlow Condensed. Source of truth: SightlineLanding.jsx, Login.jsx. */

:root {
  --bg: #060910;
  --text: #E8EDF5;
  --green: #00C896;
  --green-hover: #00E0A8;
  --blue: #4A9EFF;
  --orange: #FF6B35;
  --display: 'Barlow Condensed', sans-serif;
  --body: 'Barlow', sans-serif;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ---------- Logo mark (matches app exactly: rounded square + inner dot) ---------- */
.brand { display: flex; align-items: center; gap: 8px; }
.mark { width: 32px; height: 32px; border-radius: 8px; background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mark::after { content: ''; width: 12px; height: 12px; border-radius: 50%; background: var(--bg); }
.mark.small { width: 28px; height: 28px; border-radius: 6px; }
.mark.small::after { width: 10px; height: 10px; }
.wordmark { font-family: var(--display); font-size: 22px; font-weight: 800; letter-spacing: 0.08em; }

/* ---------- Buttons (exact classes/behavior from the app) ---------- */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; background: var(--green); color: var(--bg); border: none; padding: 14px 32px; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: var(--body); letter-spacing: 0.02em; transition: all 0.2s; text-transform: uppercase; }
.btn-primary:hover { background: var(--green-hover); transform: translateY(-1px); }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; background: transparent; color: var(--text); border: 1px solid rgba(232,237,245,0.25); padding: 14px 32px; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: var(--body); transition: all 0.2s; text-transform: uppercase; }
.btn-outline:hover { border-color: rgba(232,237,245,0.5); background: rgba(232,237,245,0.05); }
.btn-signin { background: transparent; color: rgba(232,237,245,0.6); border: 1px solid rgba(255,255,255,0.15); padding: 10px 22px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: var(--body); transition: all 0.2s; white-space: nowrap; }
.btn-signin:hover { border-color: var(--green); color: var(--green); }

/* ---------- Nav ---------- */
.site-nav { position: sticky; top: 0; z-index: 100; padding: 20px 24px; background: rgba(6,9,16,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: rgba(232,237,245,0.6); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn-primary { padding: 10px 22px; font-size: 14px; }

@media (max-width: 860px) {
  .nav-links { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: 100px 24px 80px; text-align: center; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: 10%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px; background: radial-gradient(ellipse, rgba(0,200,150,0.12) 0%, transparent 70%); pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
h1.hero-headline { font-family: var(--display); font-size: clamp(40px, 8vw, 92px); font-weight: 900; line-height: 0.95; letter-spacing: -0.02em; text-transform: uppercase; margin: 0 0 28px; }
h1.hero-headline span { display: block; }
.hero-sub { font-size: clamp(16px, 4vw, 18px); color: rgba(232,237,245,0.6); max-width: 560px; margin: 0 auto 40px; line-height: 1.6; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.hero-actions a { width: 100%; max-width: 240px; }
.signin-line { margin-bottom: 36px; font-size: 14px; color: rgba(232,237,245,0.45); }
.signin-line a { color: var(--green); text-decoration: underline; }
.sport-ticker { display: flex; align-items: center; gap: 10px; justify-content: center; font-size: 13px; }
.sport-ticker .label { color: rgba(232,237,245,0.35); letter-spacing: 0.08em; text-transform: uppercase; }
.sport-ticker .sport { font-size: 15px; font-weight: 700; color: var(--blue); min-width: 90px; text-align: left; }

/* ---------- Stats bar ---------- */
.stats-bar { background: rgba(0,200,150,0.06); border-top: 1px solid rgba(0,200,150,0.15); border-bottom: 1px solid rgba(0,200,150,0.15); padding: 36px 24px; }
.stats-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 24px; text-align: center; }
.stat-value { font-family: var(--display); font-size: 38px; font-weight: 900; color: var(--green); letter-spacing: -0.02em; }
.stat-label { font-size: 12px; color: rgba(232,237,245,0.5); font-weight: 500; margin-top: 4px; letter-spacing: 0.04em; text-transform: uppercase; }

/* ---------- Section shared ---------- */
section { padding: 80px 24px; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.eyebrow { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green); font-weight: 700; margin-bottom: 14px; }
.eyebrow.blue { color: var(--blue); }
.eyebrow.orange { color: var(--orange); }
h2.section-title { font-family: var(--display); font-size: clamp(32px, 5vw, 52px); font-weight: 900; text-transform: uppercase; margin: 0; }

/* ---------- User type tabs ---------- */
.user-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.user-tab { padding: 12px 22px; border-radius: 8px; cursor: pointer; font-size: 13px; font-weight: 600; border: 1px solid rgba(255,255,255,0.1); background: transparent; color: rgba(232,237,245,0.6); text-transform: uppercase; letter-spacing: 0.03em; font-family: var(--body); transition: all 0.15s; }
.user-tab.active { color: var(--bg); border-color: transparent; }
.user-panel { background: rgba(255,255,255,0.04); border-radius: 20px; padding: 40px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.user-tagline { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.user-title { font-family: var(--display); font-size: 36px; font-weight: 900; text-transform: uppercase; margin: 0 0 16px; }
.user-desc { font-size: 15px; color: rgba(232,237,245,0.65); line-height: 1.7; margin-bottom: 24px; }
.feature-pill { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(232,237,245,0.75); margin-bottom: 9px; }
.feature-pill .check { width: 17px; height: 17px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; }
@media (max-width: 760px) { .user-panel { grid-template-columns: 1fr; padding: 28px; } }

/* ---------- How it works ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 1000px; margin: 0 auto; }
.step-card { text-align: center; border-radius: 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 28px; }
.step-num { font-family: var(--display); font-size: 44px; font-weight: 900; color: rgba(74,158,255,0.2); margin-bottom: 14px; line-height: 1; }
.step-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 13px; color: rgba(232,237,245,0.5); line-height: 1.6; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto; }
.price-card { position: relative; border-radius: 16px; padding: 28px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; }
.price-card.highlight { background: rgba(0,200,150,0.06); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green); color: var(--bg); font-size: 11px; font-weight: 800; padding: 4px 16px; border-radius: 20px; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
.price-tier { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.price-amount { font-family: var(--display); font-size: 42px; font-weight: 900; color: var(--text); line-height: 1; }
.price-sub { font-size: 12.5px; color: rgba(232,237,245,0.4); margin: 4px 0 20px; }
.price-card .feature-pill { font-size: 13px; }
.price-cta { margin-top: 20px; width: 100%; padding: 13px; border-radius: 8px; font-family: var(--body); font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.pricing-note { text-align: center; margin-top: 28px; font-size: 14px; color: rgba(232,237,245,0.35); }

/* ---------- Bottom CTA ---------- */
.bottom-cta { margin: 0 24px 80px; border-radius: 24px; background: linear-gradient(135deg, rgba(0,200,150,0.15) 0%, rgba(74,158,255,0.1) 100%); border: 1px solid rgba(0,200,150,0.2); padding: 64px 32px; text-align: center; }
.bottom-cta h2 { font-family: var(--display); font-size: clamp(32px, 5vw, 56px); font-weight: 900; text-transform: uppercase; margin: 0 0 18px; }
.bottom-cta p { font-size: 16px; color: rgba(232,237,245,0.6); max-width: 480px; margin: 0 auto 36px; line-height: 1.6; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 48px 24px; display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 14px; font-weight: 600; color: rgba(232,237,245,0.6); }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 13px; color: rgba(232,237,245,0.3); }

/* ---------- Breadcrumb / sub-pages ---------- */
.breadcrumb { font-size: 12px; color: rgba(232,237,245,0.4); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--green); }
.legal-doc { max-width: 760px; margin: 0 auto; padding: 60px 24px 100px; }
.legal-doc h1 { font-family: var(--display); font-size: 44px; font-weight: 900; text-transform: uppercase; margin: 0 0 6px; }
.legal-doc .effective { font-size: 12px; color: rgba(232,237,245,0.4); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 32px; }
.legal-doc h3 { font-family: var(--display); font-size: 20px; font-weight: 800; text-transform: uppercase; margin: 28px 0 10px; }
.legal-doc p, .legal-doc li { font-size: 15px; color: rgba(232,237,245,0.7); line-height: 1.7; }
.legal-doc ul { padding-left: 20px; display: flex; flex-direction: column; gap: 8px; margin: 0 0 16px; }
.legal-doc a { color: var(--green); }

/* ---------- Contact form ---------- */
.form-wrap { max-width: 560px; margin: 0 auto; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(232,237,245,0.5); margin-bottom: 8px; }
.field input, .field select, .field textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 13px 16px; color: var(--text); font-family: var(--body); font-size: 15px; outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(0,200,150,0.5); }
.field textarea { min-height: 130px; resize: vertical; }
#form-status { margin-top: 16px; font-size: 14px; }
#form-status.success { color: var(--green); }
#form-status.error { color: #FF4B4B; }
button[disabled] { opacity: 0.6; cursor: default; }

/* ---------- Focus & motion ---------- */
a:focus-visible, button:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } html { scroll-behavior: auto; } }
