/* Asteroid Recruiting marketing site — page-level styles */

/* Generic button system (mirrors the components-buttons preview) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  border: 0;
  border-radius: var(--radius-md);
  padding: 12px 20px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: background var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn:hover { border-bottom-color: transparent; }
.btn-primary { background: var(--brand-orange); color: #fff; }
.btn-primary:hover { background: var(--brand-orange-deep); color: #fff; }
.btn-secondary { background: var(--brand-navy); color: #fff; }
.btn-secondary:hover { background: var(--brand-navy-soft); color: #fff; }
.btn-ghost { background: transparent; color: var(--brand-navy); border: 1px solid var(--border-strong); }
.btn-ghost:hover { background: var(--neutral-100); color: var(--brand-navy); }
.btn-flame { background: var(--brand-flame); color: #fff; box-shadow: var(--shadow-flame); }
.btn-flame:hover { color: #fff; box-shadow: 0 14px 36px rgba(240,120,72,0.40); }
.btn-sm { padding: 8px 14px; font-size: 13px; border-radius: var(--radius-sm); }
.btn-lg { padding: 16px 28px; font-size: 17px; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-6); }

/* ---------- NAV ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              backdrop-filter var(--dur-base) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-nav.is-scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border-default);
}
.site-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding: 14px var(--space-6);
}
.site-nav__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-nav__brand img { height: 30px; }
.site-nav__brand span {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: var(--ls-widest);
  color: var(--brand-navy);
}
.site-nav__links { display: flex; gap: var(--space-5); margin-left: var(--space-3); }
.site-nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-1);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.site-nav__links a:hover { border-bottom-color: var(--brand-orange); color: var(--brand-navy); }
.site-nav__cta { margin-left: auto; display: flex; gap: var(--space-2); align-items: center; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: var(--space-20) 0 var(--space-16);
  background: var(--neutral-50);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero__watermark {
  position: absolute;
  right: -120px;
  top: 40px;
  height: 520px;
  opacity: 0.07;
  transform: rotate(-12deg);
}
.hero__inner { position: relative; }
.hero__eyebrow { margin-bottom: var(--space-4); }
.hero__title { margin-bottom: var(--space-5); max-width: 14ch; }
.hero__sub {
  font-size: 20px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 56ch;
  margin-bottom: var(--space-8);
}
.hero__ctas { display: flex; gap: var(--space-3); margin-bottom: var(--space-16); flex-wrap: wrap; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  border-top: 1px solid var(--border-default);
  padding-top: var(--space-6);
  max-width: 820px;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  color: var(--brand-navy);
  letter-spacing: var(--ls-tight);
  display: flex;
  align-items: baseline;
}
.hero__stat-suffix { font-size: 28px; color: var(--brand-orange); margin-left: 2px; font-weight: 700; }
.hero__stat-label { font-size: 13px; color: var(--fg-2); margin-top: 6px; }

/* ---------- SECTIONS ---------- */
.section { padding: var(--space-20) 0; }
.section--light { background: var(--bg-surface); }
.section--dark { background: var(--brand-navy-deep); color: var(--fg-on-dark); }
.section--dark .eyebrow { color: var(--brand-teal-soft); }
.section__head { text-align: center; margin-bottom: var(--space-12); }
.section__head .eyebrow { margin-bottom: var(--space-3); }
.section__head h2 { max-width: 22ch; margin: 0 auto; }

/* ---------- HOW IT WORKS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  position: relative;
}
.step {
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.step:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.step__icon {
  width: 48px; height: 48px;
  background: rgba(0,168,168,0.10);
  color: var(--brand-teal-deep);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.step__icon i { width: 24px; height: 24px; }
.step__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--ls-wide);
  color: var(--fg-3);
  text-transform: uppercase;
}
.step__title { font-size: 22px; font-weight: 700; color: var(--brand-navy); line-height: 1.2; }
.step__body { color: var(--fg-2); line-height: 1.55; }

/* ---------- STATS (dark) ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: left;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  color: #fff;
  letter-spacing: var(--ls-tighter);
}
.stat:nth-child(2) .stat__num { color: var(--brand-orange-warm); }
.stat:nth-child(4) .stat__num { color: var(--brand-teal-soft); }
.stat__label {
  font-size: 14px;
  color: rgba(242,245,249,0.7);
  margin-top: var(--space-3);
  max-width: 22ch;
  line-height: 1.4;
}

/* ---------- PRICING ---------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items: stretch;
}
.tier {
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
}
.tier--featured {
  border-color: var(--brand-orange);
  box-shadow: var(--shadow-flame);
  transform: translateY(-8px);
}
.tier__flag {
  position: absolute;
  top: -12px; left: var(--space-6);
  background: var(--brand-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}
.tier__name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--brand-teal-deep);
}
.tier__price { display: flex; align-items: baseline; gap: 8px; }
.tier__price-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  color: var(--brand-navy);
  letter-spacing: var(--ls-tight);
  line-height: 1;
}
.tier__price-unit { font-size: 13px; color: var(--fg-2); }
.tier__blurb { color: var(--fg-2); font-size: 14px; line-height: 1.5; }
.tier__features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tier__features li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--fg-1); }
.tier__features i { width: 16px; height: 16px; color: var(--status-success); flex-shrink: 0; margin-top: 2px; }
.tier .btn { justify-content: center; margin-top: var(--space-2); }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--brand-navy-deep); color: var(--fg-on-dark); padding: var(--space-16) 0 var(--space-6); }
.site-footer__inner { display: grid; grid-template-columns: 1.2fr 2.8fr; gap: var(--space-12); }
.site-footer__brand img { height: 48px; }
.site-footer__name {
  font-weight: 800; font-size: 15px;
  letter-spacing: var(--ls-widest);
  margin-top: var(--space-3);
  color: #fff;
}
.site-footer__tag { color: rgba(242,245,249,0.6); font-size: 14px; margin-top: var(--space-3); max-width: 28ch; line-height: 1.5; }
.site-footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
.site-footer__col-title {
  font-size: 12px; font-weight: 700;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--brand-teal-soft);
  margin-bottom: var(--space-4);
}
.site-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a { color: rgba(242,245,249,0.85); font-size: 14px; text-decoration: none; }
.site-footer__col a:hover { color: var(--brand-orange-warm); }
.site-footer__legal {
  display: flex; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: var(--space-12);
  padding-top: var(--space-5);
  font-size: 12px;
  color: rgba(242,245,249,0.5);
}
