/* Partner Kit — shared house styles layered on top of CI tokens */
@import url('./colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--ci-font-sans);
  color: var(--ci-navy);
  background: var(--ci-ice-blue);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Common atoms ---------- */
.eyebrow {
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ci-slate);
}
.eyebrow.amber { color: var(--ci-amber); }
.eyebrow.white { color: rgba(255,255,255,0.7); }

.amber-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border: 1.5px solid var(--ci-amber);
  border-radius: 999px;
  color: var(--ci-amber);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
}

.btn-amber {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--ci-amber);
  color: var(--ci-navy);
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 120ms ease, background 120ms ease;
}
.btn-amber:hover { background: var(--ci-amber-hover); transform: translateY(-1px); }
.btn-amber:active { background: var(--ci-amber-active); transform: scale(0.98); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: transparent;
  color: var(--ci-navy);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid rgba(29,45,68,0.2);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--ci-navy); }

.mono { font-family: var(--ci-font-mono); font-variant-numeric: tabular-nums; }

/* ---------- Partner lockup (used on every asset) ---------- */
.partner-lockup {
  display: flex; align-items: center; gap: 16px;
}
.partner-lockup .partner-mark {
  width: 44px; height: 44px; border-radius: 8px;
  background: var(--ci-navy);
  display: grid; place-items: center;
  color: var(--ci-white); font-weight: 900; font-size: 18px; letter-spacing: -0.02em;
  overflow: hidden; flex: 0 0 auto;
}
.partner-lockup .partner-mark img { width: 100%; height: 100%; object-fit: contain; background: var(--ci-white); }
.partner-lockup .partner-name {
  font-weight: 700; font-size: 15px; color: var(--ci-navy); line-height: 1.1;
}
.partner-lockup .partner-tag {
  font-size: 12px; color: var(--ci-slate); letter-spacing: 0.02em; margin-top: 3px;
}
.partner-lockup.on-dark .partner-name { color: var(--ci-white); }
.partner-lockup.on-dark .partner-tag { color: var(--ci-white-70); }

.lockup-divider {
  width: 1px; height: 36px; background: rgba(29,45,68,0.18);
  margin: 0 20px;
}
.lockup-divider.on-dark { background: rgba(255,255,255,0.18); }

.ci-lockup {
  display: flex; align-items: center; gap: 12px;
}
.ci-lockup > div { white-space: nowrap; }
.ci-lockup img { width: 44px; height: 44px; object-fit: contain; flex: 0 0 auto; }
.ci-lockup .ci-name {
  font-weight: 700; font-size: 15px; color: var(--ci-navy); line-height: 1.1; white-space: nowrap;
}
.ci-lockup .ci-tag {
  font-size: 12px; color: var(--ci-slate); font-style: italic; margin-top: 3px;
}
.ci-lockup.on-dark .ci-name { color: var(--ci-white); }
.ci-lockup.on-dark .ci-tag { color: var(--ci-white-70); }

/* Editorial underline accent — amber dash */
.amber-underline {
  display: inline-block;
  width: 48px; height: 4px;
  background: var(--ci-amber);
  border-radius: 2px;
}

/* Ghosted tilted cards — editorial backdrop */
.ghost-cards {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
  z-index: 0;
}
.ghost-cards .gc {
  position: absolute;
  background: var(--ci-white);
  border: 1px solid rgba(29,45,68,0.06);
  border-radius: 10px;
  opacity: 0.5;
  box-shadow: 0 12px 32px rgba(29,45,68,0.04);
}

/* Card surface */
.card {
  background: var(--ci-white);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px;
}
.card.sm { padding: 24px; border-radius: 12px; }
.card.dark {
  background: var(--ci-navy); color: var(--ci-white);
  border-color: rgba(255,255,255,0.08);
}

/* Icon badges */
.icon-badge {
  width: 56px; height: 56px; border-radius: 999px;
  display: grid; place-items: center;
  flex: 0 0 auto;
}
.icon-badge.yellow { background: var(--ci-yellow); }
.icon-badge.mint { background: var(--ci-mint); }
.icon-badge.amber { background: var(--ci-amber); color: var(--ci-white); font-weight: 900; }
.icon-badge.ice { background: #D4E7EE; }
.icon-badge svg { stroke: var(--ci-navy); stroke-width: 2; width: 26px; height: 26px; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* Inline tag pill */
.tag-pill {
  display: inline-flex; align-items: center; padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
}
.tag-pill.amber-outline { border: 1.5px solid var(--ci-amber); color: var(--ci-amber); }
.tag-pill.mint { background: var(--ci-mint); color: var(--ci-navy); }
.tag-pill.yellow { background: var(--ci-yellow); color: var(--ci-navy); }
.tag-pill.navy { background: var(--ci-navy); color: var(--ci-white); }

/* Print: hide tweak/customizer chrome */
@media print {
  .no-print { display: none !important; }
  body { background: white !important; }
}
