/* Hallmark · design-system: design.md · genre: editorial · theme: custom (ZIG locked)
 * Zachariah Investment Group — Dark Luxury Wholesale
 * Nav: N5 Floating Pill · Footer: Statement · Enrichment: hero SVG bg
 * Anti-AI-slop: OKLCH tokens, overflow-x:clip, no italic headers, no Ft3, no N1a
 */

@import url('tokens.css');

/* ═══════════════════════════════════════════════════════════════════════════════
   BASE & RESET
   ═══════════════════════════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  /* Grain texture */
  background-image: radial-gradient(oklch(100% 0 0 / 0.012) 1px, transparent 1px);
  background-size: 3px 3px;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ═══════════════════════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════════════════ */

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: normal;
  font-size: var(--text-display);
  line-height: 1.02;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
}

h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  font-size: var(--text-display-s);
  line-height: 1.08;
  letter-spacing: -0.005em;
}

h3, .h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  font-size: var(--text-display-xs);
  line-height: 1.2;
}

p { margin: 0 0 var(--space-sm); }
.text-lead { font-size: var(--text-md); color: var(--color-ink-2); line-height: 1.7; }
.text-muted { color: var(--color-ink-2); }

/* Gold gradient text */
.text-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Shimmer animation on hero headline */
.shimmer {
  background: linear-gradient(
    100deg,
    var(--color-accent-deep) 0%,
    var(--color-accent) 25%,
    var(--color-accent-bright) 50%,
    var(--color-accent) 75%,
    var(--color-accent-deep) 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 150% 0; }
  100% { background-position: -150% 0; }
}

/* Label (all-caps tracking) */
.label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-accent);
  display: inline-block;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════════════════════ */

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: clamp(70px, 10vw, 140px) 0;
  position: relative;
}

.section--alt {
  background: var(--color-paper-2);
}

.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-2xl);
}

.section__head .label {
  margin-bottom: var(--space-sm);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 17px 34px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: all var(--dur-medium) var(--ease-out);
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.btn:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}

.btn--gold {
  background: var(--color-accent);
  color: var(--color-accent-ink);
  box-shadow: var(--glow-sm);
}

.btn--gold:hover {
  background: var(--color-accent-2);
  transform: translateY(-2px);
  box-shadow: var(--glow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--color-ink);
  border: 2px solid var(--color-ink);
}

.btn--outline:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-accent-ink);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-rule-strong);
}

.btn--ghost:hover {
  background: var(--color-glass-hover);
  border-color: var(--color-accent);
}

.btn--lg {
  padding: 20px 44px;
  font-size: var(--text-md);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   GLASS CARDS
   ═══════════════════════════════════════════════════════════════════════════════ */

.glass {
  background: var(--color-glass);
  border: 1px solid var(--color-rule-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  transition: background var(--dur-medium) var(--ease-out),
              border-color var(--dur-medium) var(--ease-out),
              transform var(--dur-medium) var(--ease-out),
              box-shadow var(--dur-medium) var(--ease-out);
}

.glass:hover {
  background: var(--color-glass-hover);
  border-color: var(--color-accent);
}

/* Animated bottom border on card hover */
.card-anim {
  position: relative;
  overflow: hidden;
}

.card-anim::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--grad-gold);
  transition: width var(--dur-long) var(--ease-out);
}

.glass.card-anim:hover::after {
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   NAV — N5 Floating Pill
   ═══════════════════════════════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-lg);
  background: oklch(100% 0 0 / 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-rule);
  border-radius: var(--radius-pill);
  transition: all var(--dur-medium) var(--ease-out);
  max-width: 1100px;
  width: calc(100% - var(--space-2xl));
}

.nav.docked {
  top: 0;
  left: 0;
  right: 0;
  transform: none;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--color-rule-strong);
  background: oklch(3.9% 0.004 0 / 0.92);
  backdrop-filter: blur(14px);
  padding: var(--space-sm) var(--space-lg);
  max-width: none;
  width: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 42px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.nav__links a {
  font-size: var(--text-sm);
  color: var(--color-ink);
  position: relative;
  padding: var(--space-3xs) 0;
  transition: color var(--dur-short);
  white-space: nowrap;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 0;
  background: var(--color-accent);
  transition: width var(--dur-medium) var(--ease-out);
}

.nav__links a:hover {
  color: var(--color-accent-2);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  display: flex;
  gap: var(--space-xs);
  align-items: center;
}

.nav__cta .btn {
  padding: 12px 24px;
  font-size: var(--text-sm);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav__burger span {
  width: 26px;
  height: 2px;
  background: var(--color-accent);
  transition: transform var(--dur-short), opacity var(--dur-short);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: oklch(3.9% 0.004 0 / 0.97);
  backdrop-filter: blur(16px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-ink);
}

.mobile-menu a:hover {
  color: var(--color-accent);
}

.mobile-menu .btn {
  margin-top: var(--space-sm);
}

.mobile-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-size: var(--text-xl);
  color: var(--color-accent);
  cursor: pointer;
  background: none;
  border: none;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   STICKY MOBILE BAR
   ═══════════════════════════════════════════════════════════════════════════════ */

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  display: none;
  gap: 10px;
  padding: 10px 14px;
  background: oklch(3.9% 0.004 0 / 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-rule-strong);
}

.sticky-bar .btn {
  flex: 1;
  padding: 15px 10px;
  font-size: var(--text-sm);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HERO — Stat-Led
   ═══════════════════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: oklch(3.9% 0.004 0 / 0.70);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 160px;
  padding-bottom: var(--space-3xl);
}

.hero .label {
  margin-bottom: var(--space-md);
}

.hero h1 {
  max-width: 16ch;
}

.hero__sub {
  max-width: 64ch;
  margin: var(--space-md) 0 var(--space-lg);
}

/* Stats row */
.proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: var(--space-xl) 0 var(--space-lg);
  border-top: 1px solid var(--color-rule);
  border-bottom: 1px solid var(--color-rule);
  padding: var(--space-md) 0;
}

.proof > div {
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.proof > div + div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--color-rule);
}

.proof b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--color-accent);
  line-height: 1;
}

.proof span {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink-2);
  margin-top: 8px;
}

.scroll-ind {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--color-accent);
}

.scroll-ind svg {
  width: 26px;
  animation: bounce 1.8s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SPLIT SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.split__media img {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-rule-strong);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════════════════════════ */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.stat {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--color-accent);
  line-height: 1;
}

.stat span {
  color: var(--color-ink-2);
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HOW IT WORKS (3-step grid)
   ═══════════════════════════════════════════════════════════════════════════════ */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.step-card {
  padding: var(--space-xl) var(--space-lg);
  text-align: left;
}

.step-card .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: oklch(71% 0.12 85 / 0.35);
  line-height: 1;
}

.step-card .icon {
  width: 56px;
  height: 56px;
  color: var(--color-accent);
  margin: var(--space-md) 0;
}

.step-card h3 {
  margin-bottom: var(--space-sm);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   DUAL AUDIENCE
   ═══════════════════════════════════════════════════════════════════════════════ */

.dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.audience {
  position: relative;
  min-height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-rule-strong);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  transition: transform var(--dur-medium) var(--ease-out),
              box-shadow var(--dur-medium) var(--ease-out);
}

.audience:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow-lg);
}

.audience__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.audience__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audience::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, oklch(3.9% 0.004 0 / 0.2) 0%, oklch(3.9% 0.004 0 / 0.92) 100%);
  z-index: 1;
}

.audience__content {
  position: relative;
  z-index: 2;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.pill--gold {
  background: var(--color-accent);
  color: var(--color-accent-ink);
}

.pill--outline {
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent-2);
}

.audience ul {
  margin: var(--space-md) 0 var(--space-lg);
  display: grid;
  gap: var(--space-sm);
}

.audience li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  color: var(--color-ink);
}

.audience li svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex: none;
  margin-top: 3px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   INVENTORY GRID
   ═══════════════════════════════════════════════════════════════════════════════ */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.filter {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-rule);
  background: transparent;
  color: var(--color-ink-2);
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 600;
  transition: all var(--dur-short);
}

.filter:hover {
  color: var(--color-ink);
  border-color: var(--color-accent);
}

.filter.active {
  background: var(--color-accent);
  color: var(--color-accent-ink);
  border-color: var(--color-accent);
}

.lots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.lot {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-rule);
  transition: transform var(--dur-medium) var(--ease-out),
              box-shadow var(--dur-medium) var(--ease-out),
              border-color var(--dur-medium);
}

.lot:hover {
  transform: translateY(-8px);
  box-shadow: var(--glow-sm);
  border-color: var(--color-accent);
}

.lot__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.lot__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-long) var(--ease-out);
}

.lot:hover .lot__img img {
  transform: scale(1.06);
}

.lot__tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.lot__tag.avail {
  background: var(--color-accent);
  color: var(--color-accent-ink);
}

.lot__tag.contract {
  background: oklch(5.7% 0.004 0 / 0.7);
  color: var(--color-ink-2);
  border: 1px solid var(--color-rule);
}

.lot__body {
  padding: var(--space-md);
}

.lot__loc {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
}

.lot__meta {
  color: var(--color-ink-2);
  font-size: var(--text-sm);
  margin: var(--space-3xs) 0 var(--space-sm);
}

.lot__price {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.05rem;
}

.lot__note {
  display: block;
  color: var(--color-ink-2);
  font-size: var(--text-xs);
  margin-top: 8px;
}

.lot__cta {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(0deg, oklch(3.9% 0.004 0 / 0.95), transparent);
  opacity: 0;
  transition: opacity var(--dur-medium);
  display: flex;
  justify-content: center;
  padding-bottom: var(--space-md);
}

.lot:hover .lot__cta {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   MODULAR SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.modular {
  background-image: linear-gradient(oklch(3.9% 0.004 0 / 0.94), oklch(3.9% 0.004 0 / 0.94)),
                    url("../img/grid.svg");
  background-size: cover, 80px 80px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.feature {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.feature .icon {
  width: 50px;
  height: 50px;
  color: var(--color-accent);
  margin: 0 auto var(--space-md);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   LEAD FORM SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.lead-sec {
  position: relative;
  overflow: hidden;
}

.lead-sec::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  max-width: 120vw;
  background: radial-gradient(circle, oklch(71% 0.12 85 / 0.16) 0%, transparent 60%);
  pointer-events: none;
}

.form-card {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-xl);
}

.form-note {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: var(--space-md);
  color: var(--color-ink-2);
  font-size: var(--text-sm);
}

.form-note svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════════════ */

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.testi {
  padding: var(--space-xl) var(--space-lg);
  position: relative;
}

.testi .quote-mark {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  font-family: var(--font-display);
  font-size: 5rem;
  color: oklch(71% 0.12 85 / 0.28);
  line-height: 1;
}

.testi p {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.45;
  margin: 20px 0 var(--space-md);
}

.testi .who {
  color: var(--color-accent);
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-3xl);
  opacity: 0.65;
}

.logo-row span {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-ink-2);
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════════════════ */

.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--color-rule);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-glass);
  transition: border-color var(--dur-short);
}

.faq-item.open {
  border-left: 3px solid var(--color-accent);
  border-color: var(--color-accent);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--color-ink);
  cursor: pointer;
  padding: var(--space-md) var(--space-lg);
  font-size: var(--text-md);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-body);
  transition: color var(--dur-short);
}

.faq-item.open .faq-q {
  color: var(--color-accent-2);
}

.faq-q .plus {
  color: var(--color-accent);
  font-size: var(--text-xl);
  transition: transform var(--dur-short);
  flex: none;
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-medium) var(--ease-out);
}

.faq-a p {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-ink-2);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════════════════════════ */

.closer {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.closer::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  max-width: 130vw;
  background: radial-gradient(circle, oklch(71% 0.12 85 / 0.18) 0%, transparent 55%);
}

.closer > * {
  position: relative;
  z-index: 2;
}

.closer h2 {
  max-width: 18ch;
  margin: 0 auto var(--space-lg);
}

.contact-line {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--color-ink);
  margin: var(--space-lg) 0;
}

.contact-line a:hover {
  color: var(--color-accent);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FOOTER — Statement
   ═══════════════════════════════════════════════════════════════════════════════ */

.footer {
  background: oklch(0% 0 0);
  border-top: 1px solid var(--color-rule);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand .mark {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.footer__brand p {
  color: var(--color-ink-2);
  max-width: 40ch;
}

.footer h4 {
  font-family: var(--font-display);
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  font-size: var(--text-md);
}

.footer a {
  color: var(--color-ink-2);
  display: block;
  padding: 6px 0;
  transition: color var(--dur-short);
}

.footer a:hover {
  color: var(--color-accent-2);
}

.footer__bottom {
  border-top: 1px solid oklch(100% 0 0 / 0.08);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  color: var(--color-ink-2);
  font-size: var(--text-sm);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SITE LOADER
   ═══════════════════════════════════════════════════════════════════════════════ */

#site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--dur-medium) var(--ease-out),
              visibility var(--dur-medium) var(--ease-out);
}

#site-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo img {
  height: 120px;
  width: auto;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-long) var(--ease-out),
              transform var(--dur-long) var(--ease-out);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .split,
  .split__media { grid-template-columns: 1fr; }

  .grid-3,
  .dual,
  .lots,
  .stats,
  .feature-row,
  .testi-grid { grid-template-columns: 1fr; }

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

  .proof { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-md); }
  .proof > div:nth-child(3)::before { display: none; }

  .section__head { text-align: center; }

  .audience { min-height: 380px; }
}

@media (max-width: 620px) {
  body { font-size: 0.9375rem; }

  .hero h1 { font-size: clamp(2.3rem, 11vw, 3rem); }

  .btn { width: 100%; }
  .btn-row { flex-direction: column; }

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

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

  .sticky-bar { display: flex; }

  .form-card { padding: var(--space-lg) var(--space-md); }

  .audience { padding: var(--space-lg) var(--space-md); }

  .nav {
    width: calc(100% - var(--space-lg));
    padding: var(--space-xs) var(--space-md);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .loader-logo img { animation: none; }
  .shimmer { animation: none; }
}
