/* OUTREP — Dark, bold, electric. */

:root {
  --bg: #0A0A0A;
  --bg-alt: #111111;
  --surface: #1A1A1A;
  --border: #2A2A2A;
  --accent: #BFFF00;
  --accent-dim: rgba(191, 255, 0, 0.12);
  --text: #F5F0E8;
  --text-dim: rgba(245, 240, 232, 0.55);
  --text-muted: rgba(245, 240, 232, 0.3);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* HERO */
.hero {
  padding: 120px 32px 100px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(191, 255, 0, 0.2);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 32px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 14ch;
}
.hero-headline .accent { color: var(--accent); }
.hero-sub {
  font-size: 1.2rem;
  color: var(--text-dim);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 64px;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 40px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 18ch;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin-right: 40px;
  flex-shrink: 0;
}

/* PROOF */
.proof {
  padding: 80px 32px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.proof-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  max-width: 40ch;
  letter-spacing: -0.02em;
  font-style: italic;
  margin-bottom: 24px;
}
.proof-attr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.proof-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}
.proof-role {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* WORKFLOW */
.workflow {
  padding: 100px 32px;
  border-bottom: 1px solid var(--border);
}
.workflow .section-label,
.features .section-label,
.pricing .section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.workflow .section-headline,
.features .section-headline,
.pricing .section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 64px;
  max-width: 20ch;
}
.workflow-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.step-desc {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.6;
  font-weight: 300;
}

/* FEATURES */
.features {
  padding: 100px 32px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.feature-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature {
  background: var(--surface);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.feature:hover { border-color: rgba(191, 255, 0, 0.3); }
.feature-icon {
  color: var(--accent);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 6px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.feature-desc {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.65;
  font-weight: 300;
}

/* PRICING */
.pricing {
  padding: 100px 32px;
  border-bottom: 1px solid var(--border);
}
.pricing-sub {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 56px;
  font-weight: 300;
}
.pricing-card {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pricing-tier {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.pricing-tier.featured {
  border-color: var(--accent);
  background: #141400;
}
.pricing-tier-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.pricing-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  transform: translateY(-50%);
  background: var(--accent);
  color: #0A0A0A;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.04em;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-dollar {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dim);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-period {
  font-size: 0.9rem;
  color: var(--text-dim);
  font-weight: 300;
}
.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.5;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.pricing-features li {
  font-size: 0.875rem;
  color: var(--text-dim);
  padding-left: 20px;
  position: relative;
  font-weight: 300;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* CLOSING */
.closing {
  padding: 100px 32px;
  background: var(--bg-alt);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  max-width: 48ch;
  letter-spacing: -0.02em;
}

/* FOOTER */
.footer {
  padding: 48px 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  color: var(--text);
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
}
.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero { padding: 80px 24px 72px; }
  .hero-headline { font-size: 2.8rem; max-width: none; }
  .hero-sub { font-size: 1rem; margin-bottom: 48px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat { padding-right: 0; }
  .stat-divider { display: none; }
  .nav-links { display: none; }
  .workflow-steps { grid-template-columns: 1fr; gap: 40px; }
  .workflow .section-headline { margin-bottom: 48px; }
  .feature-grid { grid-template-columns: 1fr; }
  .pricing-card { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .hero { padding: 64px 20px 56px; }
  .hero-headline { font-size: 2.2rem; }
  .proof-quote { font-size: 1.2rem; }
  .closing-statement { font-size: 1.1rem; }
}