@import url('https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&display=swap');

:root {
  --canvas: #0a0a0a;
  --surface-1: #161616;
  --surface-2: #1f1f1f;
  --ink: #ffffff;
  --ink-muted: #999999;
  --hairline: rgba(255, 255, 255, 0.1);
  --hairline-soft: rgba(255, 255, 255, 0.06);

  /* Brand accent — lime green */
  --accent: #b7ee69;
  --accent-dim: #8fcc4a;
  --accent-deep: #5c8a2e;
  --accent-bg: rgba(183, 238, 105, 0.12);

  /* Module accent variants (still used for module color-coding) */
  --c-violet: #6b4eff;
  --c-magenta: #ff3d9a;
  --c-orange: #ff8a3d;
  --c-coral: #ff6b6b;
}

@font-face {
  font-family: "UID Space";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("fonts/UID SPACE.woff2") format("woff2");
}

@font-face {
  font-family: "UID Space";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("fonts/UID SPACE MID.woff2") format("woff2");
}

@font-face {
  font-family: "UID Space";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("fonts/UID SPACE BIG.woff2") format("woff2");
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Google Sans", system-ui, -apple-system, sans-serif;
  background: var(--canvas);
  color: var(--ink);
  overflow-x: hidden;
  font-weight: 400;
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6,
.display-xxl,
.display-xl,
.display-lg,
.display-md,
.btn-primary,
.btn-secondary,
.stat-num {
  font-family: "UID Space", sans-serif;
}

.display-xxl,
.display-xl,
.display-lg,
.display-md {
  font-weight: 700;
  letter-spacing: -0.04em;
}
.display-xxl {
  line-height: 0.95;
  letter-spacing: -0.045em;
}
.display-xl {
  line-height: 1;
  letter-spacing: -0.035em;
}
.display-lg {
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.display-md {
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.font-mid {
  font-weight: 500;
}

/* ============== BUTTONS ============== */
.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(183, 238, 105, 0);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px rgba(183, 238, 105, 0.55);
}
.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  background: var(--surface-1);
  color: var(--ink);
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 15px;
  transition:
    background 0.2s,
    transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  border: 1px solid var(--hairline);
}
.btn-secondary:hover {
  background: var(--surface-2);
}

.pill-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  color: var(--ink-muted);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.pill-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(183, 238, 105, 0.18);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(183, 238, 105, 0.18);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(183, 238, 105, 0.05);
  }
}

/* ============== CARDS ============== */
.card-charcoal {
  background: var(--surface-1);
  border: 1px solid var(--hairline-soft);
  border-radius: 20px;
}
.card-spotlight {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.spotlight-lime {
  background: linear-gradient(135deg, #b7ee69 0%, #8fcc4a 50%, #5c8a2e 100%);
  color: #0a0a0a;
}
.spotlight-violet {
  background: linear-gradient(135deg, #6b4eff 0%, #b14cff 50%, #ff4f87 100%);
}
.spotlight-magenta {
  background: linear-gradient(135deg, #ff3d9a 0%, #c026d3 50%, #7c3aed 100%);
}
.spotlight-orange {
  background: linear-gradient(135deg, #ff8a3d 0%, #ff5a5f 50%, #e94560 100%);
}
.spotlight-coral {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa07a 50%, #ffd27f 100%);
}

/* ============== ANIM ============== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.grid-bg {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Hero glow */
.hero-glow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(183, 238, 105, 0.15) 0%,
    transparent 60%
  );
  z-index: 0;
  pointer-events: none;
}

/* PTCF orbs */
.ptcf-orb {
  position: absolute;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "UID Space", sans-serif;
  font-weight: 700;
  font-size: 36px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* AI logo chips floating in hero */
.ai-logo-chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Marquee */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 35s linear infinite;
  width: max-content;
}

/* Module accordion */
.module-card {
  transition:
    border-color 0.2s,
    background 0.2s;
}
.module-card[data-open="true"] {
  border-color: rgba(183, 238, 105, 0.35);
  background: linear-gradient(180deg, rgba(183, 238, 105, 0.04), transparent);
}
.module-card[data-open="true"] .chevron {
  transform: rotate(180deg);
}
.module-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.chevron {
  transition: transform 0.3s;
}

.nav-blur {
  backdrop-filter: blur(20px);
  background: rgba(10, 10, 10, 0.7);
}

.star {
  color: var(--accent);
  font-size: 0.875rem;
}

.avatar-gradient {
  background: linear-gradient(135deg, #b7ee69, #8fcc4a);
  color: #0a0a0a;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-num {
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.accent-text {
  color: var(--accent);
}
.accent-bg {
  background: var(--accent);
  color: #0a0a0a;
}

/* Pricing — strikethrough */
.price-old {
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  color: var(--ink-muted);
}

/* Chart bars (CSS-based for fast load) */
.chart-bar {
  background: var(--surface-2);
  border-radius: 6px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.chart-bar-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 6px;
  transition: height 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media (max-width: 768px) {
  .display-xxl {
    letter-spacing: -0.035em;
  }
}
