/* The landing: one statement, one door in. Black band, enormous quiet type,
   a single green accent. No glows, no gradients-for-their-own-sake. */

.landing-body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #000;
  color: #f5f5f7;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.landing-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 36px;
}
.brand.light { color: #f5f5f7; display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-name { font-weight: 700; font-size: 16px; letter-spacing: 0.02em; }
.brand-dot.big {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #30d158;
  animation: beacon 2.6s ease-in-out infinite;
}
@keyframes beacon { 50% { box-shadow: 0 0 22px rgba(48, 209, 88, 0.8); } }
.skip { color: #86868b; font-size: 15px; text-decoration: none; }
.skip:hover { color: #f5f5f7; }

.landing {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.eyebrow {
  font-size: 17px;
  font-weight: 550;
  letter-spacing: 0;
  text-transform: none;
  color: #30d158;
  margin: 0 0 20px;
}
.landing h1 {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 750;
  line-height: 1.04;
  letter-spacing: -0.028em;
  margin: 0 0 26px;
  color: #f5f5f7;
  max-width: 16ch;
}
.grad-text { color: #30d158; background: none; }
.land-sub {
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.55;
  color: #a1a1a6;
  max-width: 56ch;
  margin: 0 0 40px;
}
.land-sub b { color: #f5f5f7; font-weight: 600; }

.land-ctas { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; align-items: center; margin-bottom: 56px; }
.btn { border-radius: 980px; font-size: 18px; padding: 13px 30px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background 0.15s ease; }
.btn-glow { background: #30d158; color: #04150c; font-weight: 600; border: 0; }
.btn-glow:hover { background: #4ade80; }
.btn-ghost { background: none; color: #30d158; border: 0; font-weight: 500; }
.btn-ghost:hover { text-decoration: underline; }

.land-stats { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.land-stats > div { display: flex; flex-direction: column; gap: 2px; }
.land-stats b { font-size: 28px; font-weight: 700; color: #f5f5f7; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.land-stats span { font-size: 13.5px; color: #86868b; }
.land-stats .divider { width: 1px; height: 36px; background: rgba(255, 255, 255, 0.16); }

.land-desks { display: flex; gap: 10px 26px; flex-wrap: wrap; justify-content: center; }
.desk-pill { font-size: 15px; font-weight: 500; color: #a1a1a6; border: 0; background: none; padding: 0; display: inline-flex; align-items: center; gap: 8px; }
.desk-pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; }
.dp-clearance::before { background: #818cf8; }
.dp-ratings::before { background: #c084fc; }
.dp-safety::before { background: #fbbf24; }
.dp-territory::before { background: #38bdf8; }

.landing-foot { display: flex; justify-content: space-between; padding: 20px 36px; font-size: 13.5px; color: #6e6e73; }
.landing-foot a { color: #86868b; text-decoration: none; }
.landing-foot a:hover { color: #f5f5f7; }

.glow { display: none; }

@media (prefers-reduced-motion: reduce) {
  .brand-dot.big { animation: none !important; }
}
