:root {
  color-scheme: dark;
  --bg: #050812;
  --bg-2: #09111f;
  --panel: rgba(12, 20, 34, 0.74);
  --panel-strong: rgba(17, 29, 49, 0.92);
  --line: rgba(158, 186, 230, 0.18);
  --line-strong: rgba(72, 180, 255, 0.36);
  --text: #f7fbff;
  --muted: #aebbd0;
  --cyan: #34d8ff;
  --red: #e2273f;
  --gold: #f8bf4c;
  --white: #ffffff;
  --green: #58e5a2;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% -10%, rgba(52, 216, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 82% 4%, rgba(226, 39, 63, 0.15), transparent 24rem),
    linear-gradient(180deg, #07101f 0%, var(--bg) 48%, #03050a 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.09;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0 1px, transparent 1.4px);
  background-size: 5px 5px;
}

a {
  color: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: var(--gold);
  color: #080b10;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 18, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo-shell {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0.22rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 24px rgba(52, 216, 255, 0.2);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.7rem, 3vw, 1.8rem);
}

.site-nav a,
.site-footer nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--white);
}

.nav-cta,
.button,
.contact-link,
.icon-button {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.78rem 1rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
}

.nav-cta,
.primary,
.primary-link {
  border-color: rgba(248, 191, 76, 0.65);
  background: linear-gradient(135deg, var(--gold), #ffe39a);
  color: #111015;
  box-shadow: 0 14px 34px rgba(248, 191, 76, 0.22);
}

.secondary,
.icon-button {
  background: rgba(255, 255, 255, 0.055);
}

.nav-cta:hover,
.button:hover,
.contact-link:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.88fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: calc(100svh - 5rem);
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem) 2rem;
}

.hero::before {
  content: "";
  position: absolute;
  left: clamp(1rem, 4vw, 3rem);
  right: clamp(1rem, 4vw, 3rem);
  bottom: 1.2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--red), transparent);
  opacity: 0.58;
}

.eyebrow {
  margin: 0 0 0.72rem;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 8ch;
  margin-bottom: 1rem;
  font-size: clamp(4.8rem, 15vw, 10.5rem);
  line-height: 0.82;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 0.55rem;
}

.hero-kicker {
  max-width: 42rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.08;
}

.hero-text,
.register-copy p,
.timeline p,
.reason-grid p {
  color: #dce6f7;
  line-height: 1.7;
}

.hero-text {
  max-width: 44rem;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.authority-panel {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  max-width: min(100%, 38rem);
  margin-bottom: 1.15rem;
  border: 1px solid rgba(248, 191, 76, 0.42);
  border-radius: 8px;
  padding: 0.72rem 0.82rem;
  background:
    linear-gradient(135deg, rgba(248, 191, 76, 0.12), rgba(52, 216, 255, 0.08)),
    rgba(6, 12, 24, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.authority-mark {
  display: grid;
  flex: 0 0 auto;
  width: 3.6rem;
  height: 3.6rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(248, 191, 76, 0.24), rgba(226, 39, 63, 0.16)),
    #08101d;
  color: var(--gold);
  font-weight: 900;
}

.authority-panel strong,
.authority-panel small {
  display: block;
}

.authority-panel strong {
  color: var(--white);
  line-height: 1.2;
}

.authority-panel small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.microcopy {
  color: var(--gold);
  font-weight: 800;
}

.hero-actions,
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-stage {
  position: relative;
  margin: 0;
}

.hero-art {
  overflow: hidden;
  aspect-ratio: 16 / 11.6;
  border: 1px solid rgba(70, 211, 255, 0.3);
  border-radius: 8px;
  background: #030712;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    0 0 48px rgba(23, 96, 255, 0.2);
}

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

.quick-cards span,
.dashboard-card span,
.stat-pill small,
.muted,
.section-note,
.disclaimer {
  color: var(--muted);
}

.quick-cards,
.reason-grid,
.dashboard-grid,
.player-grid {
  display: grid;
  gap: 1rem;
}

.quick-cards {
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(1rem, 4vw, 3rem) clamp(3rem, 5vw, 5rem);
}

.quick-cards article,
.reason-grid article,
.dashboard-card,
.player-card,
.podium-card,
.contact-panel,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(20, 34, 56, 0.76), rgba(9, 16, 29, 0.76));
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.quick-cards article {
  padding: 1rem;
}

.quick-cards strong,
.quick-cards span {
  display: block;
}

.quick-cards strong {
  margin: 0.2rem 0 0.5rem;
}

.quick-cards p,
.section-note,
.dashboard-card small {
  margin: 0;
}

.section,
.dashboard-band {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem);
}

.section-heading {
  max-width: 68rem;
  margin-bottom: 1.5rem;
}

.board-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: none;
}

.reason-grid {
  grid-template-columns: repeat(4, 1fr);
}

.reason-grid article {
  padding: 1.15rem;
}

.icon-mark {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: rgba(52, 216, 255, 0.12);
  color: var(--cyan);
  font-weight: 900;
}

.timeline-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.timeline li {
  padding: 1.15rem;
  background: rgba(6, 12, 24, 0.94);
}

.timeline span {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--gold);
  font-weight: 900;
}

.timeline p {
  margin: 0;
}

.points-section {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(8, 16, 29, 0.28), rgba(255, 255, 255, 0.012)),
    radial-gradient(circle at 82% 28%, rgba(248, 191, 76, 0.12), transparent 20rem);
}

.points-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.48fr);
  gap: 1.5rem;
  align-items: end;
  max-width: none;
}

.points-illustration {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1.25fr) auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: stretch;
}

.score-card {
  position: relative;
  min-height: 12rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(18, 31, 52, 0.92), rgba(6, 10, 18, 0.96));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.25);
}

.score-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px);
}

.score-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--cyan);
}

.attendance-card::after,
.finish-card::after {
  background: var(--gold);
}

.win-card::after {
  background: var(--green);
}

.total-card::after {
  background: var(--red);
}

.score-label {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.score-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 1.15rem 0 0.45rem;
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.88;
}

.score-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #dce6f7;
}

.formula-mark {
  display: grid;
  min-width: 2.4rem;
  place-items: center;
  color: var(--gold);
  font-size: 2rem;
  font-weight: 900;
}

.formula-mark.equals {
  color: var(--cyan);
}

.bonus-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.bonus-stack span {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.72rem 0.78rem;
  background: rgba(255, 255, 255, 0.045);
}

.points-example {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 12, 24, 0.82);
}

.points-example {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

.points-example strong,
.points-example p {
  margin: 0;
}

.points-example p {
  color: #dce6f7;
}

.points-example b {
  color: var(--gold);
}

.example-tag {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-band {
  display: grid;
  grid-template-columns: minmax(18rem, 0.38fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.dashboard-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dashboard-card {
  position: relative;
  min-height: 9.25rem;
  overflow: hidden;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(18, 31, 52, 0.88), rgba(6, 10, 18, 0.96)),
    var(--panel);
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 36%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px);
}

.dashboard-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--cyan);
}

.dashboard-gold::after {
  background: var(--gold);
}

.dashboard-red::after {
  background: var(--red);
}

.dashboard-green::after {
  background: var(--green);
}

.dashboard-card span,
.dashboard-card small,
.stat-pill small {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 0.78rem;
}

.dashboard-card strong {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 3.3rem;
  margin: 0.7rem 0;
  color: var(--white);
  font-size: clamp(1.15rem, 1.45vw, 1.7rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.toolbar input {
  width: min(18rem, 100%);
  min-height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  background: rgba(7, 13, 24, 0.9);
  color: var(--text);
  font: inherit;
}

.icon-button {
  cursor: pointer;
  font: inherit;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.share-button {
  min-height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.72rem 0.8rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.share-button:hover,
.share-button:focus-visible {
  transform: translateY(-1px);
}

.share-whatsapp {
  border-color: rgba(88, 229, 162, 0.42);
  color: #dfffee;
  background: rgba(88, 229, 162, 0.1);
}

.share-facebook {
  border-color: rgba(52, 216, 255, 0.42);
  color: #d8f7ff;
  background: rgba(52, 216, 255, 0.1);
}

.share-native {
  border-color: rgba(248, 191, 76, 0.45);
  color: #ffe7a7;
  background: rgba(248, 191, 76, 0.1);
}

.profile-share-actions {
  margin-top: 1rem;
}

.podium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-bottom: 1.15rem;
}

.podium-card {
  position: relative;
  min-height: 16.5rem;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(11rem, 1fr) auto;
  background:
    linear-gradient(180deg, rgba(18, 31, 52, 0.92), rgba(6, 10, 18, 0.98)),
    var(--panel);
  box-shadow: 0 1.1rem 3rem rgba(0, 0, 0, 0.24);
}

.podium-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--line-strong);
}

.podium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 28%, transparent 70%, rgba(255, 255, 255, 0.06));
  pointer-events: none;
  z-index: 2;
}

.rank-1::after {
  background: var(--gold);
}

.rank-2::after {
  background: var(--cyan);
}

.rank-3::after {
  background: var(--red);
}

.podium-rank {
  color: var(--gold);
  font-weight: 900;
}

.rank-2 .podium-rank {
  color: var(--cyan);
}

.rank-3 .podium-rank {
  color: var(--red);
}

.podium-photo-frame {
  position: relative;
  min-height: 11rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.podium-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(6, 10, 18, 0.86)),
    linear-gradient(90deg, rgba(6, 10, 18, 0.24), transparent 48%, rgba(6, 10, 18, 0.2));
}

.podium-photo {
  width: 100%;
  height: 100%;
  min-height: 11rem;
  display: block;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(1.08) contrast(1.04);
}

.podium-photo.player-initial {
  display: grid;
  place-items: center;
  min-height: 11rem;
  border-radius: 0;
  font-size: 4rem;
}

.podium-content {
  position: relative;
  z-index: 3;
  padding: 1rem 1.05rem 1.2rem;
  display: grid;
  gap: 0.35rem;
}

.podium-content h3,
.podium-content p {
  margin: 0;
}

.podium-card strong {
  color: var(--white);
  font-size: 1.5rem;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 12, 24, 0.86);
}

table {
  width: 100%;
  min-width: 72rem;
  border-collapse: collapse;
}

th,
td {
  padding: 0.92rem 0.8rem;
  border-bottom: 1px solid rgba(158, 186, 230, 0.12);
  text-align: left;
  white-space: nowrap;
}

th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #0b1424;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

tbody tr {
  cursor: pointer;
}

tbody tr:hover,
tbody tr:focus,
.player-card:hover,
.player-card:focus,
.podium-card:hover,
.podium-card:focus {
  background: rgba(52, 216, 255, 0.08);
  outline: 1px solid rgba(52, 216, 255, 0.35);
}

.rank {
  color: var(--gold);
  font-weight: 900;
}

.top-1 td:first-child {
  box-shadow: inset 4px 0 0 var(--gold);
}

.top-2 td:first-child {
  box-shadow: inset 4px 0 0 var(--cyan);
}

.top-3 td:first-child {
  box-shadow: inset 4px 0 0 var(--red);
}

.empty-cell,
.empty-state {
  padding: 1.5rem;
  color: var(--muted);
}

.player-grid {
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.player-card {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  cursor: pointer;
}

.player-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: transparent;
}

.player-card.rank-1 {
  border-color: rgba(248, 191, 76, 0.7);
  background:
    linear-gradient(180deg, rgba(58, 44, 18, 0.68), rgba(10, 16, 29, 0.88)),
    var(--panel);
  box-shadow: 0 18px 54px rgba(248, 191, 76, 0.13), 0 16px 50px rgba(0, 0, 0, 0.22);
}

.player-card.rank-2 {
  border-color: rgba(219, 229, 242, 0.58);
  background:
    linear-gradient(180deg, rgba(42, 48, 60, 0.72), rgba(10, 16, 29, 0.88)),
    var(--panel);
  box-shadow: 0 18px 54px rgba(219, 229, 242, 0.09), 0 16px 50px rgba(0, 0, 0, 0.22);
}

.player-card.rank-3 {
  border-color: rgba(205, 127, 50, 0.68);
  background:
    linear-gradient(180deg, rgba(70, 38, 24, 0.7), rgba(10, 16, 29, 0.88)),
    var(--panel);
  box-shadow: 0 18px 54px rgba(205, 127, 50, 0.12), 0 16px 50px rgba(0, 0, 0, 0.22);
}

.player-card.rank-1::after {
  background: var(--gold);
}

.player-card.rank-2::after {
  background: #dbe5f2;
}

.player-card.rank-3::after {
  background: #cd7f32;
}

.player-card.rank-1 .badge {
  border-color: rgba(248, 191, 76, 0.68);
  background: rgba(248, 191, 76, 0.13);
  color: #ffe39a;
}

.player-card.rank-2 .badge {
  border-color: rgba(219, 229, 242, 0.62);
  background: rgba(219, 229, 242, 0.1);
  color: #f1f6ff;
}

.player-card.rank-3 .badge {
  border-color: rgba(205, 127, 50, 0.72);
  background: rgba(205, 127, 50, 0.12);
  color: #ffc28a;
}

.player-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.player-initial {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(52, 216, 255, 0.2), rgba(248, 191, 76, 0.2));
  color: var(--white);
  font-weight: 900;
}

.player-avatar {
  width: 4.2rem;
  height: 4.2rem;
  border: 1px solid rgba(70, 211, 255, 0.4);
  border-radius: 8px;
  object-fit: cover;
  object-position: center 38%;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28), 0 0 24px rgba(23, 96, 255, 0.18);
}

.badge {
  border: 1px solid rgba(248, 191, 76, 0.3);
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.stat-row,
.profile-stats {
  display: grid;
  gap: 0.55rem;
}

.stat-row {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1rem;
}

.stat-pill {
  min-width: 0;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.stat-pill strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--white);
}

.register-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  gap: 2rem;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 20%, rgba(226, 39, 63, 0.18), transparent 20rem),
    rgba(255, 255, 255, 0.018);
}

.required-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  margin: 1.1rem 0;
  list-style: none;
}

.required-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
}

.registration-note {
  color: var(--gold);
  font-weight: 800;
}

.contact-panel {
  position: relative;
  display: grid;
  gap: 0.95rem;
  overflow: hidden;
  border: 1px solid rgba(70, 211, 255, 0.2);
  border-radius: 8px;
  padding: clamp(1rem, 2vw, 1.35rem);
  background:
    linear-gradient(135deg, rgba(13, 25, 43, 0.96), rgba(5, 12, 23, 0.96)),
    radial-gradient(circle at 100% 0%, rgba(70, 211, 255, 0.16), transparent 14rem);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, 0.08) 45%, transparent 56%),
    repeating-linear-gradient(90deg, rgba(70, 211, 255, 0.055) 0 1px, transparent 1px 24px);
  opacity: 0.35;
}

.contact-link {
  position: relative;
  isolation: isolate;
  justify-content: space-between;
  min-height: 4.05rem;
  padding: 1rem 1.15rem;
  font-size: clamp(1rem, 2vw, 1.16rem);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-link.primary-link {
  border-color: rgba(255, 229, 159, 0.9);
  background:
    linear-gradient(135deg, #ffd66a 0%, #f8b92f 42%, #ff8a1c 100%);
  color: #08101d;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow:
    0 18px 44px rgba(248, 191, 76, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.contact-link.primary-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent 28% 72%, rgba(255, 255, 255, 0.18)),
    repeating-linear-gradient(135deg, rgba(8, 16, 29, 0.12) 0 2px, transparent 2px 9px);
  opacity: 0.7;
}

.contact-link.primary-link::after {
  content: ">";
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-left: 0.85rem;
  border-radius: 999px;
  background: #08101d;
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
  box-shadow: 0 0 24px rgba(70, 211, 255, 0.35);
  transition: transform 160ms ease;
}

.contact-link.primary-link:hover,
.contact-link.primary-link:focus-visible {
  border-color: #ffffff;
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 24px 58px rgba(248, 191, 76, 0.42),
    0 0 34px rgba(70, 211, 255, 0.22);
}

.contact-link.primary-link:hover::after,
.contact-link.primary-link:focus-visible::after {
  transform: translateX(0.25rem);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  padding: 0.95rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 900;
}

.faq-list p {
  margin: 0.75rem 0 0;
  color: #dce6f7;
  line-height: 1.6;
}

.profile-dialog {
  width: min(44rem, calc(100vw - 2rem));
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 1.25rem;
  background: #08101d;
  color: var(--text);
  box-shadow: var(--shadow);
}

.profile-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(8rem, 14rem) 1fr;
  gap: 1.25rem;
  align-items: end;
  margin-bottom: 1rem;
}

.profile-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(70, 211, 255, 0.35);
  border-radius: 8px;
  object-fit: cover;
  object-position: center 35%;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.42), 0 0 36px rgba(23, 96, 255, 0.2);
}

.close-button {
  float: right;
  min-height: 2.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font: inherit;
  cursor: pointer;
}

.profile-stats {
  grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
  margin-top: 1rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 2rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  color: var(--muted);
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin-bottom: 0.45rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.disclaimer {
  grid-column: 1 / -1;
  max-width: 56rem;
}

.skeleton-line,
.skeleton span {
  display: block;
  min-height: 3.2rem;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
  background-size: 200% 100%;
  animation: shimmer 1.3s infinite;
}

.skeleton {
  min-height: 9rem;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1100px) {
  .quick-cards,
  .reason-grid,
  .timeline,
  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-band {
    grid-template-columns: 1fr;
  }

  .points-heading,
  .points-illustration {
    grid-template-columns: 1fr;
  }

  .formula-mark {
    min-height: 1.5rem;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .site-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .nav-cta {
    width: 100%;
  }

  .hero,
  .register-section,
  .podium-grid {
    grid-template-columns: 1fr;
  }

  .podium-card {
    min-height: 13.5rem;
    grid-template-columns: minmax(7.5rem, 38%) 1fr;
    grid-template-rows: 1fr;
  }

  .podium-photo-frame,
  .podium-photo,
  .podium-photo.player-initial {
    min-height: 13.5rem;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(4rem, 23vw, 6.4rem);
  }

  .board-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .toolbar input,
  .icon-button {
    width: 100%;
  }

  .share-actions,
  .share-button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .profile-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .profile-photo {
    max-width: 16rem;
  }

  .points-example {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .quick-cards,
  .reason-grid,
  .timeline,
  .dashboard-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .hero-art {
    aspect-ratio: 4 / 3;
  }

  .authority-panel {
    align-items: flex-start;
    width: 100%;
  }
}
