/* TEGRITY V2 — LANDING
   Single-page holding site: static hero band, construction status, contact closer.
   tokens.css + base.css are copied untouched from 1.2; this file only styles this page.
   No JS on this page, so the nav keeps one theme instead of swapping on scroll. */
@import "base.css";

/* nav sits on the black hero and scrolls away with it */
.nav--landing {
  position: static;
  background: #050505;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* ---------- HERO (static band) ---------- */
.hero-landing {
  background: #050505;
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 82vh;
  min-height: 82svh;
  padding: var(--space-24) var(--gutter);
}
.hero-landing__eyebrow { color: #6a6a6a; max-width: none; }
.hero-landing__brandline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.25rem, 7vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #FAFAF7;
  margin-top: var(--space-4);
}
.hero-landing__desc {
  font-family: var(--font-mono);
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  line-height: 1.45;
  color: #FAFAF7;
  opacity: 0.8;
  max-width: 42ch;
  margin: var(--space-6) auto 0;
}
.hero-landing .btn { margin-top: var(--space-8); }

/* ghost button for the dark bands: paper outline, inverts on hover */
.btn--ghost-dark { background: transparent; border-color: #FAFAF7; color: #FAFAF7; }
.btn--ghost-dark:hover, .btn--ghost-dark:focus-visible { background: #FAFAF7; color: #050505; }

/* ---------- STATUS ---------- */
.status { padding-block: var(--space-24); }
.status__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 3rem);
  letter-spacing: -0.025em;
  color: var(--color-ink);
  line-height: 1.05;
  margin-top: var(--space-6);
}
.status__copy { margin-top: var(--space-4); color: var(--color-functional); }

/* ---------- CLOSER (same visual grammar as the home closer) ---------- */
.closer {
  background: #050505;
  color: #FAFAF7;
  padding-block: var(--space-32);
  text-align: center;
}
.closer__word {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 18vw, 16rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  display: inline-block;
}
.closer__sub { margin: var(--space-8) auto 0; max-width: 44ch; color: #b9b6ad; }
.closer .btn { margin-top: var(--space-8); }

/* the footer follows a black band; drop the default gap above it */
.footer { margin-top: 0; }
