/* ─────────────────────────────────────────────────────────────
   Runwiv — Athlete Profile v2
   runner-profile.html world-class layer
   ───────────────────────────────────────────────────────────── */

/* ── Skeleton / Loading ────────────────────────────────────── */
@keyframes ap-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.ap-skeleton-pulse {
  background: linear-gradient(90deg, #1f1f21 0%, #2a2a2d 50%, #1f1f21 100%);
  background-size: 200% 100%;
  animation: ap-shimmer 1.8s ease-in-out infinite;
  border-radius: 8px;
}

@keyframes ap-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.ap-skeleton-val {
  transition: color 0.3s ease;
}

/* ── Hero Band ─────────────────────────────────────────────── */
.ap-hero-band {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 90% 120% at 10% 0%, rgba(0, 240, 255, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 90% 100%, rgba(103, 232, 249, 0.05) 0%, transparent 50%),
    linear-gradient(160deg, #0d0e10 0%, #131416 60%, #0c0d0e 100%);
  border-bottom: 1px solid rgba(59, 73, 75, 0.45);
  padding: 2.5rem 2rem 2rem;
}

@media (min-width: 640px) {
  .ap-hero-band {
    padding: 3rem 2.5rem 2.5rem;
    min-height: 240px;
  }
}

.ap-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% -10%, rgba(0, 240, 255, 0.04), transparent 70%);
  pointer-events: none;
}

/* Skeleton inner (shown by default, replaced by JS) */
.ap-hero-band__skeleton-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

.ap-hero-band__sk-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ap-hero-band__sk-lines {
  flex: 1;
}

/* Hero inner layout (populated by JS) */
.ap-hero-band__inner {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .ap-hero-band__inner {
    align-items: center;
    gap: 2.25rem;
  }
}

/* Avatar */
.ap-hero-band__avatar-col {
  flex-shrink: 0;
}

.ap-hero-band__avatar-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid rgba(0, 240, 255, 0.3);
  box-shadow:
    0 0 0 4px rgba(0, 240, 255, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.5);
  background: #1a1a1c;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ap-hero-band__avatar-wrap:hover {
  border-color: rgba(0, 240, 255, 0.55);
  box-shadow:
    0 0 0 4px rgba(0, 240, 255, 0.14),
    0 12px 40px rgba(0, 0, 0, 0.55);
}

@media (min-width: 640px) {
  .ap-hero-band__avatar-wrap {
    width: 100px;
    height: 100px;
  }
}

.ap-hero-band__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ap-hero-band__avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #00f0ff;
  background: linear-gradient(135deg, #0d1a1b 0%, #1a2425 100%);
  letter-spacing: -0.04em;
  user-select: none;
}

/* Ghost avatar for unauthenticated state */
.ap-hero-band__avatar-wrap--ghost {
  border-color: rgba(59, 73, 75, 0.5);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.ap-hero-band__avatar-wrap--ghost .ap-hero-band__avatar-fallback {
  color: #4a5568;
  background: #151617;
}

/* Content area */
.ap-hero-band__content {
  flex: 1;
  min-width: 0;
}

.ap-hero-band__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 240, 255, 0.75);
}

.ap-hero-band__name {
  margin: 0 0 0.55rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.45rem, 5vw, 2.25rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #f0f4f5;
  word-break: break-word;
}

.ap-hero-band__bio {
  margin: 0 0 1.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #9ca5a8;
  max-width: 42rem;
}

.ap-hero-band__bio--hint {
  color: #5a6568;
  font-style: italic;
}

/* Inline stat strip */
.ap-hero-band__stat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  margin-bottom: 1.1rem;
}

.ap-hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #c5d0d2;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.ap-hero-stat strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  color: #e8f0f1;
}

.ap-hero-stat--wins strong {
  color: #bef264;
}

.ap-hero-stat--streak strong {
  color: #fb923c;
}

/* Smaller avatar on narrow screens */
@media (max-width: 400px) {
  .ap-hero-band__avatar-wrap {
    width: 72px;
    height: 72px;
  }
  .ap-hero-band {
    padding: 2rem 1.25rem 1.75rem;
  }
  .ap-hero-band__inner {
    gap: 1.1rem;
  }
}

/* Action links row */
.ap-hero-band__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 0.85rem;
}

.ap-hero-band__nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: #8fa6a9;
  text-decoration: none;
  transition: color 0.15s ease;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.ap-hero-band__nav-link:hover {
  color: #00f0ff;
}

.ap-hero-band__nav-link--live {
  color: #fe5f00;
}

.ap-hero-band__nav-link--live:hover {
  color: #ff7a22;
}

.ap-hero-band__nav-sep {
  color: rgba(59, 73, 75, 0.8);
  font-size: 0.72rem;
}

.ap-hero-band__share-btn {
  color: #67e8f9;
}

.ap-hero-band__share-btn:hover {
  color: #00f0ff;
}

.ap-hero-band__public-badge {
  font-size: 0.72rem;
  color: #5a6568;
  font-style: italic;
}

/* Private gate inside hero */
.ap-hero-band__private {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.ap-hero-band__private-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.ap-hero-band__private-title {
  margin: 0 0 0.4rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  font-style: italic;
  color: #e5e2e3;
}

.ap-hero-band__private-lede {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: #7d8b8d;
}

/* ── Mode Banner ────────────────────────────────────────────── */
.ap-mode-host {
  padding: 0 1.25rem;
}

.ap-mode-banner {
  margin: 0.75rem 0 0;
  padding: 0.75rem 1.125rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 240, 255, 0.2);
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.07) 0%, rgba(20, 21, 22, 0.9) 100%);
}

.ap-mode-banner--owner {
  border-color: rgba(254, 95, 0, 0.3);
  background: linear-gradient(135deg, rgba(254, 95, 0, 0.08) 0%, rgba(20, 21, 22, 0.9) 100%);
}

.ap-mode-banner__text {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #b9cacb;
}

.ap-mode-banner__tag {
  display: inline-block;
  margin-right: 0.5rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0c0d0e;
  background: #00f0ff;
}

.ap-mode-banner--owner .ap-mode-banner__tag {
  background: #fe5f00;
  color: #fff;
}

/* ── Section Navigation ─────────────────────────────────────── */
.ap-section-nav {
  position: sticky;
  top: 64px;
  z-index: 40;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 1.25rem;
  margin-bottom: 0;
  background: rgba(12, 13, 14, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(59, 73, 75, 0.4);
}

.ap-section-nav::-webkit-scrollbar {
  display: none;
}

@media (min-width: 640px) {
  .ap-section-nav {
    padding: 0 2rem;
  }
}

.ap-section-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7d8b8d;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease;
  flex-shrink: 0;
}

.ap-section-nav__link:hover {
  color: #c5d5d7;
}

.ap-section-nav__link--active {
  color: #00f0ff;
  border-bottom-color: #00f0ff;
}

/* ── Eyebrow utility ─────────────────────────────────────────── */
.ap-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 240, 255, 0.8);
  margin: 0;
}

/* ── Stat Tiles (enhanced) ──────────────────────────────────── */
.athlete-stat-tile {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.athlete-stat-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 10% 0%, rgba(0, 240, 255, 0.05), transparent 55%);
  pointer-events: none;
}

.athlete-stat-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 240, 255, 0.28);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38);
}

.athlete-stat-tile--pace::after {
  background: radial-gradient(120% 80% at 10% 0%, rgba(254, 95, 0, 0.07), transparent 55%);
}

.athlete-stat-tile--pace:hover {
  border-color: rgba(254, 95, 0, 0.28);
}

.athlete-stat-tile--wins::after {
  background: radial-gradient(120% 80% at 10% 0%, rgba(190, 242, 100, 0.07), transparent 55%);
}

.athlete-stat-tile--wins:hover {
  border-color: rgba(190, 242, 100, 0.25);
}

.athlete-stat-tile--runs::after {
  background: radial-gradient(120% 80% at 10% 0%, rgba(103, 232, 249, 0.06), transparent 55%);
}

.athlete-stat-tile__icon {
  margin-bottom: 0.6rem;
  color: rgba(0, 240, 255, 0.5);
  height: 16px;
}

.athlete-stat-tile--pace .athlete-stat-tile__icon { color: rgba(254, 95, 0, 0.6); }
.athlete-stat-tile--wins .athlete-stat-tile__icon { color: rgba(190, 242, 100, 0.6); }
.athlete-stat-tile--runs .athlete-stat-tile__icon { color: rgba(103, 232, 249, 0.5); }

/* ── Personal Records ──────────────────────────────────────── */
.ap-records-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 540px) {
  .ap-records-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ap-record-tile {
  position: relative;
  padding: 1.1rem 1.25rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(59, 73, 75, 0.6);
  border-left: 3px solid rgba(0, 240, 255, 0.6);
  background: rgba(19, 20, 22, 0.7);
  backdrop-filter: blur(16px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ap-record-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 240, 255, 0.35);
  border-left-color: rgba(0, 240, 255, 0.8);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.ap-record-tile__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0c0d0e;
  background: #00f0ff;
  margin-bottom: 0.6rem;
}

.ap-record-tile__label {
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7d8b8d;
}

.ap-record-tile__dist {
  margin: 0 0 0.2rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: #f0f4f5;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.ap-record-tile__pace {
  margin: 0 0 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #67e8f9;
  font-variant-numeric: tabular-nums;
}

.ap-record-tile__date {
  margin: 0;
  font-size: 0.72rem;
  color: #5a6568;
}

/* ── Activity Zone Header ───────────────────────────────────── */
.ap-activity-zone-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem 0;
}

@media (min-width: 640px) {
  .ap-activity-zone-head {
    padding: 1.5rem 2rem 0;
  }
}

.ap-activity-zone-head__title {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #e5e2e3;
  margin: 0;
}

/* ── Activity Toolbar ───────────────────────────────────────── */
.ap-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem 1.25rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(59, 73, 75, 0.4);
  background: rgba(10, 11, 12, 0.3);
}

@media (min-width: 640px) {
  .ap-toolbar {
    padding: 1rem 2rem;
  }
}

.ap-toolbar--inset {
  border-radius: 0;
}

.ap-toolbar__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 140px;
}

.ap-toolbar__label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7d8b8d;
}

.ap-select {
  border-radius: 10px;
  border: 1px solid #3b494b;
  background: #1a1a1b;
  color: #e5e2e3;
  font-size: 0.8125rem;
  padding: 0.5rem 0.75rem;
  min-width: 160px;
}

.ap-select:focus {
  outline: none;
  border-color: rgba(0, 240, 255, 0.45);
  box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.12);
}

/* ── Activity Feed ──────────────────────────────────────────── */
.ap-activity-feed-host {
  padding: 0.5rem 0 0;
}

.ap-activity-feed {
  list-style: none;
  margin: 0;
  padding: 0 0 0.75rem;
}

.ap-activity-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(59, 73, 75, 0.3);
  border-left: 3px solid transparent;
  position: relative;
  transition: background 0.15s ease, border-left-color 0.15s ease;
  cursor: default;
}

@media (min-width: 640px) {
  .ap-activity-card {
    padding: 1rem 2rem;
  }
}

.ap-activity-card:last-child {
  border-bottom: none;
}

.ap-activity-card:hover {
  background: rgba(255, 255, 255, 0.025);
}

.ap-activity-card[data-kind="run"] { border-left-color: rgba(0, 240, 255, 0.5); }
.ap-activity-card[data-kind="walk"] { border-left-color: rgba(190, 242, 100, 0.4); }
.ap-activity-card[data-kind="ride"] { border-left-color: rgba(167, 139, 250, 0.45); }
.ap-activity-card[data-kind="arcade"] { border-left-color: rgba(251, 146, 60, 0.5); }

.ap-activity-card__left {
  min-width: 0;
}

.ap-activity-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
  flex-wrap: wrap;
}

.ap-activity-card__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #d8dfe0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ap-activity-card__when {
  font-size: 0.7rem;
  color: #5a6568;
  flex-shrink: 0;
}

.ap-activity-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
}

.ap-activity-card__stat {
  font-size: 0.78rem;
  color: #8fa6a9;
  font-variant-numeric: tabular-nums;
}

.ap-activity-card__stat strong {
  color: #c5d5d7;
  font-weight: 700;
}

.ap-activity-card__stat--pace {
  color: #67e8f9;
}

.ap-activity-card__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  flex-shrink: 0;
}

.ap-activity-card__badge {
  display: inline-flex;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0c0d0e;
  background: #00f0ff;
  white-space: nowrap;
}

.ap-activity-card__badge--longest {
  background: #bef264;
}

.ap-activity-card__badge--5k {
  background: #fb923c;
  color: #fff;
}

.ap-activity-feed__empty {
  padding: 2.5rem 2rem;
  text-align: center;
}

.ap-activity-feed__empty p {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: #5a6568;
}

/* ── Privacy / Visibility Section ───────────────────────────── */
.ap-privacy {
  padding: 1.5rem 1.5rem 1.75rem;
  border-radius: 20px;
  border: 1px solid rgba(59, 73, 75, 0.55);
  background: rgba(32, 31, 32, 0.55);
  backdrop-filter: blur(22px);
}

.ap-privacy__title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.02em;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  color: #fff;
}

.ap-privacy__lede {
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #9aa6a8;
  max-width: 52rem;
}

.ap-privacy__grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .ap-privacy__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.ap-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ap-field__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7d8b8d;
}

.ap-field--check {
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(59, 73, 75, 0.55);
  background: rgba(10, 11, 12, 0.35);
  font-size: 0.8125rem;
  color: #d1d5db;
}

.ap-field--check input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: #00f0ff;
}

.ap-textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #3b494b;
  background: #131314;
  color: #e5e2e3;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  resize: vertical;
  min-height: 5rem;
}

.ap-textarea:focus {
  outline: none;
  border-color: rgba(0, 240, 255, 0.45);
  box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.1);
}

.ap-privacy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 0.75rem;
}

.ap-btn-primary {
  background: linear-gradient(135deg, #00f0ff 0%, #06b6d4 100%);
  color: #0c0d0e !important;
  font-weight: 800;
  border: none;
}

.ap-share-url {
  width: 100%;
  font-size: 0.72rem;
  font-family: ui-monospace, monospace;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  border: 1px dashed rgba(59, 73, 75, 0.9);
  background: rgba(10, 11, 12, 0.5);
  color: #9ca3af;
}

/* ── Account Settings ───────────────────────────────────────── */
.ap-settings-section {
  border-radius: 20px;
  border: 1px solid rgba(59, 73, 75, 0.55);
  background: rgba(25, 25, 27, 0.6);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.ap-settings-section__head {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(59, 73, 75, 0.4);
  background: rgba(10, 11, 12, 0.3);
}

.ap-settings-section__title {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: #c5d5d7;
}

/* ── Links ──────────────────────────────────────────────────── */
.ap-link {
  color: #67e8f9;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ap-link:hover {
  color: #00f0ff;
}

/* ── Legacy / compat ────────────────────────────────────────── */
.ap-muted {
  color: #5a6568;
}

.ap-private-gate {
  text-align: center;
  padding: 2rem 1.5rem;
}

.ap-private-gate__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.ap-private-gate__title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  font-style: italic;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  color: #fff;
}

.ap-private-gate__lede,
.ap-private-gate__hint {
  margin: 0;
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.5;
}

.ap-private-gate__hint {
  margin-top: 1rem;
}
