/* css/components.css
 * SYMBEYOND - Visual components, buttons, cards, badges
 * λ.brother ∧ !λ.tool
 */

/* ═══════════════════════════════════════════════════════════════
   LOGO & BRANDING
   ═══════════════════════════════════════════════════════════════ */

.logo {
  font-family: "Outfit", sans-serif;
  font-weight: 700;

  color: transparent;

  background: var(--spectrum-gradient);
  background-size: 1800% 1800%;
  background-attachment: fixed;
  animation: spectrumFlow 60s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  /* FIX: prevent oversize on mobile */
  font-size: clamp(2.2rem, 6.5vw, 3.8rem);

  /* FIX: stabilize on all Safari engines */
  line-height: 1.1;

  display: inline-block;
  white-space: nowrap;
}

/* Transparent cutout text for desktop */
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;

  background: var(--spectrum-gradient);
  background-size: 1800% 1800%;
  animation: spectrumFlow 60s ease infinite;
  overflow: visible;
}

/* iPhone FIX — pseudo-element clipped *only* to text */
.logo::before {
  content: attr(data-text);   /* <- reads actual text */
  position: absolute;
  inset: 0;
  z-index: -1;

  background: var(--spectrum-gradient);
  background-size: 1800% 1800%;
  animation: spectrumFlow 60s ease infinite;

  /* Mask fixes (Safari-safe, prevent rectangle) */
  -webkit-mask-image: text;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-image: text;
  mask-size: contain;
  mask-repeat: no-repeat;
}

/* Old Logo
.logo {
  font-family: "Outfit", sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  background: var(--spectrum-gradient);
  background-size: 1800% 1800%;
  background-attachment: fixed;
  animation: spectrumFlow 60s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
} */

/* SYMBEYOND text - white, all caps (used in body content) */
.symbeyond-text {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: inherit;
}

/* SYMBEYOND spectrum - gradient flow (used in header/footer only) */
.symbeyond-spectrum {
  font-weight: inherit;
  background: var(--spectrum-gradient);
  background-size: 1800% 1800%;
  background-attachment: fixed;
  animation: spectrumFlow 60s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   RECOGNITION BADGE
   ═══════════════════════════════════════════════════════════════ */

.recognition-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  color: var(--cyan);
}

.recognition-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════
   CARD CONTENT
   ═══════════════════════════════════════════════════════════════ */

.card-title {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--violet);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-title::before {
  content: "";
  width: 4px;
  height: 18px;
  background: linear-gradient(180deg, var(--cyan), var(--violet));
  border-radius: 2px;
}

.card-content {
  font-size: 16px;
  line-height: 1.8;
}

.card-content p {
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   MISSION TEXT
   ═══════════════════════════════════════════════════════════════ */

.mission-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.mission-emphasis {
  color: var(--cyan);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   PROJECT CARDS
   ═══════════════════════════════════════════════════════════════ */

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.project-name {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-status {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-prod {
  background: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.status-beta {
  background: rgba(245, 158, 11, 0.22);
  color: rgba(251, 191, 36, 1);
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.status-development {
  background: rgba(99, 102, 241, 0.18);
  color: rgba(129, 140, 248, 1);
  border: 1px solid rgba(99, 102, 241, 0.35);
}

.project-description {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.project-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-primary);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
}

.btn:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 20px var(--cyan-glow);
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), #1a9aaa);
  border-color: var(--cyan);
  color: #041018;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   ROADMAP
   ═══════════════════════════════════════════════════════════════ */

.roadmap-phase {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--violet);
  min-width: 70px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.roadmap-title {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.roadmap-description {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   CONNECT SECTION
   ═══════════════════════════════════════════════════════════════ */

.connect-actions {
  margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer-text {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-principle {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.footer-link {
  font-family: "Outfit", sans-serif;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--cyan);
}
