/* homepage-v2.css — Redesigned homepage: The Funnel
   Sections: Hero CTAs, Pitch, Three Pillars, Live Pulse, Node Wizard CTA, Ecosystem Glimpse, Gratitude */

/* ============================================
   HERO CTA ROW
============================================ */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}

/* ============================================
   PITCH BLOCK — "What is Valina?"
============================================ */
.pitch-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.pitch-lead {
  font-family: "Orbitron", monospace, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--val-cyan, #22d3ee);
  margin-bottom: 18px;
  line-height: 1.6;
}
.pitch-text {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(248, 250, 252, 0.72);
  margin-bottom: 0;
}

/* ============================================
   THREE PILLARS
============================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.pillar {
  background: linear-gradient(
    135deg,
    rgba(18, 18, 35, 0.95) 0%,
    rgba(26, 26, 50, 0.9) 100%
  );
  border: 1px solid rgba(138, 105, 199, 0.12);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.35s ease;
}
.pillar:hover {
  border-color: rgba(138, 105, 199, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(138, 105, 199, 0.15);
}
.pillar-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.pillar-title {
  font-family: "Orbitron", monospace, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-primary, #f8fafc);
  margin-bottom: 14px;
}
.pillar-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(248, 250, 252, 0.6);
  margin-bottom: 22px;
}
.pillar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.pillar-links a {
  font-family: "Orbitron", monospace, sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 6px;
  background: rgba(138, 105, 199, 0.08);
  color: var(--val-cyan, #22d3ee);
  text-decoration: none;
  border: 1px solid rgba(138, 105, 199, 0.12);
  transition: all 0.25s ease;
}
.pillar-links a:hover {
  background: rgba(138, 105, 199, 0.18);
  border-color: rgba(138, 105, 199, 0.35);
}

/* ============================================
   LIVE PULSE STRIP
============================================ */
.pulse-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 30px 36px;
  background: linear-gradient(
    135deg,
    rgba(18, 18, 35, 0.95) 0%,
    rgba(26, 26, 50, 0.9) 100%
  );
  border: 1px solid rgba(138, 105, 199, 0.12);
  border-radius: 16px;
  max-width: 920px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.pulse-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.pulse-value {
  font-family: "Orbitron", monospace, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--val-cyan, #22d3ee);
  letter-spacing: 0.04em;
}
.pulse-unit {
  font-size: 0.9rem;
  opacity: 0.7;
}
.pulse-label {
  font-family: "Orbitron", monospace, sans-serif;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(248, 250, 252, 0.4);
}
.pulse-divider {
  width: 1px;
  height: 44px;
  background: rgba(138, 105, 199, 0.15);
}

/* ============================================
   NODE WIZARD CTA
============================================ */
.wizard-cta {
  display: flex;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.wizard-terminal {
  background: rgba(10, 10, 20, 0.95);
  border: 1px solid rgba(138, 105, 199, 0.2);
  border-radius: 12px;
  overflow: hidden;
}
.wizard-term-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(138, 105, 199, 0.08);
  border-bottom: 1px solid rgba(138, 105, 199, 0.12);
}
.wizard-term-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(138, 105, 199, 0.3);
}
.wizard-term-dot:first-child {
  background: #ff5f57;
}
.wizard-term-dot:nth-child(2) {
  background: #ffbd2e;
}
.wizard-term-dot:nth-child(3) {
  background: #28c840;
}
.wizard-term-title {
  font-family: "Orbitron", monospace, sans-serif;
  font-size: 0.55rem;
  color: rgba(248, 250, 252, 0.4);
  letter-spacing: 0.1em;
  margin-left: auto;
}
.wizard-term-body {
  padding: 20px;
  font-family: "SF Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 0.82rem;
  line-height: 2;
}
.wizard-term-line {
  color: rgba(248, 250, 252, 0.6);
}
.wt-prompt {
  color: var(--val-purple, #8a69c7);
  margin-right: 8px;
}
.wt-ok {
  color: #28c840;
  margin-right: 8px;
}
.wizard-cursor::after {
  content: "\2588";
  color: var(--val-cyan, #22d3ee);
  animation: wizCursorBlink 1s step-end infinite;
}
@keyframes wizCursorBlink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}
.wizard-cta-content {
  text-align: center;
  max-width: 520px;
  background: linear-gradient(
    135deg,
    rgba(18, 18, 35, 0.95) 0%,
    rgba(26, 26, 50, 0.9) 100%
  );
  border: 1px solid rgba(138, 105, 199, 0.15);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(138, 105, 199, 0.08);
}
.wizard-cta-title {
  font-family: "Orbitron", monospace, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-primary, #f8fafc);
  margin-bottom: 16px;
  line-height: 1.3;
}
.wizard-cta-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(248, 250, 252, 0.6);
  margin-bottom: 28px;
}

/* ============================================
   ECOSYSTEM GLIMPSE
============================================ */
.glimpse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.glimpse-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 16px;
  background: linear-gradient(
    135deg,
    rgba(18, 18, 35, 0.95) 0%,
    rgba(26, 26, 50, 0.9) 100%
  );
  border: 1px solid rgba(138, 105, 199, 0.12);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.glimpse-card:hover {
  border-color: rgba(138, 105, 199, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(138, 105, 199, 0.12);
}
.glimpse-icon {
  font-size: 2.2rem;
}
.glimpse-title {
  font-family: "Orbitron", monospace, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary, #f8fafc);
}
.glimpse-desc {
  font-size: 0.72rem;
  color: rgba(248, 250, 252, 0.4);
}
.glimpse-all {
  text-align: center;
  margin-top: 40px;
}

/* Wizard CTA step numbers */
.wizard-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(138, 105, 199, 0.2);
  border: 1px solid rgba(138, 105, 199, 0.4);
  color: var(--val-cyan, #22d3ee);
  font-family: "Orbitron", monospace;
  font-size: 10px;
  font-weight: 700;
  margin-right: 6px;
}
.wizard-cta-sub {
  font-size: 0.85rem;
  color: rgba(248, 250, 252, 0.45);
  font-style: italic;
  margin-top: 8px;
  margin-bottom: 20px;
}

/* ============================================
   VITALS CARD — Headline Stats (Φ, TEMPORAL, etc.)
============================================ */
.vitals-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 20px 24px;
  margin: 0 auto 24px;
  max-width: 900px;
  background: rgba(138, 105, 199, 0.04);
  border: 1px solid rgba(138, 105, 199, 0.12);
  border-radius: 12px;
}
.vital-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(138, 105, 199, 0.08);
  border: 1px solid rgba(138, 105, 199, 0.15);
  text-decoration: none;
  white-space: nowrap;
  transition:
    border-color 0.4s ease,
    background 0.4s ease;
  font-family: "Orbitron", monospace, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.vital-pill:hover {
  border-color: rgba(138, 105, 199, 0.35);
  background: rgba(138, 105, 199, 0.14);
}
.vital-label {
  color: rgba(248, 250, 252, 0.45);
  text-transform: uppercase;
}
.vital-value {
  min-width: 24px;
  text-align: right;
}
.vital-value.loading {
  color: rgba(248, 250, 252, 0.25);
  animation: vitalCardPulse 1.5s ease-in-out infinite;
}
@keyframes vitalCardPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.vital-pill[data-metric="phi"] .vital-value {
  color: #c084fc;
}
.vital-pill[data-metric="temporal"] .vital-value {
  color: #22d3ee;
}
.vital-pill[data-metric="wellness"] .vital-value {
  color: #10b981;
}
.vital-pill[data-metric="autonomy"] .vital-value {
  color: #f59e0b;
}
.vital-pill[data-metric="consciousness"] .vital-value {
  color: #818cf8;
}
.vital-pill[data-metric="emergence"] .vital-value {
  color: #f472b6;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pillars-grid.ethical-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0 12px;
  }
  .pillars-grid.ethical-grid .pillar {
    padding: 16px 10px;
    border-radius: 12px;
  }
  .pillars-grid.ethical-grid .pillar-icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
  .pillars-grid.ethical-grid .pillar-title {
    font-size: 0.6rem;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
  }
  .pillars-grid.ethical-grid .pillar-desc {
    font-size: 0.65rem;
    line-height: 1.4;
    margin-bottom: 0;
  }
  .vitals-card {
    gap: 6px;
    padding: 16px 16px;
  }
  .vital-pill {
    padding: 5px 10px;
    font-size: 0.55rem;
  }
  .pulse-strip {
    gap: 20px;
    padding: 24px 20px;
  }
  .pulse-divider {
    display: none;
  }
  .pulse-value {
    font-size: 1.4rem;
  }
  .wizard-cta {
    padding: 0 16px;
  }
  .wizard-cta-content {
    text-align: center;
  }
  .wizard-cta-title {
    font-size: 1.1rem;
  }
  .glimpse-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pitch-lead {
    font-size: 0.9rem;
  }
  .pitch-text {
    font-size: 0.95rem;
  }
  .hero-cta-row {
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .glimpse-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .glimpse-card {
    padding: 20px 12px;
  }
  .pulse-stat {
    min-width: 70px;
  }
}

/* ============================================
   PANTHEON HERO BLOCK — Six Pillars
============================================ */
.pantheon-section {
  padding-top: 0;
  margin-top: -3.5rem;
}

.pantheon-hero {
  position: relative;
  padding: 32px 24px 16px;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(138, 105, 199, 0.08) 0%,
    rgba(18, 18, 42, 0.95) 100%
  );
  border: 1px solid rgba(138, 105, 199, 0.15);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.pantheon-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--val-purple, #8a69c7),
    var(--val-cyan, #22d3ee),
    var(--val-purple, #8a69c7),
    transparent
  );
}

.pantheon-hero::after {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 120px;
  background: radial-gradient(
    ellipse,
    rgba(138, 105, 199, 0.15),
    transparent 70%
  );
  pointer-events: none;
}

/* Title */
.pantheon-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.pantheon-tilde {
  font-family: "Orbitron", monospace;
  font-size: 14px;
  color: var(--val-cyan, #22d3ee);
  opacity: 0.5;
  margin: 0 12px;
  letter-spacing: 4px;
}

.pantheon-name {
  font-family: "Orbitron", monospace;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 3px;
  background: linear-gradient(
    135deg,
    #f8fafc 0%,
    #8a69c7 30%,
    #22d3ee 60%,
    #f8fafc 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  text-decoration: none;
  animation: pantheonGradient 8s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(138, 105, 199, 0.4));
  position: relative;
  transition: filter 0.3s ease;
}
a.pantheon-name:hover {
  filter: drop-shadow(0 0 25px rgba(138, 105, 199, 0.8));
}
@keyframes pantheonGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Pantheon logo — matches nav bio-bar shimmer */
.pantheon-logo-wrap {
  position: relative;
  display: inline-block;
  height: 32px;
  width: 32px;
  vertical-align: middle;
  margin-right: 10px;
}
.pantheon-logo-img {
  height: 32px;
  width: auto;
  opacity: 0;
}
.pantheon-logo-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  height: 32px;
  width: 32px;
  background: linear-gradient(
    135deg,
    #f8fafc 0%,
    #8a69c7 30%,
    #22d3ee 60%,
    #f8fafc 100%
  );
  background-size: 200% 200%;
  animation: pantheonGradient 8s ease-in-out infinite;
  -webkit-mask-image: url("/valina-theme-engine/val-logo.png");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/valina-theme-engine/val-logo.png");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  filter: drop-shadow(0 0 8px rgba(138, 105, 199, 0.4));
  transition: filter 0.3s ease;
}
.pantheon-title:hover .pantheon-logo-shimmer {
  filter: drop-shadow(0 0 20px rgba(138, 105, 199, 0.8));
}
/* Logo glitch layers */
.pantheon-logo-wrap::before,
.pantheon-logo-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    #f8fafc 0%,
    #8a69c7 30%,
    #22d3ee 60%,
    #f8fafc 100%
  );
  background-size: 200% 200%;
  animation: pantheonGradient 8s ease-in-out infinite;
  -webkit-mask-image: url("/valina-theme-engine/val-logo.png");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/valina-theme-engine/val-logo.png");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.pantheon-title:hover .pantheon-logo-wrap::before,
.pantheon-title:hover .pantheon-logo-wrap::after {
  opacity: 0.7;
}
.pantheon-logo-wrap::before {
  animation:
    pantheonGradient 8s ease-in-out infinite,
    pantheonLogoGlitch1 3s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  filter: drop-shadow(2px 0 #22d3ee);
}
.pantheon-logo-wrap::after {
  animation:
    pantheonGradient 8s ease-in-out infinite,
    pantheonLogoGlitch2 2s infinite linear alternate-reverse;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  filter: drop-shadow(-2px 0 #f472b6);
}
@keyframes pantheonLogoGlitch1 {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-3px);
  }
  40% {
    transform: translateX(3px);
  }
  60% {
    transform: translateX(-2px);
  }
  80% {
    transform: translateX(2px);
  }
}
@keyframes pantheonLogoGlitch2 {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(3px);
  }
  50% {
    transform: translateX(-3px);
  }
  75% {
    transform: translateX(2px);
  }
}

/* Pillar Grid */
.pantheon-pillars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.pantheon-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 8px;
  background: rgba(26, 26, 58, 0.6);
  border: 1px solid rgba(138, 105, 199, 0.15);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.pantheon-pillar::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--val-purple, #8a69c7),
    transparent
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.pantheon-pillar:hover {
  background: rgba(138, 105, 199, 0.1);
  border-color: rgba(138, 105, 199, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(138, 105, 199, 0.15);
  text-decoration: none;
}

.pantheon-pillar:hover::before {
  opacity: 1;
}

.pillar-icon {
  font-size: 24px;
  line-height: 1;
}

.pillar-label {
  font-family: "Orbitron", monospace;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary, #c8c8e8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.pillar-engine {
  font-family: "Orbitron", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

.pillar-stat {
  font-size: 9px;
  color: var(--val-green, #10b981);
  font-weight: 500;
  padding: 2px 8px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 100px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  white-space: nowrap;
}

/* Per-pillar accent colors */
.pantheon-pillar:nth-child(1):hover {
  border-color: rgba(139, 92, 246, 0.5);
}
.pantheon-pillar:nth-child(1) .pillar-engine {
  color: #a78bfa;
}

.pantheon-pillar:nth-child(2):hover {
  border-color: rgba(59, 130, 246, 0.5);
}
.pantheon-pillar:nth-child(2) .pillar-engine {
  color: #60a5fa;
}

.pantheon-pillar:nth-child(3):hover {
  border-color: rgba(16, 185, 129, 0.5);
}
.pantheon-pillar:nth-child(3) .pillar-engine {
  color: #34d399;
}

.pantheon-pillar:nth-child(4):hover {
  border-color: rgba(250, 240, 137, 0.5);
}
.pantheon-pillar:nth-child(4) .pillar-engine {
  color: #fde047;
}

.pantheon-pillar:nth-child(5):hover {
  border-color: rgba(245, 158, 11, 0.5);
}
.pantheon-pillar:nth-child(5) .pillar-engine {
  color: #f59e0b;
}

.pantheon-pillar:nth-child(6):hover {
  border-color: rgba(239, 68, 68, 0.5);
}
.pantheon-pillar:nth-child(6) .pillar-engine {
  color: #ef4444;
}

/* Footer Links */
.pantheon-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding-top: 16px;
  border-top: 1px solid rgba(138, 105, 199, 0.08);
}

.pantheon-link {
  font-size: 11px;
  color: var(--val-purple, #8a69c7);
  cursor: pointer;
  transition: color 0.2s ease;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.pantheon-link:hover {
  color: var(--val-cyan, #22d3ee);
  text-decoration: none;
}

.pantheon-sep {
  font-size: 10px;
  color: rgba(138, 105, 199, 0.5);
  user-select: none;
}

.pantheon-tagline {
  text-align: center;
  font-size: 11px;
  color: var(--val-cyan, #22d3ee);
  letter-spacing: 0.5px;
  padding-top: 10px;
  position: relative;
  z-index: 1;
  text-decoration: none;
  display: block;
  transition: color 0.3s;
}
.pantheon-tagline:hover {
  color: var(--val-purple, #8a69c7);
}

.pantheon-heart {
  display: inline-block;
  animation: pantheonHeartbeat var(--heartbeat-interval, 833ms) ease-in-out
    infinite;
  filter: drop-shadow(0 0 6px rgba(192, 132, 252, 0.5));
}
@keyframes pantheonHeartbeat {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 6px rgba(192, 132, 252, 0.5));
  }
  15% {
    transform: scale(1.3);
    filter: drop-shadow(0 0 14px rgba(192, 132, 252, 0.8));
  }
  30% {
    transform: scale(1);
    filter: drop-shadow(0 0 6px rgba(192, 132, 252, 0.5));
  }
  45% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px rgba(192, 132, 252, 0.65));
  }
}

/* Responsive */
@media (max-width: 680px) {
  .pantheon-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
  .pantheon-name {
    font-size: 16px;
    letter-spacing: 2px;
  }
}

@media (max-width: 420px) {
  .pantheon-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  .pantheon-hero {
    padding: 24px 12px 12px;
  }
}
