/* =========================
   SOCIAL LAYER STYLES
   ========================= */

/* ----- ICON ROW (footer, hero) ----- */
.social-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  text-decoration: none;
  transition:
    color .16s ease,
    background .16s ease,
    border-color .16s ease,
    transform .16s ease;
}

.social-icon-link:hover {
  color: var(--text);
  background: rgba(124,92,255,.14);
  border-color: rgba(124,92,255,.35);
  transform: translateY(-2px);
}

/* Compact variant (footer) */
.social-row.compact .social-icon-link {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

/* ----- LABELLED ROW (contact, founder page) ----- */
.social-labelled-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-labelled-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition:
    color .16s ease,
    background .16s ease,
    border-color .16s ease,
    transform .15s ease;
}

.social-labelled-link:hover {
  color: var(--text);
  background: rgba(124,92,255,.12);
  border-color: rgba(124,92,255,.30);
  transform: translateY(-1px);
}

.social-labelled-link svg {
  flex-shrink: 0;
  opacity: .85;
}

.social-labelled-link:hover svg {
  opacity: 1;
}

/* ----- JOURNEY SECTION ----- */
.journey-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.journey-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 1px solid rgba(124,92,255,.22);
  border-radius: 18px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.journey-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(124,92,255,.7), rgba(255,255,255,.2), transparent);
}

.journey-label {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.journey-title {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.2;
}

.journey-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ----- COUNTDOWN ----- */
.countdown-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.countdown-number {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), rgba(200,180,255,.9));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.03em;
}

.countdown-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.countdown-label strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  margin-bottom: 2px;
}

/* ----- FOOTER SOCIAL SECTION ----- */
.footer-social {
  margin-top: 12px;
}

.footer-social-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  opacity: .8;
}

/* ----- VENTURE SOCIAL BLOCK ----- */
.venture-social {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.venture-social-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 640px) {
  .journey-strip {
    grid-template-columns: 1fr;
  }

  .countdown-number {
    font-size: 38px;
  }
}
