/* ============================================================================
   METANOIA — KNOW YOURSELF FIRST (section 06)
   Loads AFTER landing.css. Reuses the shared .s-head / .eyebrow / .h2 / .lede
   primitives; adds the self-discovery card grid. Card styling mirrors the
   .domain-card pattern (top accent bar + hover lift) so it reads as part of
   the same system.
   ============================================================================ */

.know .s-head { max-width: 940px; }

.know-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}
.know-card {
  position: relative;
  padding: 26px 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  display: flex; flex-direction: column; gap: 12px;
  min-height: 200px;
  overflow: hidden;
  transition: transform 240ms var(--ease-out-soft), border-color 240ms var(--ease-out-soft);
}
.know-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--c);
  box-shadow: 0 0 14px var(--c);
}
.know-card:hover { transform: translateY(-4px); border-color: var(--c); }
.know-idx {
  font-family: var(--font-display); font-weight: 600;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--c);
}
.know-name {
  font-family: var(--font-display); font-weight: 400;
  font-size: 19px; letter-spacing: -0.015em; line-height: 1.18;
  color: var(--fg1);
  margin-top: auto;
}
.know-desc {
  margin: 0;
  font-size: 13px; line-height: 1.55; color: var(--fg3); font-weight: 300;
}

.know-note {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(15px, 1.5vw, 18px); line-height: 1.5; letter-spacing: -0.005em;
  color: var(--fg3);
}
.know-note em {
  font-style: normal;
  background: var(--gradient-spectrum);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

@media (max-width: 1000px) {
  .know-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .know-grid { grid-template-columns: 1fr; }
}
