/* css/site.css — shared styles for marketing pages.
   Loaded after the Tailwind build to override / extend utilities. */

body {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: #1d1d1f;
}

html {
  scroll-behavior: smooth;
}

/* Sticky-nav offset for in-page anchors. Nav is h-20 (80px). */
#one-view,
#speed,
#ai {
  scroll-margin-top: 80px;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
}

.hero-gradient {
  color: #0071e3;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Excel-grid (used on the landing page) */
.excel-grid {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  border-collapse: collapse;
  width: auto;
  min-width: 100%;
}

.excel-grid th {
  background-color: #f2f2f7;
  color: #86868b;
  font-weight: 500;
  padding: 6px 12px;
  border: 1px solid #d2d2d7;
  text-align: left;
  position: sticky;
  top: 0;
  z-index: 10;
  white-space: nowrap;
}

.excel-grid td {
  padding: 3px 12px;
  border: 1px solid #e5e5ea;
  white-space: nowrap;
}

.excel-grid tr:hover { background-color: #f5f5f7; }

/* Honeypot field — hidden from humans, visible to dumb bots. */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Toast (request-demo page) */
#status-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1d1d1f;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
  white-space: nowrap;
}

#status-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

