/* ============================================================
   RosterFoundry — Public Landing Page
   Dark theme, orange accent (#ff6b35)
   Mobile-first, no dependencies
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange:        #ff6b35;
  --orange-dark:   #e05525;
  --orange-dim:    rgba(255, 107, 53, 0.15);
  --bg:            #0a0d12;
  --bg-alt:        #0f1318;
  --bg-card:       #141920;
  --bg-card-hover: #1a2029;
  --border:        rgba(255,255,255,0.08);
  --border-accent: rgba(255, 107, 53, 0.35);
  --text-primary:  #f0f2f5;
  --text-secondary:#8b92a0;
  --text-muted:    #555e6e;
  --green:         #22c55e;
  --green-dim:     rgba(34, 197, 94, 0.15);
  --yellow:        #f59e0b;
  --yellow-dim:    rgba(245, 158, 11, 0.12);
  --radius-sm:     6px;
  --radius-md:     10px;
  --radius-lg:     16px;
  --radius-xl:     20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Layout ---- */

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

/* Button styles removed — no CTAs on placeholder page */

/* ---- Nav ---- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 13, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-icon {
  font-size: 22px;
  color: var(--orange);
  line-height: 1;
}

.brand-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ---- Hero ---- */

.hero {
  padding: 96px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

.beta-badge {
  display: inline-block;
  background: var(--orange-dim);
  color: var(--orange);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 16px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.hero-tagline {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Sections ---- */

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.5px;
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 48px;
}

/* ---- Features grid ---- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: background 0.15s, border-color 0.15s;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.14);
}

.feature-card--soon {
  opacity: 0.6;
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.soon-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  background: var(--yellow-dim);
  color: var(--yellow);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 100px;
  padding: 2px 10px;
  letter-spacing: 0.3px;
}

/* ---- How it works ---- */

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.how-step {
  text-align: center;
  padding: 24px 16px;
}

.how-num {
  font-size: 48px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -2px;
}

.how-step h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.how-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---- Beta status ---- */

.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin-bottom: 40px;
}

.status-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.status-card--live { border-color: rgba(34,197,94,0.2); }
.status-card--soon { border-color: rgba(245,158,11,0.15); opacity: 0.7; }

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot--live {
  background: var(--green);
  box-shadow: 0 0 6px rgba(34,197,94,0.5);
}

.status-dot--soon {
  background: var(--yellow);
}

.status-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.status-detail {
  font-size: 12px;
  color: var(--text-secondary);
}

.beta-info {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.beta-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.beta-info-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
}

.beta-info-value {
  font-size: 14px;
  color: var(--text-primary);
}

.beta-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Footer ---- */

.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 48px 0 40px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--text-primary); }

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---- Responsive ---- */

@media (max-width: 640px) {
  .hero { padding: 72px 0 60px; }
  .section { padding: 60px 0; }
  .how-grid { grid-template-columns: 1fr; gap: 24px; }
  .hide-mobile { display: none; }
}

/* ---- Passive status notes ---- */

.hero-note {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-secondary);
}

.beta-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-muted);
}