/* ============================================================
   Outlier — outlier.host
   Dark theme, Outfit font, Apple-level minimal premium design
   ============================================================ */

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

:root {
  --bg:          #0a0a0a;
  --surface:     #111111;
  --card:        #141414;
  --card-hover:  #191919;
  --border:      #222222;
  --border-light:#2a2a2a;

  --text:        #f0f0f0;
  --text-sub:    #888888;
  --text-muted:  #555555;

  --accent:      #ffffff;
  --accent-dim:  rgba(255,255,255,0.06);

  --green:       #22c55e;
  --green-bg:    rgba(34,197,94,0.10);
  --dim-bg:      rgba(255,255,255,0.04);

  --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-lg: 16px;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/* ---- CONTAINER ---- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- 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: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sub);
  text-decoration: none;
  transition: color 0.15s;
}

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

/* ---- HERO ---- */
.hero {
  padding: 120px 0 100px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 36px;
}

.hero-headline {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-block;
  background: var(--text);
  color: var(--bg);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.15s;
}

.btn-primary:hover {
  opacity: 0.88;
}

/* ---- SECTIONS ---- */
.section {
  padding: 100px 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-sub);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.section-desc em {
  font-style: normal;
  color: var(--text);
  font-weight: 500;
}

/* ---- PRODUCTS GRID ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s, background 0.2s;
}

.product-card:hover {
  border-color: var(--border-light);
  background: var(--card-hover);
}

.product-card--dim {
  opacity: 0.6;
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.product-icon {
  font-size: 22px;
  color: var(--text);
}

.product-icon--dim {
  color: var(--text-muted);
}

/* ---- BADGES ---- */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}

.badge-live {
  background: var(--green-bg);
  color: var(--green);
}

.badge-soon {
  background: var(--dim-bg);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* ---- PRODUCT CARD CONTENT ---- */
.product-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-top: 4px;
}

.product-tagline {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.product-desc {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.65;
  flex: 1;
}

.product-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.15s;
}

.product-link:hover {
  opacity: 0.7;
}

.product-link--muted {
  color: var(--text-muted);
  cursor: default;
}

/* ---- HOW IT WORKS / STEPS ---- */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.3;
}

.step-desc {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.65;
}

.step-connector {
  font-size: 20px;
  color: var(--border-light);
  flex-shrink: 0;
  margin-top: 28px;
  user-select: none;
}

/* ---- ABOUT ---- */
.about-block {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
}

.about-body {
  font-size: 17px;
  color: var(--text-sub);
  line-height: 1.75;
}

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

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

.footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-link:hover {
  color: var(--text-sub);
}

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

/* ---- UTILITY ---- */
.break-md {
  display: none;
}

/* ---- RESPONSIVE ---- */
@media (min-width: 680px) {
  .break-md {
    display: inline;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 80px 0 72px;
  }

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

  .step-connector {
    display: none;
  }

  .nav-links {
    gap: 20px;
  }

  .section {
    padding: 72px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 0 56px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 40px;
  }
}
