:root {
  color-scheme: light;
  --navy: #18345f;
  --navy-2: #0f274a;
  --sky: #6ba9d9;
  --sky-soft: #d9ecfa;
  --turf: #1f7a55;
  --turf-dark: #13543c;
  --gold: #f0b84c;
  --ink: #142033;
  --muted: #66758a;
  --line: #dce5ef;
  --surface: #ffffff;
  --surface-soft: #f5f8fb;
  --danger: #74201c;
  --shadow: 0 16px 44px rgba(15, 39, 74, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface-soft);
}

body.locked {
  min-height: 100vh;
  background:
    linear-gradient(rgba(15, 39, 74, 0.88), rgba(15, 39, 74, 0.94)),
    repeating-linear-gradient(90deg, #1f7a55 0, #1f7a55 68px, #237f5c 68px, #237f5c 136px);
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.locked-screen {
  display: none;
}

body.locked .locked-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.locked-panel {
  width: min(520px, 100%);
  color: #ffffff;
  text-align: center;
  padding: 32px;
  background: rgba(15, 39, 74, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.locked-logo {
  width: 88px;
  height: auto;
  margin-bottom: 18px;
}

.locked-panel h1 {
  margin: 8px 0 12px;
  font-size: 2rem;
  line-height: 1.08;
}

.locked-panel p {
  margin: 0 auto;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.site-shell {
  display: block;
}

body.locked .site-shell {
  display: none;
}

.admin-only {
  display: none !important;
}

body.is-admin .share-actions.admin-only {
  display: flex !important;
}

body.is-admin .summary-panel.admin-only {
  display: grid !important;
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  min-height: 640px;
  padding: 22px 0 72px;
  background:
    radial-gradient(circle at 72% 28%, rgba(240, 184, 76, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(24, 52, 95, 0.92), rgba(15, 39, 74, 0.88)),
    repeating-linear-gradient(90deg, #1f7a55 0, #1f7a55 82px, #227f5a 82px, #227f5a 164px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -22% -12%;
  height: 310px;
  border-top: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50% 50% 0 0;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.34) 50%, transparent 50.2%),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 100% 100%, 100% 92px;
  pointer-events: none;
}

.topbar {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.club-logo {
  width: 78px;
  height: auto;
  display: block;
}

.share-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ghost-button,
.primary-button,
.secondary-button,
.row-button,
.secondary-action,
.danger-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0 16px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.ghost-button {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.ghost-button:hover,
.primary-button:hover,
.secondary-button:hover,
.row-button:hover,
.secondary-action:hover,
.danger-action:hover {
  transform: translateY(-1px);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 100px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 48px;
  align-items: end;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.86rem;
}

.hero h1 {
  margin: 0;
  font-size: 4.2rem;
  line-height: 0.98;
}

.hero-lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.22rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-button {
  background: var(--gold);
  color: #1d2430;
  border-color: var(--gold);
  font-weight: 800;
}

.secondary-button {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.event-board {
  display: grid;
  gap: 12px;
}

.event-board div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.event-board span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.event-board strong {
  display: block;
  font-size: 1.08rem;
}

.info-band {
  background: var(--surface);
  padding: 58px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.copy-block h2,
.signup-heading h2 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.12;
  color: var(--navy-2);
}

.copy-block p:not(.eyebrow),
.signup-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.04rem;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.timeline-time {
  color: var(--turf-dark);
  font-weight: 900;
}

.timeline h3 {
  margin: 0 0 6px;
  color: var(--navy);
}

.timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.signup-section {
  padding: 58px 0 70px;
}

.signup-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.search-field {
  display: grid;
  gap: 8px;
  min-width: 280px;
  color: var(--navy);
  font-weight: 800;
}

.search-field input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
}

.search-field input:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(107, 169, 217, 0.18);
}

.summary-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.public-summary {
  margin: 0 0 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef6fb;
}

.public-summary-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 14px;
}

.public-summary-heading h3 {
  margin: 0;
  color: var(--navy-2);
  font-size: 1.45rem;
}

.public-summary-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.public-summary-grid {
  margin-bottom: 0;
}

.stat-card {
  min-height: 92px;
  padding: 16px;
  display: grid;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.stat-card span {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
}

.stat-card strong {
  color: var(--navy-2);
  font-size: 2rem;
  line-height: 1;
}

.admin-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.secondary-action {
  background: #ffffff;
  border-color: var(--line);
  color: var(--navy);
  font-weight: 800;
}

.danger-action {
  background: #fff6f5;
  border-color: #f2cbc7;
  color: var(--danger);
  font-weight: 800;
}

.player-table {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.player-header,
.player-row {
  display: grid;
  grid-template-columns: minmax(170px, 1.1fr) 132px 180px minmax(300px, 1.45fr) 156px 148px;
  gap: 12px;
  align-items: center;
}

.player-header {
  padding: 14px 18px;
  background: #edf4fa;
  color: var(--navy);
  font-weight: 900;
  font-size: 0.9rem;
}

.player-rows {
  display: grid;
}

.player-row {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}

.player-row.is-dirty {
  background: #fffaf0;
}

.player-row[hidden] {
  display: none;
}

.player-name {
  margin: 0;
  font-size: 1.02rem;
  color: var(--danger);
}

.check-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  color: var(--ink);
}

.check-control input {
  width: 20px;
  height: 20px;
  accent-color: var(--turf);
}

.switch-control {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  color: var(--ink);
}

.switch-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.switch-track {
  position: relative;
  width: 44px;
  height: 26px;
  flex: 0 0 auto;
  border: 1px solid #c4d2e1;
  border-radius: 999px;
  background: #d7e1ec;
  transition: background 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.switch-track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(20, 32, 51, 0.24);
  transition: transform 140ms ease;
}

.switch-control input:checked + .switch-track {
  background: var(--turf);
  border-color: var(--turf);
}

.switch-control input:checked + .switch-track::after {
  transform: translateX(18px);
}

.switch-control input:focus-visible + .switch-track {
  box-shadow: 0 0 0 4px rgba(107, 169, 217, 0.24);
}

.child-fields {
  min-height: 42px;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.94rem;
}

.child-fields.is-open {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.child-fields .child-input {
  display: none;
}

.child-fields.is-open .child-input {
  display: block;
}

.child-fields.is-open .child-fields-empty {
  display: none;
}

.child-input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: #ffffff;
  outline: none;
}

.child-input:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(107, 169, 217, 0.18);
}

.row-actions {
  display: grid;
  gap: 8px;
}

.row-button {
  width: 100%;
  background: var(--navy);
  color: #ffffff;
  font-weight: 800;
}

.copy-row-button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--navy);
  cursor: pointer;
}

.row-status {
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.player-row.is-dirty .row-status {
  color: #9b5b07;
  font-weight: 800;
}

.no-results {
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

.site-footer {
  padding: 26px 0;
  background: var(--navy-2);
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p {
  margin: 0;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 20;
  transform: translate(-50%, 24px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--navy-2);
  color: #ffffff;
  box-shadow: var(--shadow);
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.marketing-page {
  background: #f4f7fb;
}

.share-home-hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: #ffffff;
  background: #17365f;
  isolation: isolate;
}

.share-home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: #f4f7fb;
  clip-path: polygon(0 45%, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}

.share-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

.share-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.54;
}

.scene-list,
.scene-message {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(6, 21, 45, 0.28);
  backdrop-filter: blur(18px);
}

.scene-list {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.scene-list-main {
  top: 132px;
  right: max(24px, calc((100vw - 1180px) / 2));
  width: min(420px, 42vw);
  min-height: 250px;
}

.scene-list-side {
  right: max(52px, calc((100vw - 1180px) / 2 + 100px));
  bottom: 112px;
  width: min(260px, 30vw);
}

.scene-label {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.scene-list strong {
  font-size: 1.55rem;
}

.scene-line {
  width: 68%;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.scene-line-wide {
  width: 90%;
}

.scene-pill {
  width: max-content;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 900;
}

.scene-pill-green {
  color: #073927;
  background: #75d7a6;
}

.scene-dot-row {
  display: flex;
  gap: 8px;
}

.scene-dot-row i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f4bf5f;
}

.scene-message {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  font-weight: 900;
}

.scene-message-one {
  left: max(28px, calc((100vw - 1180px) / 2 + 500px));
  top: 290px;
  color: #112033;
  background: #f4bf5f;
}

.scene-message-two {
  right: max(160px, calc((100vw - 1180px) / 2 + 290px));
  top: 410px;
  background: rgba(34, 160, 107, 0.9);
}

.scene-route {
  position: absolute;
  right: 14%;
  top: 42%;
  width: 360px;
  height: 160px;
  border: 2px solid rgba(244, 191, 95, 0.72);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 36px 0 0;
}

.share-nav {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.share-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-size: 1.22rem;
  font-weight: 950;
}

.share-brand::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background:
    linear-gradient(#f4bf5f 0 0) 8px 10px / 18px 5px no-repeat,
    linear-gradient(#22a06b 0 0) 8px 19px / 12px 5px no-repeat,
    #ffffff;
}

.share-nav-links,
.admin-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.share-nav-links a,
.admin-nav a,
.admin-nav button {
  color: inherit;
  text-decoration: none;
  font-weight: 800;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.share-hero-copy {
  width: min(1180px, calc(100% - 32px));
  margin: 120px auto 0;
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.share-hero-copy h1 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 8.6rem);
  line-height: 0.86;
}

.share-hero-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.24rem;
  line-height: 1.62;
}

.market-band {
  padding: 74px 0;
}

.market-band-light {
  background: #f4f7fb;
}

.market-heading {
  max-width: 720px;
}

.market-heading h2,
.market-cta h2,
.workflow-grid h2,
.admin-dashboard h1,
.admin-login h1 {
  margin: 0;
  color: var(--navy-2);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.market-heading p,
.market-cta p:not(.eyebrow),
.admin-login p,
.dashboard-heading p,
.panel-heading p {
  color: var(--muted);
  line-height: 1.65;
}

.use-case-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.use-case-card {
  min-height: 210px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  display: grid;
  align-content: space-between;
}

.use-case-card span {
  color: var(--turf);
  font-weight: 950;
}

.use-case-card h3 {
  margin: 20px 0 8px;
  color: var(--navy);
  font-size: 1.25rem;
}

.use-case-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.market-band-split {
  background: #ffffff;
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
}

.workflow-steps {
  display: grid;
  gap: 12px;
}

.workflow-steps article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--navy);
  font-weight: 850;
}

.workflow-steps strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #1d2430;
}

.market-cta {
  padding: 84px 0;
  background: #17365f;
  color: #ffffff;
}

.market-cta-inner {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.market-cta h2 {
  max-width: 760px;
  color: #ffffff;
}

.admin-page {
  min-height: 100vh;
  background: #edf2f7;
}

.admin-top {
  min-height: 74px;
  padding: 0 max(18px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #ffffff;
  background: var(--navy-2);
}

.admin-nav button {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
}

.admin-main {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 70px;
}

.admin-login {
  width: min(520px, 100%);
  margin: 8vh auto 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.admin-form {
  display: grid;
  gap: 14px;
}

.admin-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 850;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  outline: none;
}

.admin-form textarea {
  resize: vertical;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(107, 169, 217, 0.18);
}

.dashboard-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 20px;
}

.admin-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.admin-kpis article,
.result-stats article {
  min-height: 92px;
  padding: 16px;
  display: grid;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.admin-kpis span,
.result-stats span {
  color: var(--muted);
  font-weight: 850;
}

.admin-kpis strong,
.result-stats strong {
  color: var(--navy-2);
  font-size: 2rem;
  line-height: 1;
}

.admin-workspace {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 310px;
  gap: 14px;
  align-items: start;
}

.admin-panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 39, 74, 0.08);
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  margin-bottom: 14px;
}

.panel-heading h2,
.create-panel h2 {
  margin: 0;
  color: var(--navy-2);
}

.panel-heading p {
  margin: 5px 0 0;
}

.share-it-list {
  display: grid;
  gap: 8px;
}

.share-it-item {
  width: 100%;
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.share-it-item.is-active {
  border-color: var(--navy);
  background: #eef5fb;
}

.share-it-item strong,
.share-it-item em {
  display: block;
}

.share-it-item em {
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.88rem;
}

.share-it-item b {
  min-width: 38px;
  min-height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--turf);
}

.result-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.result-table {
  display: grid;
  gap: 8px;
}

.result-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) minmax(260px, 1.3fr) 130px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.result-row-head {
  background: #eef5fb;
  color: var(--navy);
  font-weight: 900;
}

.result-row time,
.result-row span {
  color: var(--muted);
  line-height: 1.5;
}

.admin-empty {
  margin: 0;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
  background: var(--surface-soft);
}

.share-form-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(23, 54, 95, 0.9), rgba(23, 54, 95, 0.84)),
    repeating-linear-gradient(90deg, #f4f7fb 0, #f4f7fb 72px, #e8eff6 72px, #e8eff6 144px);
}

.share-form-shell {
  width: min(680px, calc(100% - 28px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px 0 56px;
  display: grid;
  align-content: center;
  gap: 22px;
}

.form-brand {
  color: #ffffff;
}

.share-form-panel {
  padding: 28px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.share-form-panel h1 {
  margin: 0;
  color: var(--navy-2);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.02;
}

.share-form-panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 1050px) {
  .hero {
    min-height: auto;
  }

  .hero-content,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .event-board {
    grid-template-columns: repeat(3, 1fr);
  }

  .summary-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .use-case-grid,
  .result-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-grid,
  .admin-workspace {
    grid-template-columns: 1fr;
  }

  .scene-list-main {
    width: min(360px, 48vw);
  }

  .player-header {
    display: none;
  }

  .player-table {
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
  }

  .player-rows {
    gap: 12px;
  }

  .player-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 39, 74, 0.08);
  }

  .player-name,
  .child-fields,
  .row-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .section-inner,
  .topbar,
  .hero-content,
  .share-nav,
  .share-hero-copy {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    padding-bottom: 48px;
  }

  .topbar {
    align-items: flex-start;
  }

  .club-logo {
    width: 66px;
  }

  .share-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(210px, 58vw);
  }

  body.is-admin .share-actions.admin-only {
    display: flex;
  }

  .ghost-button {
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero-content {
    margin-top: 62px;
  }

  .hero h1 {
    font-size: 2.45rem;
    line-height: 1.02;
  }

  .hero-lead {
    font-size: 1.04rem;
  }

  .share-home-hero {
    min-height: 620px;
  }

  .share-nav {
    min-height: 72px;
    align-items: flex-start;
    padding-top: 18px;
  }

  .share-nav-links {
    gap: 10px;
    font-size: 0.92rem;
  }

  .share-hero-copy {
    margin-top: 82px;
  }

  .share-hero-copy p:not(.eyebrow) {
    font-size: 1.04rem;
  }

  .scene-list-main {
    top: auto;
    right: 18px;
    bottom: 88px;
    width: min(320px, 78vw);
    min-height: 190px;
  }

  .scene-list-side,
  .scene-message-two,
  .scene-route {
    display: none;
  }

  .scene-message-one {
    left: 18px;
    top: auto;
    bottom: 300px;
  }

  .event-board {
    grid-template-columns: 1fr;
  }

  .info-band,
  .signup-section {
    padding: 42px 0;
  }

  .copy-block h2,
  .signup-heading h2 {
    font-size: 1.85rem;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

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

  .search-field {
    min-width: 0;
  }

  .summary-panel {
    grid-template-columns: 1fr;
  }

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

  .use-case-grid,
  .admin-kpis,
  .result-stats {
    grid-template-columns: 1fr;
  }

  .dashboard-heading,
  .panel-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .result-row,
  .result-row-head {
    grid-template-columns: 1fr;
  }

  .admin-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .player-row {
    grid-template-columns: 1fr;
  }

  .child-fields.is-open {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }

  .toast {
    width: calc(100% - 24px);
    text-align: center;
  }
}
