/* === COLLECTOR INDEX — STYLES === */

:root {
  --bg: #0a0e17;
  --bg-card: #0f1420;
  --bg-elevated: #141a2a;
  --bg-section-alt: #080c14;
  --text: #ffffff;
  --text-secondary: #8a91a4;
  --text-muted: #5a6178;
  --accent: #a0a8be;
  --accent-gold: #c9a94e;
  --accent-blue: #4a7cff;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(10, 14, 23, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

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

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

.logo-mark {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
  border: 1.5px solid var(--accent-gold);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.logo-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), #b8952f);
  color: var(--bg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 169, 78, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-hover);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--text-secondary);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 13px;
  background: rgba(201, 169, 78, 0.1);
  border: 1px solid rgba(201, 169, 78, 0.3);
  color: var(--accent-gold);
  border-radius: var(--radius);
}

.btn-sm:hover {
  background: rgba(201, 169, 78, 0.2);
  color: var(--accent-gold);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(74, 124, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(201, 169, 78, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-section-alt) 100%);
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1s;
}

.hero-stat { text-align: center; }

.hero-stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
}

.hero-stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* === SECTIONS === */
.section {
  padding: 120px 0;
}

.section-dark {
  background: var(--bg-section-alt);
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 60px;
}

/* === FEATURES === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.feature-icon {
  color: var(--accent-gold);
  margin-bottom: 24px;
}

.feature-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 4px;
}

.feature-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 8px;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
}

/* === SIGNAL PREVIEW === */
.signal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 700px;
  margin: 48px auto 0;
}

.signal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.signal-model {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.signal-spec {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.signal-direction {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius);
}

.signal-up {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.signal-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.signal-metric {
  display: grid;
  grid-template-columns: 120px 1fr 40px;
  align-items: center;
  gap: 16px;
}

.signal-metric-label {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.signal-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.signal-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold), #e0c15e);
  border-radius: 2px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.signal-metric-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-align: right;
}

.signal-commentary {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.signal-commentary p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.signal-commentary strong {
  color: var(--accent-gold);
  font-weight: 500;
}

.signal-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 20px;
  font-style: italic;
}

/* === COVERAGE === */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.coverage-brand {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.coverage-brand:hover {
  border-color: var(--border-hover);
}

.coverage-brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.coverage-models li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.coverage-models li:last-child { border-bottom: none; }

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.pricing-card-featured {
  border-color: var(--accent-gold);
  background: linear-gradient(180deg, rgba(201, 169, 78, 0.05) 0%, var(--bg-card) 40%);
}

.pricing-card-featured:hover {
  border-color: var(--accent-gold);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}

.pricing-tier {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.pricing-price {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 36px;
}

.pricing-features li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 600;
}

.pricing-card .btn { width: 100%; }

/* === ABOUT === */
.about-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo-placeholder {
  width: 280px;
  height: 340px;
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 300;
  color: var(--accent-gold);
  opacity: 0.6;
}

.about-text .section-title {
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-quote {
  font-family: var(--serif);
  font-size: 20px !important;
  font-style: italic;
  color: var(--accent-gold) !important;
  border-left: 2px solid var(--accent-gold);
  padding-left: 24px;
  margin-top: 24px !important;
  line-height: 1.6 !important;
}

/* === WAITLIST === */
.waitlist-container {
  text-align: center;
  max-width: 600px;
}

.waitlist-form {
  margin-top: 40px;
}

.waitlist-input-group {
  display: flex;
  gap: 12px;
}

.waitlist-input-group input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}

.waitlist-input-group input::placeholder {
  color: var(--text-muted);
}

.waitlist-input-group input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 78, 0.1);
}

.waitlist-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

.waitlist-success {
  color: var(--accent-gold);
  padding: 40px 0;
}

.waitlist-success svg { margin-bottom: 20px; }

.waitlist-success h3 {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--text);
}

.waitlist-success p {
  color: var(--text-secondary);
  font-size: 16px;
}

/* === FOOTER === */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand { max-width: 300px; }

.footer-brand .logo-mark { display: inline-flex; }
.footer-brand .logo-text { margin-left: 12px; }

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color var(--transition);
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal {
  font-style: italic;
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .features-grid,
  .pricing-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-photo-placeholder {
    width: 200px;
    height: 240px;
    margin: 0 auto;
    font-size: 60px;
  }

  .about-text { text-align: left; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 23, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 99;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 18px; }
  .nav-toggle { display: block; z-index: 101; }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    gap: 40px;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .signal-metric {
    grid-template-columns: 100px 1fr 32px;
    gap: 8px;
  }

  .signal-card { padding: 32px 24px; }
}

@media (max-width: 500px) {
  .waitlist-input-group {
    flex-direction: column;
  }

  .waitlist-input-group .btn {
    width: 100%;
  }

  .section { padding: 80px 0; }

  .feature-card { padding: 32px 24px; }

  .pricing-card { padding: 36px 24px; }
}

/* === LEGAL PAGES === */
.legal-page {
  padding: 120px 0 80px;
  max-width: 720px;
  margin: 0 auto;
}

.legal-page h1 {
  font-family: var(--serif);
  font-size: 36px;
  margin-bottom: 8px;
}

.legal-page .legal-updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal-page h2 {
  font-family: var(--serif);
  font-size: 24px;
  margin: 40px 0 12px;
  font-weight: 500;
}

.legal-page p, .legal-page li {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 20px;
  list-style: disc;
}

.legal-page a {
  color: var(--accent-gold);
  text-decoration: underline;
}
