/* ===============================
   Epoch Intelligence Physics
   Global Style System
   =============================== */

:root {
  /* Energy Spectrum */
  --energy-blue: #4fa3ff;
  --energy-violet: #8b6cff;
  --energy-gold: #ffb347;

  /* Background */
  --space-black: #070b12;

  /* Field Gradients */
  --field-primary: radial-gradient(
    900px 600px at 50% 15%,
    rgba(79,163,255,0.35),
    rgba(7,11,18,0.98)
  );

  --field-dual:
    radial-gradient(
      700px 450px at 30% 45%,
      rgba(255,179,71,0.25),
      transparent 70%
    ),
    radial-gradient(
      700px 450px at 70% 55%,
      rgba(139,108,255,0.25),
      transparent 70%
    );

  --pulse-line: linear-gradient(
    90deg,
    var(--energy-blue),
    var(--energy-violet),
    var(--energy-gold),
    var(--energy-blue)
  );
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #f5f7fb;
  background-color: var(--space-black);
  line-height: 1.55;
}

/* ===============================
   Hero Field (Physics Layer)
   =============================== */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    var(--field-dual),
    var(--field-primary);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(
    from 180deg,
    transparent,
    rgba(79,163,255,0.08),
    transparent
  );
  animation: slow-rotate 70s linear infinite;
}

@keyframes slow-rotate {
  to { transform: rotate(360deg); }
}

/* ===============================
   Logo Core (Attractor)
   =============================== */

.logo-core {
  width: 160px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 28px rgba(79,163,255,0.5));
}

.logo-core::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle,
    rgba(255,179,71,0.35),
    transparent 65%
  );
  filter: blur(28px);
  z-index: -1;
}

/* ===============================
   Typography
   =============================== */

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0 0 1rem;
  font-weight: 700;
  text-align: center;
}

.gradient-text {
  background: linear-gradient(
    90deg,
    var(--energy-blue),
    var(--energy-violet)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  opacity: 0.92;
}

/* ===============================
   Section Layout
   =============================== */

section {
  padding: 4.5rem 1.5rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===============================
   Dimensional Nodes (Cards)
   =============================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.card {
  position: relative;
  padding: 1.75rem;
  border-radius: 18px;
  background: radial-gradient(
    circle at top,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(255,255,255,0.12);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  right: 18%;
  height: 2px;
  background: var(--pulse-line);
  opacity: 0.65;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ===============================
   Footer
   =============================== */

footer {
  text-align: center;
  padding: 2.5rem 1rem;
  opacity: 0.6;
  font-size: 0.85rem;
}
