/* Section-level styling for Ignite ERP landing */

/* =============== NAV =============== */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: padding 0.2s ease, background 0.2s ease, border-color 0.2s ease, backdrop-filter 0.2s ease;
}
.nav-wrap.scrolled {
  background: color-mix(in oklch, var(--bg) 80%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  transition: padding 0.2s ease;
  gap: 24px;
}
.nav-wrap.scrolled .nav { padding: 12px 0; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: var(--r-sm);
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-link:hover { color: var(--ink); background: var(--bg-soft); }
.nav-cta { display: flex; align-items: center; gap: 6px; }
.hamburger { display: none; }
@media (max-width: 880px) {
  .nav-links, .nav-cta .btn:not(.nav-cta-mobile-keep) { display: none; }
  .hamburger { display: inline-flex; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 18px var(--gutter);
  gap: 8px;
  animation: fadeUp 0.2s ease both;
}
.mobile-menu .mm-row { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu .mm-link {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .mm-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }

/* =============== HERO =============== */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0 60px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: end;
}
.hero-copy { max-width: 760px; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 5px 5px 14px;
  height: 32px;
  border-radius: var(--r-pill);
  background: var(--bg-card);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 28px;
  box-shadow: var(--shadow-xs);
}
.hero-pill .tag {
  background: var(--primary-soft);
  color: var(--primary-ink);
  padding: 3px 9px;
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-title {
  margin: 0 0 22px;
}
.hero-title .ink-accent { color: var(--primary-ink); }
.hero-sub {
  max-width: 60ch;
  margin-bottom: 36px;
  color: var(--ink-2);
}

/* Headline cycling — all variants occupy the same grid cell,
   so the largest one defines the height and we crossfade between them. */
.hero-headline-stack {
  display: grid;
  margin-bottom: 36px;
}
.hero-headline-slot {
  grid-row: 1;
  grid-column: 1;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
}
.hero-headline-slot.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-headline-slot .hero-title { margin: 0 0 22px; }
.hero-headline-slot .hero-sub { margin-bottom: 0; }

.hero-headline-dots {
  display: flex;
  gap: 8px;
  margin-top: 26px;
  align-items: center;
}
.hl-dot {
  display: inline-flex;
  align-items: center;
  padding: 6px 0;
  width: 56px;
}
.hl-dot-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--line-2);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.hl-dot-fill {
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
}
.hl-dot.active .hl-dot-fill {
  animation: hlFill 5.2s linear forwards;
}
@keyframes hlFill {
  to { transform: scaleX(1); }
}
.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  gap: 22px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--ink-3);
  flex-wrap: wrap;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }

.hero-stage {
  position: relative;
  margin-top: 40px;
}
.hero-stage-frame {
  position: relative;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, var(--bg-card), var(--bg-soft));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.hero-stage-tabs {
  display: flex;
  gap: 2px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  align-items: center;
}
.hero-stage-tabs .lights { display: flex; gap: 6px; margin-right: 14px; }
.hero-stage-tabs .lights span { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.hero-stage-tab {
  padding: 6px 12px;
  font-size: 12.5px;
  color: var(--ink-3);
  border-radius: var(--r-sm);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-stage-tab.active { background: var(--bg-card); color: var(--ink); box-shadow: var(--shadow-xs); }
.hero-stage-tab:hover:not(.active) { color: var(--ink-2); }
.hero-stage-canvas {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-card);
}
.hero-stage-canvas .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hero-stage-canvas .slide.active { opacity: 1; }

.hero-logos {
  margin-top: 64px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--ink-3);
}
.hero-logos .label {
  font-size: 13px;
  font-family: "Geist Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.logo-strip {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  opacity: 0.7;
}
.logo-strip .lg {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink-2);
}
.logo-strip .lg .mark {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ink-3);
  margin-right: 6px;
  vertical-align: 1px;
}

/* =============== PAIN =============== */
.pain {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.pain-card .glyph {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--ink-2);
}
.pain-card h3 { margin-bottom: 8px; }
.pain-card p { color: var(--ink-3); font-size: 15px; line-height: 1.55; }

/* =============== SOLUTION =============== */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 880px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  padding: 24px 22px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  border-radius: var(--r-lg);
}
.pillar .num {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  color: var(--ink-4);
  letter-spacing: 0.05em;
}
.pillar h3 { margin: 10px 0 8px; font-size: 17px; }
.pillar p { font-size: 14.5px; color: var(--ink-3); line-height: 1.5; }

/* =============== INDUSTRY MODULES (tabbed) =============== */
.industry {
  background: var(--bg-dark);
  color: var(--ink-on-dark);
  position: relative;
}
.industry h2, .industry h3 { color: var(--ink-on-dark); }
.industry .lede { color: var(--ink-on-dark-2); }
.industry .eyebrow { color: var(--primary-ink); }

.industry-tabs {
  display: flex;
  gap: 4px;
  padding: 6px;
  background: var(--bg-dark-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-pill);
  width: fit-content;
  margin: 36px 0 36px;
}
.industry-tab {
  padding: 10px 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-on-dark-2);
  border-radius: var(--r-pill);
  transition: background 0.2s ease, color 0.2s ease;
}
.industry-tab.active { background: var(--bg-card); color: var(--ink); }
.industry-tab:hover:not(.active) { color: var(--ink-on-dark); }

.industry-panel {
  display: grid;
  grid-template-columns: 1.05fr 1.4fr;
  gap: 56px;
  align-items: stretch;
}
@media (max-width: 880px) { .industry-panel { grid-template-columns: 1fr; gap: 32px; } }
.industry-features { display: flex; flex-direction: column; gap: 14px; }
.industry-features h3 { font-size: 32px; letter-spacing: -0.025em; margin-bottom: 8px; }
.industry-features .sub { color: var(--ink-on-dark-2); margin-bottom: 18px; font-size: 16px; max-width: 44ch; }
.industry-features ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.industry-features li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 14px;
  background: color-mix(in oklch, var(--bg-card) 4%, transparent);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  font-size: 14.5px;
}
.industry-features li svg { flex-shrink: 0; margin-top: 2px; }
.industry-shot {
  position: relative;
  border-radius: var(--r-xl);
  background: var(--bg-card);
  color: var(--ink);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  min-height: 480px;
}

/* =============== WHITE-LABEL =============== */
.whitelabel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .whitelabel { grid-template-columns: 1fr; gap: 36px; } }
.wl-list { list-style: none; padding: 0; margin: 22px 0 32px; display: grid; gap: 14px; }
.wl-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink-2); }
.wl-list li .check {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-ink);
  display: grid; place-items: center;
  margin-top: 1px;
}

.wl-mockup {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  perspective: 1200px;
}
.wl-side {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.wl-side .browser-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.wl-side .browser-bar .lts { display: flex; gap: 5px; }
.wl-side .browser-bar .lts span { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); }
.wl-side .browser-bar .url {
  flex: 1; height: 22px; border-radius: var(--r-sm);
  background: var(--bg-card); border: 1px solid var(--line);
  font-family: "Geist Mono", monospace; font-size: 10.5px; color: var(--ink-3);
  display: flex; align-items: center; padding: 0 8px; gap: 6px;
}
.wl-side .body { padding: 24px 18px; display: flex; flex-direction: column; gap: 14px; }
.wl-vs {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-card);
  border: 1px solid var(--line);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  color: var(--ink-2);
  font-weight: 500;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

/* =============== CORE MODULES GRID =============== */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 56px;
}
@media (max-width: 880px) { .modules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .modules-grid { grid-template-columns: 1fr; } }
.module-cell {
  background: var(--bg-card);
  padding: 28px 26px;
  display: flex; flex-direction: column;
  gap: 12px;
  transition: background 0.15s ease;
}
.module-cell:hover { background: var(--bg-soft); }
.module-cell .icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  color: var(--primary-ink);
  margin-bottom: 4px;
}
.module-cell h3 { font-size: 16px; }
.module-cell p { font-size: 14px; color: var(--ink-3); line-height: 1.55; }

/* =============== SCREENSHOT GALLERY =============== */
.gallery {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gallery-tabs {
  display: flex; gap: 2px;
  border-bottom: 1px solid var(--line);
  margin: 40px 0 32px;
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery-tabs::-webkit-scrollbar { display: none; }
.gallery-tab {
  padding: 14px 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-3);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.gallery-tab.active { color: var(--ink); border-bottom-color: var(--primary); }
.gallery-tab:hover:not(.active) { color: var(--ink-2); }
.gallery-stage {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  position: relative;
}
.gallery-stage .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s ease; }
.gallery-stage .slide.active { opacity: 1; }

/* =============== HOW IT WORKS =============== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  position: relative;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.step .num {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  color: var(--primary-ink);
  margin-bottom: 12px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--ink-3); font-size: 14.5px; line-height: 1.55; }
.step .glyph {
  margin-top: 22px;
  height: 110px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px;
  display: flex; flex-direction: column; gap: 8px;
}

/* =============== PRICING =============== */
.pricing-toggle {
  display: inline-flex;
  margin: 28px 0 40px;
  padding: 4px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  gap: 2px;
}
.pricing-toggle button {
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  border-radius: var(--r-pill);
  transition: background 0.15s ease, color 0.15s ease;
  display: inline-flex; align-items: center; gap: 6px;
}
.pricing-toggle button.active { background: var(--bg-card); color: var(--ink); box-shadow: var(--shadow-xs); }
.pricing-toggle .badge {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  padding: 2px 6px;
  border-radius: var(--r-xs);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }

.plan {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  gap: 18px;
  transition: border-color 0.2s ease;
}
.plan.featured {
  border-color: var(--ink);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.plan.featured .feat-tag {
  position: absolute;
  top: -10px; right: 20px;
  background: var(--ink);
  color: var(--bg);
  font-size: 11px;
  font-family: "Geist Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: var(--r-xs);
}
.plan h3 { font-size: 18px; }
.plan .sub { color: var(--ink-3); font-size: 14px; margin-top: -8px; }
.plan .price { display: flex; align-items: baseline; gap: 6px; margin: 8px 0 4px; }
.plan .price .amt { font-size: 44px; letter-spacing: -0.03em; font-weight: 600; }
.plan .price .per { color: var(--ink-3); font-size: 14px; }
.plan ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); }
.plan li svg { flex-shrink: 0; margin-top: 4px; color: var(--primary-ink); }

/* =============== TESTIMONIALS =============== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 880px) { .testimonials-grid { grid-template-columns: 1fr; } }
.t-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 18px;
  position: relative;
}
.t-card .quote { font-size: 16.5px; line-height: 1.55; color: var(--ink); letter-spacing: -0.01em; }
.t-card .who { display: flex; gap: 12px; align-items: center; }
.t-card .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
}
.t-card .name { font-size: 14px; font-weight: 500; }
.t-card .role { font-size: 13px; color: var(--ink-3); }
.t-card .placeholder-stamp {
  position: absolute;
  top: 14px; right: 14px;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  color: var(--ink-4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =============== FAQ =============== */
.faq-list { margin-top: 40px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  gap: 16px;
}
.faq-q .plus {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--ink-3);
  transition: transform 0.2s ease;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); color: var(--ink); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 320px; padding-bottom: 22px; }
.faq-a .inner { max-width: 64ch; }

/* =============== FINAL CTA =============== */
.final-cta {
  background: var(--bg-dark);
  color: var(--ink-on-dark);
  border-radius: var(--r-2xl);
  padding: 80px 56px;
  position: relative;
  overflow: hidden;
}
.final-cta h2 { color: var(--ink-on-dark); }
.final-cta p { color: var(--ink-on-dark-2); max-width: 56ch; margin: 16px 0 32px; font-size: 18px; }
.final-cta .ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.final-cta .btn-ghost { color: var(--ink-on-dark); border-color: var(--line-dark); background: transparent; }
.final-cta .btn-ghost:hover { background: var(--bg-dark-2); border-color: var(--ink-on-dark-2); }
.final-cta::after {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 280px; height: 280px;
  background: radial-gradient(circle at center, color-mix(in oklch, var(--primary) 35%, transparent), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* =============== FOOTER =============== */
.footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 36px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 60px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  font-size: 12px;
  font-family: "Geist Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col li a { font-size: 14.5px; color: var(--ink-2); }
.footer-col li a:hover { color: var(--ink); }
.footer-brand .tag {
  color: var(--ink-3);
  font-size: 14.5px;
  margin-top: 14px;
  max-width: 36ch;
  line-height: 1.5;
}
.footer-socials { display: flex; gap: 8px; margin-top: 22px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  color: var(--ink-3);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.footer-socials a:hover { color: var(--ink); border-color: var(--ink-4); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-3);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom .mono { font-family: "Geist Mono", monospace; font-size: 12px; }

/* =============== SHARED MOCKUP STYLING =============== */
.mock { font-size: 12px; color: var(--ink); }
.mock .topbar {
  display: flex; align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  gap: 10px;
  height: 44px;
}
.mock .topbar .crumb { font-size: 11.5px; color: var(--ink-3); font-family: "Geist Mono", monospace; }
.mock .layout { display: grid; grid-template-columns: 184px 1fr; height: calc(100% - 44px); }
.mock .side {
  border-right: 1px solid var(--line);
  background: var(--bg);
  padding: 14px 12px;
  display: flex; flex-direction: column; gap: 4px;
  overflow: hidden;
}
.mock .side .group {
  font-size: 10px;
  font-family: "Geist Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-4);
  margin: 12px 4px 4px;
}
.mock .side .item {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px;
  font-size: 12px;
  color: var(--ink-2);
  border-radius: var(--r-xs);
  font-weight: 500;
}
.mock .side .item.active { background: var(--primary-soft); color: var(--primary-ink); }
.mock .side .item .ico {
  width: 14px; height: 14px;
  border-radius: 3px;
  background: var(--line);
  display: grid; place-items: center;
  color: var(--ink-3);
}
.mock .side .item.active .ico { background: color-mix(in oklch, var(--primary) 25%, transparent); color: var(--primary-ink); }

.mock .main { padding: 16px 18px; overflow: hidden; }
.mock .pagehead { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 14px; }
.mock .pagehead .title { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.mock .pagehead .ctas { display: flex; gap: 6px; }
.mock .chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 8px; border-radius: var(--r-xs);
  border: 1px solid var(--line);
  background: var(--bg-card);
  font-size: 11px;
  color: var(--ink-2);
  height: 22px;
}
.mock .chip.solid { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.mock .chip.accent { background: var(--primary-soft); color: var(--primary-ink); border-color: transparent; }
.mock .chip.good { background: color-mix(in oklch, var(--good) 15%, white); color: var(--good); border-color: transparent; }
.mock .chip.warn { background: color-mix(in oklch, var(--warn) 18%, white); color: oklch(0.50 0.14 75); border-color: transparent; }

.mock .stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 12px; }
.mock .stat {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg-card);
}
.mock .stat .lbl { font-size: 10px; color: var(--ink-3); font-family: "Geist Mono", monospace; text-transform: uppercase; letter-spacing: 0.05em; }
.mock .stat .val { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; margin-top: 4px; }
.mock .stat .delta { font-size: 10.5px; color: var(--good); font-family: "Geist Mono", monospace; margin-top: 2px; }
.mock .stat .delta.down { color: oklch(0.55 0.16 25); }

.mock .grid2 { display: grid; grid-template-columns: 1.4fr 1fr; gap: 8px; }
.mock .panel {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg-card);
  padding: 12px;
  min-height: 0;
}
.mock .panel .ph {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; font-weight: 500;
  margin-bottom: 10px;
}
.mock .panel .ph .meta { color: var(--ink-3); font-size: 10.5px; font-family: "Geist Mono", monospace; }

.mock table { width: 100%; border-collapse: collapse; font-size: 11.5px; }
.mock table th {
  text-align: left;
  font-weight: 500;
  font-size: 10px;
  font-family: "Geist Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-3);
  padding: 4px 6px 6px;
  border-bottom: 1px solid var(--line);
}
.mock table td { padding: 7px 6px; border-bottom: 1px solid var(--line); color: var(--ink-2); }
.mock table tr:last-child td { border-bottom: 0; }
.mock table .who { display: flex; align-items: center; gap: 6px; }
.mock table .ava {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-ink);
  font-size: 9px;
  font-weight: 600;
  display: grid; place-items: center;
}
.mock .bars { display: flex; align-items: flex-end; gap: 6px; height: 90px; padding-top: 8px; }
.mock .bars .b {
  flex: 1;
  background: var(--primary-soft);
  border-radius: var(--r-xs) var(--r-xs) 0 0;
  position: relative;
}
.mock .bars .b::after {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 38%;
  background: var(--primary);
  border-radius: var(--r-xs) var(--r-xs) 0 0;
}
.mock .line-chart {
  height: 110px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

/* =============== CONTACT PAGE =============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-size: 13px; font-weight: 500; color: var(--ink-2); letter-spacing: -0.005em; }
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 11px 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-field textarea { resize: vertical; line-height: 1.55; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--ink-4); }

.contact-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
}
.contact-success .success-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-ink);
  font-size: 22px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.contact-success h2 { margin-bottom: 10px; }
.contact-success p { color: var(--ink-2); font-size: 16px; }

.contact-info { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 96px; }
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 24px;
}
.contact-card-label {
  font-size: 11.5px;
  font-family: "Geist Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.contact-card-value {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  display: block;
}
a.contact-card-value:hover { color: var(--primary-ink); }
.contact-card-sub { font-size: 13px; color: var(--ink-3); margin-top: 4px; }
.contact-card-agency { background: var(--primary-soft); border-color: var(--primary-tint); }

/* =============== LEGAL PAGES =============== */
.legal-doc {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) 0 120px;
}
.legal-meta { margin-bottom: 56px; }
.legal-meta .eyebrow { margin-bottom: 14px; }
.legal-meta h1 { margin-bottom: 16px; }
.legal-last-updated {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  font-family: "Geist Mono", monospace;
  color: var(--ink-3);
}
.legal-body { display: flex; flex-direction: column; gap: 40px; }
.legal-section h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.legal-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0 10px;
  color: var(--ink);
}
.legal-section p {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-section ul,
.legal-section ol { padding-left: 22px; margin: 8px 0 14px; display: grid; gap: 8px; }
.legal-section li { font-size: 15.5px; color: var(--ink-2); line-height: 1.65; }
.legal-section strong { color: var(--ink); font-weight: 600; }
.legal-section a { color: var(--primary-ink); text-decoration: underline; text-underline-offset: 2px; }
