html { scroll-behavior: smooth; }
body {
  background-color: #ffffff;
  color: #111111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior-y: none;
}

/* Text color overrides for Tailwind classes used in the HTML */
.text-white { color: #0a0a0a !important; }
.text-fog { color: #6b7280 !important; }
.text-dove { color: #1f2937 !important; }
.text-pewter { color: #4b5563 !important; }

/* Page header glow — light mode subtle blue */
.page-glow {
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(80,120,200,0.07), transparent),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(50,80,150,0.04), transparent);
}

/* Wordmark */
.wordmark {
  font-size: clamp(64px, 11vw, 150px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #0a0a0a;
  line-height: 0.95;
}

/* Page title */
.page-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #0a0a0a;
  line-height: 1.1;
}

/* Gradient heading */
.gradient-heading {
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #0a0a0a;
}

/* Borders — now light */
.border-dark { border: 1px solid #e5e7eb; }
.border-top-dark { border-top: 1px solid #e5e7eb; }
.border-bottom-dark { border-bottom: 1px solid #e5e7eb; }

/* Nav */
.nav-link {
  font-size: 13px; letter-spacing: 0.01em; font-weight: 500;
  padding: 6px 16px; border-radius: 999px; transition: all 0.2s;
  color: #4b5563;
  text-decoration: none;
}
.nav-link:hover { background: rgba(0,0,0,0.04); color: #0a0a0a; }
.nav-link.active { background: rgba(0,0,0,0.06); color: #0a0a0a; }

/* Mobile nav — hamburger toggle */
.nav-hamburger {
  display: none;
  width: 36px; height: 36px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s, background 0.2s;
}
.nav-hamburger:hover { border-color: #9ca3af; }
.nav-hamburger .bar {
  display: block;
  width: 16px; height: 1.5px;
  background: #0a0a0a;
  position: relative;
}
.nav-hamburger .bar::before,
.nav-hamburger .bar::after {
  content: ''; position: absolute; left: 0;
  width: 16px; height: 1.5px; background: #0a0a0a;
  transition: transform 0.25s ease, top 0.25s ease;
}
.nav-hamburger .bar::before { top: -5px; }
.nav-hamburger .bar::after  { top: 5px; }
.nav-hamburger[aria-expanded="true"] .bar { background: transparent; }
.nav-hamburger[aria-expanded="true"] .bar::before { top: 0; transform: rotate(45deg); }
.nav-hamburger[aria-expanded="true"] .bar::after  { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
  padding: 8px 24px 20px;
  z-index: 49;
  display: none;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 4px;
  color: #4b5563;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
  letter-spacing: -0.01em;
}
.mobile-menu a.active { color: #0a0a0a; }
.mobile-menu .mobile-cta {
  display: block;
  margin-top: 16px;
  border: none;
  background: #0a0a0a;
  color: #ffffff;
  text-align: center;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 767px) {
  .nav-hamburger { display: inline-flex; }
}

/* Tags */
.label-tag {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #6b7280; border: 1px solid #e5e7eb;
  padding: 4px 12px; border-radius: 4px; display: inline-block;
}

/* Buttons */
.btn-outline {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid #d1d5db; padding: 8px 16px; border-radius: 6px;
  color: #111111; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 6px; text-decoration: none;
  background: white;
}
.btn-outline:hover { border-color: #6b7280; color: #000; background: #f9fafb; }

.btn-primary {
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  background: #0a0a0a; color: white; padding: 12px 28px; border-radius: 8px;
  font-weight: 600; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}
.btn-primary:hover { background: #1f2937; }

/* Cards — light with subtle shadow */
.promo-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.pricing-card {
  background: #ffffff; border: 1px solid #e5e7eb;
  border-radius: 16px; padding: 32px; display: flex; flex-direction: column;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.pricing-card.featured {
  border-color: #0a0a0a;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Step numbers */
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid #e5e7eb;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500; color: #6b7280; flex-shrink: 0;
  background: white;
}

/* Corner + icons */
.corner-icon {
  position: absolute;
  width: 24px; height: 24px;
  fill: none;
  stroke: #9ca3af;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  z-index: 20;
  pointer-events: none;
  transition: stroke 0.35s ease;
}
.spotlight-card:hover .corner-icon {
  stroke: #4b5563;
}
.corner-icon.top-left { top: -12px; left: -12px; }
.corner-icon.top-right { top: -12px; right: -12px; }
.corner-icon.bottom-left { bottom: -12px; left: -12px; }
.corner-icon.bottom-right { bottom: -12px; right: -12px; }

/* System Cards */
.system-card {
  background: transparent;
  border-left: 1px solid #e5e7eb;
  transition: background 0.5s ease;
}
.system-card:first-child { border-left: none; }
.system-card:hover {
  background: rgba(0,0,0,0.015);
}

/* Spotlight Cards */
.spotlight-card {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid #e5e7eb;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.spotlight-card:hover {
  transform: scale(1.015);
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.spotlight-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  background: radial-gradient(250px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0,0,0,0.04), transparent 70%);
}
.spotlight-card:hover .spotlight-glow,
.system-card:hover .spotlight-glow {
  opacity: 1;
}
.spotlight-border {
  position: absolute;
  inset: -1px;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0,0,0,0.03), transparent 70%);
}
.spotlight-card:hover .spotlight-border {
  opacity: 1;
}

/* Misc */
.ticker-text { font-size: 13px; color: #6b7280; }
.footer-link { font-size: 13px; color: #6b7280; text-decoration: none; line-height: 2; }
.footer-link:hover { color: #0a0a0a; }
.footer-heading {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #374151; margin-bottom: 16px; font-weight: 600;
}
