/* ============================================================
   FIGHTERSTATUS — Component & section styles
   Depends on tokens from fighterstatus.css
   ============================================================ */

/* ---------- Animations ---------- */
@keyframes fsFade { from { transform: translateY(16px); } to { transform: none; } }
.fs-fade { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .fs-fade { animation: fsFade .5s cubic-bezier(.2,.7,.2,1); }
}
@keyframes fsMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.fs-marquee { animation: fsMarquee 38s linear infinite; }
.fs-marquee:hover { animation-play-state: paused; }
@keyframes fsProg { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes fsPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.8); } }
@media (prefers-reduced-motion: reduce) {
  .fs-fade, .fs-marquee, .cd-dot { animation: none !important; }
}

/* ---------- Layout ---------- */
.wrap { max-width: 1320px; margin: 0 auto; }
.section { padding: 70px 40px; position: relative; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg-900) 82%, transparent);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
}
.nav-inner {
  padding: 15px 40px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
/* <picture> is an inline wrapper by default and does not inherit the img
   sizing rules, which left it boxing out to the source's intrinsic size. */
.nav-logo picture { display: flex; align-items: center; line-height: 0; }
.nav-logo img { height: 46px; width: auto; display: block; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-link {
  padding: 9px 14px; background: none; border: none; color: var(--fg-2);
  font-family: var(--font-label); font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.08em; text-transform: uppercase; border-radius: 8px;
  transition: color .2s, background .2s; text-decoration: none; cursor: pointer;
}
.nav-link:hover { color: var(--fg); background: var(--bg-800); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line-strong);
  background: var(--bg-800); color: var(--fg-2); display: grid; place-items: center;
}
.btn-signin {
  padding: 11px 18px; border-radius: 10px; border: none; background: var(--crimson);
  color: #fff; font-family: var(--font-label); font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
}
@media (max-width: 980px) { .nav-links { display: none !important; } }

/* ---------- Mobile navigation ----------
   The desktop links are hidden below 980px, so without this the sections are
   unreachable on a phone (which is also what the Android app renders). */
.nav-burger {
  display: none;
  width: 40px; height: 40px; flex: none;
  border-radius: 10px; border: 1px solid var(--line-strong);
  background: var(--bg-800); color: var(--fg);
  place-items: center; cursor: pointer;
}
.nav-burger:hover { border-color: var(--fg-3); }
.nav-burger:focus-visible { outline: 2px solid var(--crimson-bright); outline-offset: 2px; }
.nav-burger-bars { display: block; width: 18px; height: 12px; position: relative; }
.nav-burger-bars span {
  position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px;
  background: currentColor; transition: transform .22s ease, opacity .18s ease;
}
.nav-burger-bars span:nth-child(1) { top: 0; }
.nav-burger-bars span:nth-child(2) { top: 5px; }
.nav-burger-bars span:nth-child(3) { top: 10px; }
.nav-burger[aria-expanded="true"] .nav-burger-bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] .nav-burger-bars span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] .nav-burger-bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.nav-drawer {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--bg-850);
  max-height: calc(100vh - 74px);
  overflow-y: auto;
}
.nav-drawer-links { display: flex; flex-direction: column; padding: 6px 0 10px; }
.nav-drawer-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 22px;
  font-family: var(--font-label); font-weight: 700; font-size: 14px;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--fg-2); text-decoration: none;
  border-bottom: 1px solid var(--line-soft);
}
.nav-drawer-link:last-child { border-bottom: none; }
.nav-drawer-link:active { background: var(--bg-800); }
.nav-drawer-link.active { color: var(--crimson-bright); }
.nav-drawer-link.active::before {
  content: ""; position: absolute; left: 0; width: 3px; height: 22px;
  background: var(--crimson); border-radius: 0 2px 2px 0;
}
.nav-drawer-link { position: relative; }

.nav-scrim {
  position: fixed; inset: 0; z-index: 40;
  background: rgba(6, 6, 8, 0.6);
}

.nav-drawer-search {
  display: flex; align-items: center; gap: 9px;
  margin: 12px 16px 4px; padding: 11px 14px;
  background: var(--bg-800); border: 1px solid var(--line-strong); border-radius: 10px;
}
.nav-drawer-search input {
  flex: 1; min-width: 0; background: none; border: none; outline: none;
  color: var(--fg); font-family: var(--font-body); font-size: 15px;
}
.nav-drawer-search input::placeholder { color: var(--fg-4); }

@media (max-width: 980px) {
  .nav-burger { display: grid; }
  .nav-drawer { display: block; }
  .nav-drawer[hidden] { display: none; }
  .nav-inner { gap: 10px; }
  /* The mark is roughly square, so cap its width too. */
  .nav-logo img { height: 38px; max-width: 46px; object-fit: contain; }
  /* The search field is the widest thing in the bar and pushes the account
     controls off-screen on a phone, so it moves into the drawer. The extra
     selector beats the plain .nav-search rule that pages.css sets later. */
  .nav-inner .nav-search { display: none; }
}
@media (min-width: 981px) {
  .nav-scrim, .nav-drawer { display: none !important; }
}

/* ---------- News ticker ---------- */
.ticker {
  border-bottom: 1px solid var(--line); background: var(--bg-850);
  overflow: hidden; display: flex; align-items: stretch;
}
.ticker-tag {
  display: flex; align-items: center; gap: 8px; padding: 0 18px; flex-shrink: 0;
  background: var(--crimson); color: #fff; font-family: var(--font-label);
  font-weight: 800; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; z-index: 2;
}
.ticker-track {
  overflow: hidden; flex: 1; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.ticker-row { display: flex; gap: 0; white-space: nowrap; padding: 10px 0; }
.ticker-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 26px; }
.ticker-item-tag {
  font-family: var(--font-label); font-weight: 800; font-size: 10px;
  letter-spacing: 0.14em; color: var(--crimson-bright);
}
.ticker-item-text { font-size: 13px; color: var(--fg-2); }
.ticker-sep { width: 4px; height: 4px; border-radius: 99px; background: var(--fg-4); margin-left: 16px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-glow {
  position: absolute; top: -30%; right: -10%; width: 700px; height: 700px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, var(--crimson-tint), transparent 65%); filter: blur(20px);
}
.hero-inner { padding: 70px 40px 46px; position: relative; }
.hero-slide {
  display: none; grid-template-columns: 1fr 0.92fr; gap: 50px;
  align-items: center; min-height: 500px;
}
.hero-slide.active { display: grid; }
.hero-visual { height: 480px; }
.hero-eyebrow-row { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; }
.hero-eyebrow-rule { width: 26px; height: 2px; background: var(--crimson); }
.hero-title {
  font-size: clamp(40px, 6vw, 86px); font-weight: 800; margin: 0;
  letter-spacing: -0.03em; line-height: 0.92;
}
.hero-sub { font-size: 16px; color: var(--fg-2); margin: 16px 0 0; max-width: 440px; }
.hero-meta-row { display: flex; gap: 22px; margin-top: 24px; }
.hero-meta-item { display: flex; align-items: center; gap: 9px; }
/* wrap: the two buttons together are wider than a small phone. */
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-nick { font-family: var(--font-script); font-style: italic; color: var(--crimson-bright); font-weight: 600; }
.hero-stats-row { display: flex; gap: 26px; margin-top: 22px; }

/* Hero controls */
.hero-controls {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 38px; flex-wrap: wrap; gap: 16px;
}
.hero-controls-left { display: flex; align-items: center; gap: 16px; }
.play-btn {
  width: 40px; height: 40px; border-radius: 99px; border: 1px solid var(--line-strong);
  background: var(--bg-800); color: var(--fg); display: grid; place-items: center;
}
.hero-dots { display: flex; gap: 8px; align-items: center; }
.slide-dot {
  position: relative; height: 4px; border-radius: 99px; border: none; padding: 0;
  background: var(--bg-700); overflow: hidden; transition: width .35s; cursor: pointer; width: 18px;
}
.slide-dot.active { width: 46px; }
.slide-dot.past::after { content: ''; position: absolute; inset: 0; background: var(--crimson-dark); opacity: 0.5; }
.slide-dot.active .dot-prog { position: absolute; inset: 0; transform-origin: left; background: var(--crimson); animation: fsProg 6.5s linear forwards; }
.hero-counter { font-size: 12px; color: var(--fg-3); font-weight: 600; }
.arrow-btn {
  width: 44px; height: 44px; border-radius: 11px; border: 1px solid var(--line-strong);
  background: var(--bg-800); color: var(--fg); display: grid; place-items: center; cursor: pointer;
}

/* Versus / spotlight cards */
.versus-card {
  position: relative; display: flex; width: 100%; height: 100%;
  border-radius: 16px; overflow: hidden; border: 1px solid var(--line-strong);
}
.versus-side { position: relative; flex: 1; min-width: 0; overflow: hidden; }
.versus-side.a { clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%); }
.versus-side.b { clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%); }
.versus-side.a .versus-scrim { background: linear-gradient(270deg, transparent 40%, rgba(8,8,10,0.6) 100%); }
.versus-side.b .versus-scrim { background: linear-gradient(90deg, transparent 40%, rgba(8,8,10,0.6) 100%); }
.versus-scrim { position: absolute; inset: 0; }
.versus-label { position: absolute; bottom: 14px; }
.versus-label.a { left: 16px; }
.versus-label.b { right: 16px; text-align: right; }
.versus-vs {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center;
}
.versus-vs-text { font-size: 46px; font-weight: 800; color: #fff; text-shadow: 0 0 30px rgba(0,0,0,0.9); line-height: 1; }
.versus-vs-bar { width: 2px; height: 60px; background: linear-gradient(var(--crimson), transparent); margin-top: 4px; }
.spotlight-card {
  position: relative; width: 100%; height: 100%; border-radius: 16px;
  overflow: hidden; border: 1px solid var(--line-strong);
}
.spotlight-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8,8,10,0.92) 100%); }
.spotlight-info { position: absolute; left: 20px; right: 20px; bottom: 18px; display: flex; justify-content: space-between; align-items: flex-end; }

/* ---------- Tier badge ---------- */
.tier-badge {
  display: inline-flex; align-items: center; gap: 5px; padding: 4px 9px; border-radius: 5px;
  font-family: var(--font-label); font-weight: 800; font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap;
}
.tier-badge.sm { font-size: 9.5px; padding: 3px 7px; }
.tier-badge.goat {
  color: #1a1406; background: linear-gradient(180deg, #f1c455, #c8961f);
  box-shadow: 0 4px 14px -4px rgba(232,181,61,0.6);
}
.tier-badge.legend { color: var(--tier-legend); background: color-mix(in srgb, var(--tier-legend) 14%, transparent); border: 1px solid color-mix(in srgb, var(--tier-legend) 40%, transparent); }
.tier-badge.great  { color: var(--tier-great);  background: color-mix(in srgb, var(--tier-great)  14%, transparent); border: 1px solid color-mix(in srgb, var(--tier-great)  40%, transparent); }
.tier-badge.good   { color: var(--tier-good);   background: color-mix(in srgb, var(--tier-good)   14%, transparent); border: 1px solid color-mix(in srgb, var(--tier-good)   40%, transparent); }

/* ---------- Fighter card ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(222px, 1fr)); gap: 20px; }
.fs-card {
  position: relative; text-align: left; padding: 0; border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden; background: var(--bg-800); color: var(--fg);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s, box-shadow .3s;
  cursor: pointer; display: block; width: 100%; text-decoration: none; box-shadow: var(--shadow-card);
}
.fs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -28px rgba(0,0,0,0.95), 0 0 0 1px var(--crimson-tint);
  border-color: color-mix(in srgb, var(--crimson) 45%, var(--line-strong));
}
.fs-card-media { position: relative; }
.fs-card-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(8,8,10,0.85) 100%); }
.fs-card-toprow { position: absolute; top: 11px; left: 11px; right: 11px; display: flex; justify-content: space-between; align-items: flex-start; }
.fs-card-p4p {
  font-family: var(--font-display); font-weight: 800; font-size: 13px; color: #fff;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); border: 1px solid var(--line-strong);
  border-radius: 7px; padding: 3px 7px; letter-spacing: 0.02em;
}
.fs-card-sport {
  position: absolute; left: 11px; bottom: 11px; font-family: var(--font-label);
  font-weight: 800; font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase;
}
.fs-card-body { padding: 13px 14px 15px; }
.fs-card-nick {
  font-family: var(--font-script, var(--font-label)); color: var(--crimson-bright);
  font-style: italic; font-weight: 600; font-size: 12.5px; letter-spacing: 0.01em; margin-bottom: 2px;
}
.fs-card-name { font-size: 21px; font-weight: 700; line-height: 1.0; margin-bottom: 9px; }
.fs-card-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 9px; border-top: 1px solid var(--line); }
.fs-card-div { font-size: 11px; color: var(--fg-3); font-weight: 600; }
.fs-card-rec { font-weight: 700; letter-spacing: 0.02em; }
.fs-card-rec .ko { color: var(--fg-4); font-weight: 600; }
.fs-card-bar {
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--crimson);
  transform: scaleX(0); transform-origin: left; transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.fs-card:hover .fs-card-bar { transform: scaleX(1); }

/* ---------- Fighter photo placeholder ---------- */
.fs-photo-wrap { position: relative; width: 100%; overflow: hidden; aspect-ratio: 3 / 4; }
.fs-photo-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.fs-photo-initials {
  font-size: clamp(70px, 18vw, 150px); font-weight: 800; color: #fff; opacity: 0.05;
  letter-spacing: -0.04em; pointer-events: none; font-family: var(--font-display);
}

/* ---------- CTA buttons ---------- */
.cta-btn {
  display: inline-flex; align-items: center; gap: 9px; padding: 13px 22px; border-radius: 10px;
  font-family: var(--font-label); font-weight: 700; font-size: 13px; letter-spacing: 0.05em;
  text-transform: uppercase; transition: all .22s; white-space: nowrap; text-decoration: none; cursor: pointer;
}
.cta-btn.primary { border: none; background: var(--crimson); color: #fff; box-shadow: 0 8px 22px -12px var(--crimson-glow); }
.cta-btn.primary:hover { background: var(--crimson-bright); box-shadow: 0 14px 30px -10px var(--crimson-glow); transform: translateY(-1px); }
.cta-btn.secondary { border: 1px solid var(--line-strong); background: transparent; color: var(--fg); }
.cta-btn.secondary:hover { background: var(--bg-700); transform: translateY(-1px); }
/* Destructive actions: outlined until hover, so they never read as the
   primary path — the filled state is the confirmation, not the invitation. */
.cta-btn.danger {
  border: 1px solid color-mix(in srgb, var(--crimson) 55%, transparent);
  background: color-mix(in srgb, var(--crimson) 10%, transparent);
  color: var(--crimson-bright);
}
.cta-btn.danger:hover { background: var(--crimson); color: #fff; transform: translateY(-1px); }

/* Danger zone block (account deletion) */
.acct-danger {
  border: 1px solid color-mix(in srgb, var(--crimson) 30%, var(--line));
  background: color-mix(in srgb, var(--crimson) 5%, transparent);
  border-radius: 11px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.acct-danger-lead {
  margin: 0;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson-bright);
}
.acct-danger-note { margin: 0; font-size: 13.5px; color: var(--fg-2); line-height: 1.6; }
.acct-danger-list { margin: 0; padding-left: 18px; font-size: 13.5px; color: var(--fg-2); line-height: 1.65; }
.acct-danger-list li + li { margin-top: 5px; }

/* ---------- Section heading ---------- */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 22px; margin-bottom: 26px; }
.section-eyebrow-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.section-eyebrow-rule { width: 30px; height: 3px; }
.section-title { font-size: clamp(38px, 4.6vw, 60px); font-weight: 800; margin: 0; letter-spacing: -0.03em; line-height: 1; white-space: nowrap; }
.section-subtitle { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.section-subtitle h3 { font-size: 22px; font-weight: 700; margin: 0; letter-spacing: -0.015em; }
.divider { padding: 0 40px; }
.divider-line { height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }

/* ---------- Tier filter chips ---------- */
.tier-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.tier-chip {
  padding: 8px 14px; border-radius: 9px; font-family: var(--font-label); font-weight: 700;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  border: 1px solid var(--line); background: var(--bg-850); color: var(--fg-3); transition: all .2s;
}
.tier-chip.active-all    { border-color: color-mix(in srgb, var(--fg) 55%, transparent);          background: color-mix(in srgb, var(--fg) 14%, var(--bg-800));          color: var(--fg); }
.tier-chip.active-goat   { border-color: color-mix(in srgb, var(--tier-goat) 55%, transparent);   background: color-mix(in srgb, var(--tier-goat) 14%, var(--bg-800));   color: var(--tier-goat); }
.tier-chip.active-legend { border-color: color-mix(in srgb, var(--tier-legend) 55%, transparent); background: color-mix(in srgb, var(--tier-legend) 14%, var(--bg-800)); color: var(--tier-legend); }
.tier-chip.active-great  { border-color: color-mix(in srgb, var(--tier-great) 55%, transparent);  background: color-mix(in srgb, var(--tier-great) 14%, var(--bg-800));  color: var(--tier-great); }
.tier-chip.active-good    { border-color: color-mix(in srgb, var(--tier-good) 55%, transparent);   background: color-mix(in srgb, var(--tier-good) 14%, var(--bg-800));   color: var(--tier-good); }

/* ---------- Stat bar ---------- */
.stat-row { display: flex; align-items: center; gap: 12px; }
.stat-label { width: 78px; font-family: var(--font-label); font-weight: 700; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-3); }
.stat-bar-track { flex: 1; height: 6px; border-radius: 99px; background: var(--bg-700); overflow: hidden; }
.stat-bar-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--crimson-dark), var(--crimson-bright)); }
.stat-val { width: 26px; text-align: right; font-weight: 700; font-size: 12.5px; color: var(--fg); }

/* ---------- Profile ---------- */
.profile-crumb { padding: 18px 40px 0; }
.crumb-link {
  display: inline-flex; align-items: center; gap: 8px; background: none; border: none; color: var(--fg-3);
  font-family: var(--font-label); font-weight: 700; font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none; transition: color .2s;
}
.crumb-link:hover { color: var(--fg); }
.profile-hero { position: relative; overflow: hidden; }
.profile-hero-inner { padding: 30px 40px 50px; position: relative; display: grid; grid-template-columns: 440px 1fr; gap: 50px; align-items: stretch; }
.profile-photo { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid var(--line-strong); box-shadow: var(--shadow-pop); }
.profile-photo-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,8,10,0.85)); }
.profile-badges { position: absolute; top: 16px; left: 16px; display: flex; gap: 8px; }
.profile-sport-chip {
  font-family: var(--font-label); font-weight: 800; font-size: 9.5px; letter-spacing: 0.16em;
  text-transform: uppercase; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  border: 1px solid var(--line-strong); border-radius: 6px; padding: 5px 9px;
  display: inline-flex; align-items: center;
}
.profile-photo-foot { position: absolute; bottom: 16px; left: 18px; right: 18px; display: flex; justify-content: space-between; align-items: flex-end; }
.country-chip { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-label); font-weight: 700; font-size: 11px; letter-spacing: 0.1em; color: var(--fg-2); text-transform: uppercase; }
.country-flag { width: 18px; height: 12px; border-radius: 2px; background: var(--bg-700); border: 1px solid var(--line-strong); display: inline-flex; align-items: center; justify-content: center; font-size: 7px; color: var(--fg-3); }
.profile-info { display: flex; flex-direction: column; justify-content: center; }
.profile-nick { font-family: var(--font-script); font-style: italic; color: var(--crimson-bright); font-weight: 600; font-size: 26px; margin-bottom: 6px; }
.profile-name { font-size: clamp(52px, 7vw, 96px); font-weight: 800; margin: 0; letter-spacing: -0.035em; line-height: 0.86; }
.profile-tags { display: flex; align-items: center; gap: 14px; margin-top: 18px; flex-wrap: wrap; }
.profile-tag { font-family: var(--font-label); font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-2); }
.profile-tag-dot { width: 4px; height: 4px; border-radius: 99px; background: var(--fg-4); }
.profile-bigstats { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 32px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.bigstat { text-align: center; }
.bigstat-val { font-size: 44px; font-weight: 800; line-height: 1; }
.bigstat-val.accent { color: var(--crimson); }
.profile-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.profile-body { padding: 10px 40px 30px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.vitals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 26px; }
.vital-card { padding: 14px 16px; border-radius: 11px; background: var(--bg-800); border: 1px solid var(--line); }
.titles-row { display: flex; flex-wrap: wrap; gap: 10px; }
.title-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 15px; border-radius: 10px;
  background: color-mix(in srgb, var(--tier-goat) 12%, var(--bg-800));
  border: 1px solid color-mix(in srgb, var(--tier-goat) 35%, transparent); color: var(--tier-goat);
  font-family: var(--font-label); font-weight: 700; font-size: 12.5px; letter-spacing: 0.06em;
}

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-850); margin-top: 30px; }
.footer-inner { padding: 54px 40px 30px; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
.footer-brand { max-width: 320px; }
.footer-brand img { height: 48px; width: auto; display: block; }
.footer-brand p { font-size: 13.5px; color: var(--fg-3); margin-top: 16px; line-height: 1.6; }
.footer-col-links { display: flex; flex-direction: column; gap: 11px; }
.footer-link { font-size: 13.5px; color: var(--fg-2); text-decoration: none; transition: color .2s; }
.footer-link:hover { color: var(--crimson-bright); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); }
.footer-fine { font-size: 12px; color: var(--fg-4); }
