/* ================================================
   CIRCE Product Page — circe.css
   Loaded after styles.css. Uses all tokens.css vars.
   No overrides to tokens.css / styles.css.
   ================================================ */

/* ========== CIRCE HERO ========== */
.circe-hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + var(--s-3xl));
  padding-bottom: var(--s-2xl);
  position: relative;
  overflow: hidden;
}

/* Ambient background — same pattern as index hero-video-bg */
.circe-hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  mix-blend-mode: screen;
}
.circe-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circe-hero-compact {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.circe-hero-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-md);
  margin-bottom: var(--s-xl);
}

.circe-hero-logo-sm {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: brightness(1.4);
  transform: scale(1.2);
}

.circe-hero-compact .hero-desc {
  margin-left: auto;
  margin-right: auto;
}

.circe-hero-compact .hero-btns {
  justify-content: center;
}

/* ========== STATS BAR ========== */
.circe-stats {
  padding: var(--s-2xl) 0;
}
.circe-stats + .section {
  padding-top: var(--s-3xl);
}

/* ========== FEATURES GRID ========== */
.circe-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
  margin-top: var(--s-3xl);
}

/* ========== DASHBOARD SECTION ========== */
.circe-dashboard-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-4xl);
  align-items: start;
  margin-top: var(--s-3xl);
}

.circe-dashboard-features { }

.dashboard-preview {
  background: var(--black-card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-medium);
  border-radius: var(--r-lg);
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-md);
  position: relative;
  overflow: hidden;
}

.dashboard-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(141,198,63,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.dashboard-preview-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.dashboard-preview-icon {
  font-size: 2rem;
  opacity: 0.2;
}

/* Fake terminal scanlines inside preview */
.dashboard-preview-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(141,198,63,0.012) 3px,
    rgba(141,198,63,0.012) 4px
  );
  pointer-events: none;
}

/* ========== SECURITY SECTION ========== */
/* Reuses .about-split and .cred-stack from styles.css */

/* ========== ARCHITECTURE SECTION ========== */
.circe-arch-card {
  margin-top: var(--s-3xl);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== WHO IT'S FOR ========== */
/* Reuses .ventures-row from styles.css */

/* ========== CIRCE CTA SECTION ========== */
/* Inherits .cta from styles.css — no overrides needed */

/* ========== NAV BACK LINK ========== */
.nav-back {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gray-600);
  letter-spacing: 0.04em;
  transition: color var(--dur-fast);
}
.nav-back:hover {
  color: var(--lime);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .circe-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .circe-dashboard-layout {
    grid-template-columns: 1fr;
  }
  .dashboard-preview {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .circe-features-grid {
    grid-template-columns: 1fr;
  }
  .circe-hero-logo-sm {
    width: 44px;
    height: 44px;
  }
}
