:root {
  color-scheme: light;
  --ink: #17201c;
  --muted: #67706b;
  --paper: #f7f8f5;
  --surface: #ffffff;
  --line: #dde4df;
  --green: #1e8f68;
  --green-soft: #dff4eb;
  --coral: #e66b55;
  --coral-soft: #ffe8e2;
  --blue: #2d7dd2;
  --blue-soft: #e4f1ff;
  --gold: #a9761d;
  --gold-soft: #fff1d0;
  --purple: #7d5ad7;
  --shadow: 0 16px 40px rgba(22, 32, 28, 0.12);
  --radius: 8px;
  --nav-height: 76px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #dfe7e2;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(45, 125, 210, 0.08), transparent 34%),
    var(--paper);
  color: var(--ink);
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.phone-shell {
  width: min(100vw, 460px);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--paper);
  border-left: 1px solid rgba(23, 32, 28, 0.08);
  border-right: 1px solid rgba(23, 32, 28, 0.08);
}

.app-root {
  min-height: 100vh;
  padding-bottom: calc(var(--nav-height) + 74px + env(safe-area-inset-bottom));
}

.screen {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
  padding: calc(12px + env(safe-area-inset-top)) 18px 12px;
  background: rgba(247, 248, 245, 0.95);
  border-bottom: 1px solid rgba(221, 228, 223, 0.8);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-lockup > div:last-child {
  min-width: 0;
}

.mark {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 850;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
}

.title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
  font-size: 21px;
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: 0;
}

.topbar-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.icon-btn,
.small-icon-btn {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.small-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.feed-chat-entry {
  width: 38px;
  height: 38px;
  border-color: rgba(30, 143, 104, 0.32);
  background: var(--green-soft);
  color: #0c6547;
}

.topbar-chat-entry {
  width: 42px;
  height: 42px;
}

.icon-btn svg,
.small-icon-btn svg,
.nav-btn svg,
.action-btn svg,
.secondary-btn svg,
.danger-btn svg,
.chip svg,
.stat svg,
.empty-state svg,
.input-icon svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.2;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px 14px 18px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 2px 0;
}

.section-head > div,
.panel-head > div,
.profile-top > div {
  min-width: 0;
}

.section-head h2,
.section-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-head p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.link-btn {
  border: 0;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.hero-card {
  position: relative;
  min-height: 214px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #18231f;
  color: #fff;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
  z-index: -2;
}

.hero-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(16, 25, 21, 0.1), rgba(16, 25, 21, 0.86)),
    linear-gradient(90deg, rgba(16, 25, 21, 0.66), rgba(16, 25, 21, 0.16));
  z-index: -1;
}

.hero-content {
  display: flex;
  min-height: 214px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 18px;
}

.hero-content h2 {
  max-width: 300px;
  margin: 0;
  font-size: 25px;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-content p {
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.45;
}

.hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.pill svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.search-wrap input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.filters,
.horizontal-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 2px 2px;
  scrollbar-width: none;
}

.filters::-webkit-scrollbar,
.horizontal-list::-webkit-scrollbar,
.league-list::-webkit-scrollbar {
  display: none;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: max-content;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}

.chip.is-active {
  border-color: rgba(30, 143, 104, 0.28);
  background: var(--green-soft);
  color: #0c6547;
}

.game-list,
.gear-list,
.timeline-list,
.message-list,
.place-list,
.venue-list,
.venue-game-list,
.profile-stack,
.league-schedule-list,
.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.game-card,
.gear-row,
.timeline-card,
.place-row,
.venue-card,
.venue-detail-card,
.profile-panel,
.empty-state,
.chat-picker,
.create-form,
.detail-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.game-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 13px;
}

.game-main {
  display: flex;
  gap: 12px;
}

.sport-tile {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
}

.sport-tile svg {
  width: 27px;
  height: 27px;
}

.sport-basketball {
  background: #d5663f;
}

.sport-soccer {
  background: #297555;
}

.sport-pickleball {
  background: #2d7dd2;
}

.sport-tennis {
  background: #8a9e21;
}

.sport-volleyball {
  background: #7d5ad7;
}

.sport-running {
  background: #bd4c67;
}

.game-copy {
  min-width: 0;
  flex: 1;
}

.game-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 5px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #155d9c;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
}

.tag.green {
  background: var(--green-soft);
  color: #0d6849;
}

.tag.coral {
  background: var(--coral-soft);
  color: #9f321f;
}

.tag.gold {
  background: var(--gold-soft);
  color: #77500c;
}

.tag.purple {
  background: #eee8fb;
  color: #5d3ca8;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 22px;
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f1f4f1;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.availability-badge svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  stroke-width: 2.4;
}

.availability-badge.strong {
  border-color: rgba(30, 143, 104, 0.24);
  background: var(--green-soft);
  color: #0d6849;
}

.availability-badge.partial {
  border-color: rgba(169, 118, 29, 0.28);
  background: var(--gold-soft);
  color: #77500c;
}

.availability-badge.outside {
  border-color: rgba(103, 112, 107, 0.22);
  background: #f4f6f4;
  color: var(--muted);
}

.game-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.18;
  letter-spacing: 0;
}

.game-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 10px;
}

.reliability-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.reliability-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 4px 7px;
  border: 1px solid rgba(45, 125, 210, 0.16);
  border-radius: 999px;
  background: #f6f9fb;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.stat {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.stat span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-actions {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 8px;
}

.league-panel {
  display: grid;
  gap: 10px;
}

.compact-league-panel {
  padding-top: 2px;
}

.compact-league-panel .section-head p {
  max-width: 300px;
}

.league-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 2px 2px;
  scrollbar-width: none;
}

.profile-league-list {
  display: grid;
  overflow: visible;
  padding: 0;
}

.league-card {
  display: grid;
  min-width: min(330px, calc(100vw - 42px));
  gap: 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.profile-league-list .league-card {
  min-width: 0;
}

.league-card-head {
  display: flex;
  gap: 12px;
}

.league-card .sport-tile {
  width: 48px;
  height: 48px;
}

.league-card .sport-tile svg {
  width: 24px;
  height: 24px;
}

.league-copy {
  min-width: 0;
}

.league-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.16;
  letter-spacing: 0;
}

.league-copy p {
  display: -webkit-box;
  overflow: hidden;
  margin: 6px 0 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.league-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.league-meta-grid span {
  display: grid;
  gap: 2px;
  min-height: 42px;
  justify-content: start;
  padding: 8px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.league-meta-grid strong {
  color: var(--ink);
  font-size: 12px;
}

.league-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.league-card-foot .secondary-btn {
  min-height: 36px;
  padding: 0 10px;
}

.places-panel {
  display: grid;
  gap: 10px;
}

.map-strip {
  position: relative;
  min-height: 82px;
  overflow: hidden;
  border: 1px solid rgba(45, 125, 210, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(45, 125, 210, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(30, 143, 104, 0.08) 1px, transparent 1px),
    #f7fbfa;
  background-size: 52px 52px;
}

.map-strip::before {
  position: absolute;
  top: 38px;
  right: 24px;
  left: 24px;
  height: 3px;
  border-radius: 999px;
  background: rgba(30, 143, 104, 0.28);
  content: "";
}

.map-pin {
  position: absolute;
  top: 18px;
  left: var(--pin-left);
  display: grid;
  min-width: 44px;
  gap: 3px;
  justify-items: center;
  color: var(--ink);
  transform: translateX(-50%);
}

.map-pin strong {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 2px solid var(--surface);
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(30, 143, 104, 0.25);
  font-size: 12px;
}

.map-pin small {
  padding: 2px 5px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}

.venue-list {
  flex-direction: row;
  overflow-x: auto;
  padding: 0 2px 2px;
  scrollbar-width: none;
}

.venue-list::-webkit-scrollbar {
  display: none;
}

.venue-card {
  display: grid;
  min-width: min(326px, calc(100vw - 42px));
  gap: 10px;
  padding: 12px;
}

.venue-card-head,
.venue-summary-head,
.venue-detail-top,
.venue-card-foot,
.venue-game-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.venue-card-head > div,
.venue-summary-head > div,
.venue-detail-top > div,
.venue-game-row > div {
  min-width: 0;
}

.venue-card h3,
.venue-detail-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.15;
}

.venue-card p,
.venue-detail-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.venue-kicker,
.venue-chip-row,
.venue-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.venue-kicker span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.venue-chip,
.venue-hints span {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--green-soft);
  color: #0d6849;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.venue-chip.quiet,
.venue-hints span {
  border: 1px solid var(--line);
  background: #fbfcfb;
  color: var(--muted);
}

.venue-card-foot {
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.venue-card-foot strong {
  color: var(--ink);
}

.venue-sheet-body {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.venue-detail-card {
  display: grid;
  gap: 12px;
  padding: 12px;
}

.venue-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.venue-facts span {
  display: grid;
  min-height: 54px;
  align-content: start;
  gap: 3px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.venue-facts strong {
  color: var(--ink);
  font-size: 12px;
}

.venue-game-row {
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
}

.venue-game-row strong,
.venue-game-row span {
  display: block;
  font-size: 12px;
}

.venue-game-row span {
  margin-top: 4px;
  color: var(--muted);
}

.demo-cue {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 12px 48px 12px 12px;
  border: 1px solid rgba(45, 125, 210, 0.2);
  border-radius: var(--radius);
  background: #f6fafc;
}

.demo-cue strong {
  display: block;
  font-size: 13px;
}

.demo-cue p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.demo-cue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.demo-cue-actions .secondary-btn {
  min-height: 32px;
  padding: 0 9px;
  font-size: 12px;
}

.demo-cue > .small-icon-btn {
  position: absolute;
  top: 9px;
  right: 9px;
}

.action-btn,
.secondary-btn,
.danger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 850;
  line-height: 1.15;
  min-width: 0;
  text-align: center;
}

.action-btn {
  border: 1px solid #167a58;
  background: var(--green);
  color: #fff;
}

.action-btn.is-joined {
  border-color: rgba(30, 143, 104, 0.24);
  background: var(--green-soft);
  color: #0c6547;
}

.secondary-btn {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.danger-btn {
  border: 1px solid rgba(230, 107, 85, 0.4);
  background: var(--coral-soft);
  color: #9f321f;
}

.action-btn:disabled,
.secondary-btn:disabled,
.danger-btn:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.quiet-danger {
  border-color: var(--line);
  background: var(--surface);
  color: #9f321f;
}

.detail-action-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.detail-action-stack > .action-btn,
.detail-action-stack > .secondary-btn:first-child {
  grid-column: 1 / -1;
}

.detail-action-stack > .secondary-btn:nth-child(2):last-child {
  grid-column: 1 / -1;
}

.bottom-nav {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  width: min(100vw, 460px);
  height: calc(var(--nav-height) + env(safe-area-inset-bottom));
  margin: 0 auto;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(23, 32, 28, 0.11);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.nav-grid {
  display: grid;
  height: 100%;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.nav-btn {
  display: inline-flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.nav-btn.is-active {
  background: var(--green-soft);
  color: #0c6547;
}

.floating-action {
  position: fixed;
  right: max(16px, calc((100vw - 460px) / 2 + 18px));
  bottom: calc(var(--nav-height) + env(safe-area-inset-bottom) + 16px);
  z-index: 22;
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.floating-action svg {
  width: 24px;
  height: 24px;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #edf2ef;
}

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

.segment {
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.segment.is-active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(23, 32, 28, 0.08);
}

.availability-filters {
  padding-bottom: 0;
}

.match-filter {
  min-height: 34px;
}

.community-segmented .segment {
  min-width: 0;
  padding: 0 6px;
  font-size: 12px;
}

.timeline-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  padding: 12px;
}

.timeline-card.is-confirmed {
  border-color: rgba(30, 143, 104, 0.34);
  background: #fbfffd;
}

.timeline-card.is-waitlisted {
  border-color: rgba(125, 90, 215, 0.22);
}

.time-chip {
  display: grid;
  min-height: 58px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: #155d9c;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.time-chip span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 800;
}

.timeline-copy h3,
.place-copy h3,
.profile-panel h3,
.detail-block h3,
.gear-copy h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.15;
}

.timeline-copy p,
.place-copy p,
.profile-panel p,
.detail-block p,
.gear-copy p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.avatars {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.avatar {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid var(--surface);
  border-radius: 999px;
  background: #e6ece8;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.avatar + .avatar {
  margin-left: -8px;
}

.avatar svg {
  width: 15px;
  height: 15px;
}

.detail-hero {
  position: relative;
  display: flex;
  min-height: 182px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 18px;
  border-radius: var(--radius);
  background: #1b2b25;
  color: #fff;
}

.detail-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(20, 32, 28, 0), rgba(20, 32, 28, 0.9)),
    var(--hero-bg, linear-gradient(135deg, #1e8f68, #2d7dd2));
  z-index: 0;
}

.detail-hero > * {
  position: relative;
  z-index: 1;
}

.detail-hero h2 {
  margin: 8px 0 0;
  font-size: 25px;
  line-height: 1.02;
  letter-spacing: 0;
}

.league-detail-hero {
  min-height: 172px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.detail-block {
  padding: 12px;
}

.detail-block.full {
  grid-column: 1 / -1;
}

.reliability-panel {
  display: grid;
  gap: 12px;
}

.confirmation-state-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.confirmation-state-row span {
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.confirmation-state-row span.is-active {
  border-color: rgba(30, 143, 104, 0.28);
  background: var(--green-soft);
  color: #0d6849;
}

.confirmation-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.confirmation-actions .secondary-btn {
  grid-column: 1 / -1;
}

.backup-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 8px;
}

.backup-form select,
.backup-form input {
  min-width: 0;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  outline: 0;
}

.backup-form .secondary-btn {
  min-height: 42px;
  padding: 0 10px;
}

.backup-note {
  display: grid;
  gap: 4px;
  padding: 9px 10px;
  border: 1px solid rgba(30, 143, 104, 0.18);
  border-radius: var(--radius);
  background: #fbfffd;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.backup-note strong {
  color: var(--ink);
}

.backup-note span {
  display: block;
}

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

.readiness-row span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.readiness-row strong {
  font-size: 13px;
}

.readiness-row small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.availability-detail-row {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.availability-detail-row p {
  margin: 0;
}

.revenue-detail .revenue-grid {
  margin-top: 10px;
}

.payment-state {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.payment-state-row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-state-row p,
.transparency-copy {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.payment-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.payment-actions .secondary-btn:only-child,
.payment-actions .action-btn:only-child {
  grid-column: 1 / -1;
}

.league-schedule-row,
.leaderboard-row {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.league-schedule-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
}

.league-schedule-copy {
  min-width: 0;
}

.league-schedule-copy h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.15;
}

.league-schedule-copy p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.leaderboard-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
}

.leaderboard-rank {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius);
  background: var(--green-soft);
  color: #0d6849;
  font-size: 13px;
  font-weight: 900;
}

.leaderboard-row strong {
  display: block;
  font-size: 13px;
}

.leaderboard-row span:not(.leaderboard-rank) {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.roster-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.roster-row:first-child {
  border-top: 0;
}

.roster-overflow {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.person {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.person-copy {
  min-width: 0;
}

.person strong {
  display: block;
  font-size: 13px;
}

.person span:not(.avatar):not(.trust-chip),
.person-note {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.trust-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
}

.trust-preview.compact {
  gap: 4px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 3px 7px;
  border: 1px solid rgba(30, 143, 104, 0.2);
  border-radius: 999px;
  background: var(--green-soft);
  color: #0d6849;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.trust-chip.quiet {
  border-color: rgba(103, 112, 107, 0.2);
  background: #f4f6f4;
  color: var(--muted);
}

.place-row,
.gear-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
}

.place-copy,
.gear-copy {
  min-width: 0;
  flex: 1;
}

.vote-score {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius);
  background: var(--gold-soft);
  color: var(--gold);
  font-weight: 900;
}

.gear-status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--coral-soft);
  color: #9f321f;
  font-size: 11px;
  font-weight: 850;
}

.gear-status.claimed {
  background: var(--green-soft);
  color: #0d6849;
}

.social-content {
  gap: 12px;
}

.social-feed-header,
.feed-composer,
.feed-post {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.social-feed-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
}

.social-feed-header > div {
  min-width: 0;
}

.social-feed-header h2,
.social-chat-toolbar h2 {
  margin: 0;
  font-size: 19px;
  line-height: 1.12;
  letter-spacing: 0;
}

.social-feed-header p:last-child {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.feed-picker {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 2px 2px;
  scrollbar-width: none;
}

.feed-picker::-webkit-scrollbar {
  display: none;
}

.feed-picker-button {
  display: grid;
  width: min(306px, calc(100vw - 52px));
  min-width: min(306px, calc(100vw - 52px));
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.feed-picker-button.is-active {
  border-color: rgba(30, 143, 104, 0.32);
  background: var(--green-soft);
}

.feed-picker-button .sport-tile {
  width: 42px;
  height: 42px;
}

.feed-picker-button .sport-tile svg {
  width: 22px;
  height: 22px;
}

.feed-picker-button strong,
.feed-picker-button span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feed-picker-button strong {
  font-size: 13px;
}

.feed-picker-button span,
.feed-picker-button small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.feed-picker-button small {
  grid-column: 2;
  width: max-content;
  max-width: 100%;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(103, 112, 107, 0.1);
}

.feed-composer {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.feed-composer textarea {
  width: 100%;
  min-height: 74px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfa;
  color: var(--ink);
  outline: 0;
  resize: vertical;
}

.feed-composer-actions {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.image-input-btn {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.image-input-btn input {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
}

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feed-post {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.feed-post-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.feed-post-head .tag {
  flex: 0 0 auto;
}

.feed-post-text {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.42;
}

.feed-post-image {
  width: 100%;
  max-height: 220px;
  border-radius: var(--radius);
  object-fit: cover;
  background: #eef3ef;
}

.comment-list {
  display: grid;
  gap: 7px;
}

.comment-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 7px;
  align-items: start;
}

.comment-row .avatar {
  width: 28px;
  height: 28px;
  font-size: 10px;
}

.comment-row p {
  min-width: 0;
  margin: 0;
  padding: 7px 9px;
  border-radius: var(--radius);
  background: #f1f5f2;
  font-size: 12px;
  line-height: 1.35;
}

.comment-row strong {
  margin-right: 3px;
}

.comment-overflow {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.comment-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 8px;
}

.comment-form input {
  width: 100%;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  outline: 0;
}

.social-chat-toolbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.social-chat-toolbar .secondary-btn {
  min-height: 40px;
}

.chat-hub-panel {
  display: grid;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.chat-hub-intro {
  display: grid;
  gap: 3px;
}

.chat-hub-intro strong {
  font-size: 15px;
}

.chat-hub-intro span,
.chat-section-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.chat-thread-section {
  display: grid;
  gap: 8px;
}

.chat-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.chat-section-head h3 {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0;
}

.chat-thread-list {
  display: grid;
  gap: 8px;
}

.chat-thread-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfa;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.chat-thread-row .sport-tile,
.chat-thread-row .avatar {
  width: 42px;
  height: 42px;
}

.chat-thread-copy {
  min-width: 0;
}

.chat-thread-copy strong,
.chat-thread-copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-thread-copy strong {
  font-size: 13px;
}

.chat-thread-copy small,
.chat-thread-count {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.chat-thread-count {
  max-width: 74px;
  text-align: right;
}

.chat-picker {
  padding: 10px;
}

.chat-game-button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.chat-game-button.is-active {
  background: var(--green-soft);
}

.chat-game-button strong {
  display: block;
  font-size: 13px;
}

.chat-game-button span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.message-panel {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.message-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}

.message-header strong {
  font-size: 14px;
}

.message-header span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.message-list {
  flex: 1;
  gap: 8px;
  max-height: 360px;
  overflow-y: auto;
  padding: 12px;
}

.message {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.message.mine {
  justify-content: flex-end;
}

.bubble {
  max-width: min(78%, 300px);
  padding: 9px 10px;
  border-radius: 8px;
  background: #eef3ef;
}

.message.mine .bubble {
  background: var(--green);
  color: #fff;
}

.bubble strong {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
}

.bubble p {
  margin: 0;
  font-size: 13px;
  line-height: 1.38;
}

.composer {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid var(--line);
  background: #f9fbf8;
}

.composer input,
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  outline: 0;
}

.composer input {
  padding: 0 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  padding: 10px;
}

.field textarea {
  min-height: 72px;
  resize: vertical;
}

.create-form {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

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

.availability-list {
  margin-top: 12px;
}

.check-row,
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.check-row span,
.toggle-row span {
  font-size: 13px;
  font-weight: 750;
}

.availability-row span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.availability-row strong {
  font-size: 13px;
}

.availability-row small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--green);
}

.profile-panel {
  padding: 14px;
}

.profile-group-heading {
  display: grid;
  gap: 3px;
  padding: 8px 2px 0;
}

.profile-group-heading h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.12;
  letter-spacing: 0;
}

.profile-group-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.profile-card {
  display: grid;
  gap: 12px;
}

.auth-panel {
  display: grid;
  gap: 12px;
}

.auth-status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.auth-status-grid span {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.auth-status-grid strong {
  overflow: hidden;
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-status-copy {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.auth-form {
  display: grid;
  gap: 10px;
}

.auth-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.profile-top,
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-head h3,
.profile-top h3 {
  margin: 0;
}

.profile-bio {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.profile-stats span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.profile-stats strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.reputation-panel,
.feedback-panel,
.trust-detail {
  display: grid;
  gap: 12px;
}

.reputation-grid,
.trust-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.reputation-stat,
.trust-metric-grid span {
  display: grid;
  min-height: 52px;
  place-items: center;
  padding: 7px;
  border: 1px solid rgba(45, 125, 210, 0.18);
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: #155d9c;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
}

.reputation-stat strong,
.trust-metric-grid strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.feedback-game-list {
  display: grid;
  gap: 8px;
}

.feedback-game-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
}

.feedback-game-row strong {
  display: block;
  font-size: 13px;
  line-height: 1.2;
}

.feedback-game-row span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.feedback-game-row .secondary-btn {
  min-height: 36px;
  padding: 0 10px;
  font-size: 12px;
}

.reputation-check-list .check-row {
  background: #fbfcfb;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 30px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f1f4f1;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.verified-badge svg {
  width: 14px;
  height: 14px;
}

.verified-badge.pending {
  border-color: rgba(169, 118, 29, 0.35);
  background: var(--gold-soft);
  color: var(--gold);
}

.verified-badge.approved {
  border-color: rgba(45, 125, 210, 0.25);
  background: var(--blue-soft);
  color: #155d9c;
}

.verified-badge.danger {
  border-color: rgba(230, 107, 85, 0.35);
  background: var(--coral-soft);
  color: #9f321f;
}

.organizer-panel,
.license-panel,
.community-panel,
.revenue-ledger-panel {
  display: grid;
  gap: 12px;
}

.community-list,
.community-method-list {
  display: grid;
  gap: 8px;
}

.community-row,
.community-method {
  display: grid;
  gap: 8px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
}

.community-row-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.community-row-head strong,
.community-method strong {
  display: block;
  font-size: 13px;
}

.community-row-head > div > span,
.community-method span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.community-row p {
  margin: 0;
}

.organizer-preview {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
}

.organizer-preview p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.organizer-preview .audience-copy {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: #155d9c;
  font-weight: 750;
}

.demo-settings-panel {
  display: grid;
  gap: 12px;
}

.demo-settings-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.revenue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.revenue-grid span,
.ledger-grid span {
  display: grid;
  min-height: 52px;
  place-items: center;
  border: 1px solid rgba(30, 143, 104, 0.18);
  border-radius: var(--radius);
  background: var(--green-soft);
  color: #0d6849;
  font-size: 11px;
  font-weight: 850;
  text-align: center;
}

.revenue-grid strong,
.ledger-grid strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.ledger-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.ledger-grid span:first-child {
  grid-column: 1 / -1;
}

.dashboard-stack,
.admin-section,
.admin-summary-panel {
  display: grid;
  gap: 12px;
}

.admin-summary-panel h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
}

.dashboard-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.dashboard-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 9px;
  min-height: 94px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
}

.dashboard-card-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: #155d9c;
}

.dashboard-card-icon svg {
  width: 18px;
  height: 18px;
}

.dashboard-card h3 {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.15;
}

.dashboard-card strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
}

.dashboard-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.28;
}

.admin-entry-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.admin-list {
  display: grid;
  gap: 9px;
}

.admin-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
}

.admin-row-main {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.admin-row-main strong,
.admin-row-main span {
  display: block;
}

.admin-row-main strong {
  font-size: 13px;
  line-height: 1.2;
}

.admin-row-main > div > span,
.admin-resolution {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.admin-row-main p {
  margin: 0;
}

.admin-row-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(42px, auto));
  gap: 7px;
  justify-content: end;
}

.admin-row-actions .action-btn,
.admin-row-actions .secondary-btn,
.admin-row-actions .danger-btn {
  min-height: 36px;
  padding: 0 10px;
  font-size: 12px;
}

.admin-row-actions .admin-resolution {
  align-self: center;
  justify-self: end;
  font-weight: 850;
  text-align: right;
}

.license-admin-block {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.compact-head {
  align-items: flex-start;
}

.license-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.license-admin-grid span {
  display: grid;
  min-height: 52px;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(45, 125, 210, 0.18);
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: #155d9c;
  font-size: 11px;
  font-weight: 850;
  text-align: center;
}

.license-admin-grid span:nth-child(4),
.license-admin-grid span:nth-child(5) {
  grid-column: 1 / -1;
}

.license-admin-grid strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.friend-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.friend-row {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
}

.friend-meta p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.friend-actions {
  display: grid;
  grid-template-columns: repeat(3, 34px);
  gap: 8px;
  justify-content: end;
}

.friend-actions .action-btn {
  grid-column: 1 / -1;
  min-height: 38px;
}

.small-icon-btn.is-favorite {
  border-color: rgba(169, 118, 29, 0.35);
  background: var(--gold-soft);
  color: var(--gold);
}

.inline-form {
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: 8px;
  margin-top: 12px;
}

.inline-form input {
  min-width: 0;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  outline: 0;
}

.swatch-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.swatch {
  position: relative;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
}

.swatch input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.swatch span {
  display: block;
  width: 30px;
  height: 30px;
  border: 2px solid var(--surface);
  border-radius: 999px;
  background: var(--swatch);
  box-shadow: 0 0 0 1px var(--line);
}

.swatch input:checked + span {
  box-shadow: 0 0 0 3px var(--green-soft), 0 0 0 5px var(--green);
}

.preference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.pref-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
  font-size: 13px;
  font-weight: 800;
}

.sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(17, 26, 22, 0.36);
}

.sheet {
  width: min(100vw, 460px);
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 8px 8px 0 0;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.sheet-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 248, 245, 0.97);
  backdrop-filter: blur(14px);
}

.sheet-head h2 {
  margin: 0;
  font-size: 18px;
}

.onboarding-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: end center;
  padding: 18px 14px calc(18px + env(safe-area-inset-bottom));
  background: rgba(17, 26, 22, 0.42);
}

.onboarding-card {
  display: grid;
  width: min(100%, 420px);
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(23, 32, 28, 0.1);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.onboarding-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--green-soft);
  color: #0d6849;
}

.onboarding-icon svg {
  width: 24px;
  height: 24px;
}

.onboarding-card .eyebrow {
  margin: 0;
}

.onboarding-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: 0;
}

.onboarding-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.onboarding-dots {
  display: flex;
  gap: 6px;
  padding-top: 2px;
}

.onboarding-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #cbd5cf;
}

.onboarding-dots span.is-active {
  width: 22px;
  background: var(--green);
}

.onboarding-actions {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8px;
  padding-top: 2px;
}

.empty-state {
  display: grid;
  min-height: 180px;
  place-items: center;
  padding: 22px;
  text-align: center;
}

.empty-state svg {
  width: 34px;
  height: 34px;
  color: var(--green);
}

.empty-state h3 {
  margin: 10px 0 4px;
  font-size: 16px;
}

.empty-state p {
  max-width: 270px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.empty-state.compact {
  min-height: auto;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  justify-items: start;
  padding: 11px;
  text-align: left;
}

.empty-state.compact svg {
  width: 22px;
  height: 22px;
}

.empty-state.compact h3 {
  margin: 0 0 3px;
  font-size: 13px;
}

.empty-state.compact p {
  max-width: none;
  font-size: 12px;
}

.toast {
  position: fixed;
  right: max(14px, calc((100vw - 460px) / 2 + 14px));
  bottom: calc(var(--nav-height) + env(safe-area-inset-bottom) + 84px);
  z-index: 50;
  max-width: min(360px, calc(100vw - 28px));
  padding: 10px 12px;
  border: 1px solid rgba(23, 32, 28, 0.1);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 800;
}

.desktop-frame {
  display: none;
}

@media (min-width: 900px) {
  body {
    display: grid;
    grid-template-columns: 1fr minmax(360px, 460px) 1fr;
    gap: 34px;
    align-items: start;
    padding: 24px;
  }

  .phone-shell {
    grid-column: 2;
    min-height: calc(100vh - 48px);
    overflow: hidden;
    border: 1px solid rgba(23, 32, 28, 0.1);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .bottom-nav,
  .floating-action,
  .toast {
    left: calc(50% - 230px);
    right: auto;
  }

  .bottom-nav {
    border-radius: 0 0 22px 22px;
  }

  .desktop-frame {
    position: sticky;
    top: 48px;
    display: block;
    grid-column: 1;
    max-width: 320px;
    justify-self: end;
    padding-top: 72px;
  }

  .desktop-frame h1 {
    margin: 0;
    font-size: 42px;
    line-height: 0.95;
    letter-spacing: 0;
  }

  .desktop-frame p {
    color: var(--muted);
    line-height: 1.5;
  }
}

@media (max-width: 420px) {
  .game-card,
  .league-card,
  .venue-card,
  .profile-panel {
    padding: 12px;
  }

  .sport-tile {
    width: 48px;
    height: 48px;
  }

  .sport-tile svg {
    width: 24px;
    height: 24px;
  }

  .panel-head,
  .community-row-head {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .verified-badge {
    max-width: 100%;
    white-space: normal;
  }

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

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

  .admin-row-actions {
    justify-content: stretch;
  }

  .admin-row-actions .admin-resolution {
    justify-self: start;
    text-align: left;
  }

  .venue-detail-top,
  .venue-summary-head,
  .venue-game-row {
    align-items: stretch;
    flex-direction: column;
  }

  .feedback-game-row .secondary-btn {
    width: 100%;
  }

  .venue-detail-top .action-btn,
  .venue-detail-top .secondary-btn,
  .venue-summary-head .secondary-btn,
  .venue-game-row .secondary-btn {
    width: 100%;
  }

  .demo-cue {
    grid-template-columns: 1fr;
    padding-right: 44px;
  }

  .demo-cue-actions {
    justify-content: flex-start;
  }

  .chat-picker {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .chat-picker::-webkit-scrollbar {
    display: none;
  }

  .chat-game-button {
    width: min(282px, calc(100vw - 56px));
    min-width: min(282px, calc(100vw - 56px));
    flex: 0 0 auto;
    padding: 8px;
    border: 1px solid transparent;
  }

  .chat-game-button.is-active {
    border-color: rgba(30, 143, 104, 0.2);
  }

  .game-actions,
  .composer {
    grid-template-columns: minmax(0, 1fr) 42px;
  }
}

@media (max-width: 360px) {
  .content {
    padding-right: 10px;
    padding-left: 10px;
  }

  .game-meta,
  .detail-grid,
  .form-grid,
  .preference-grid,
  .profile-stats,
  .reputation-grid,
  .revenue-grid,
  .ledger-grid,
  .trust-metric-grid,
  .inline-form,
  .backup-form,
  .detail-action-stack,
    .payment-actions,
    .demo-settings-actions,
    .admin-entry-actions,
    .dashboard-overview,
    .license-admin-grid,
    .feedback-game-row,
    .venue-facts,
    .league-schedule-row {
    grid-template-columns: 1fr;
  }

  .license-admin-grid span:nth-child(4),
  .license-admin-grid span:nth-child(5) {
    grid-column: auto;
  }

  .profile-top,
  .panel-head,
  .league-card-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .confirmation-state-row,
  .confirmation-actions {
    grid-template-columns: 1fr 1fr;
  }

  .confirmation-actions .secondary-btn {
    grid-column: 1 / -1;
  }

  .hero-content h2,
  .detail-hero h2 {
    font-size: 22px;
  }
}

body.landing-page {
  display: block;
  min-height: 100vh;
  overflow-x: hidden;
  padding: 0;
  background: #f7f8f5;
  color: var(--ink);
}

.landing-page a {
  color: inherit;
  text-decoration: none;
}

body.landing-page .landing-nav nav a {
  color: var(--muted);
}

body.landing-page .landing-nav-cta {
  color: #fff;
}

body.landing-page .landing-button-primary {
  color: var(--ink);
}

body.landing-page .landing-button-secondary {
  color: #fff;
}

body.landing-page .landing-section .landing-button-primary,
body.landing-page .landing-demo-section .landing-button-primary {
  color: #fff;
}

body.landing-page .landing-section .landing-button-secondary,
body.landing-page .landing-demo-section .landing-button-secondary {
  color: var(--ink);
}

body.landing-page .landing-final-cta .landing-button-primary {
  background: #fff;
  color: var(--ink);
}

body.landing-page .landing-footer a {
  color: var(--muted);
}

.landing-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 14px max(18px, calc((100vw - 1160px) / 2));
  background: rgba(247, 248, 245, 0.92);
  border-bottom: 1px solid rgba(23, 32, 28, 0.08);
  backdrop-filter: blur(18px);
}

.landing-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0;
}

.landing-nav nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.landing-nav nav a,
.landing-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.landing-nav nav a {
  padding: 0 10px;
  color: var(--muted);
}

.landing-nav-cta {
  flex: 0 0 auto;
  padding: 0 13px;
  background: var(--ink);
  color: #fff;
}

.landing-hero {
  position: relative;
  display: grid;
  min-height: calc(88svh - 74px);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.landing-hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.landing-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 20, 16, 0.9), rgba(12, 20, 16, 0.48) 56%, rgba(12, 20, 16, 0.16)),
    linear-gradient(180deg, rgba(12, 20, 16, 0.22), rgba(12, 20, 16, 0.72));
}

.landing-hero-inner {
  display: flex;
  width: min(1160px, calc(100% - 36px));
  min-height: calc(88svh - 74px);
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
  padding: 54px 0 44px;
}

.landing-kicker {
  margin: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.landing-hero .landing-kicker {
  color: #a7ebca;
}

.landing-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 68px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
}

.landing-positioning {
  max-width: 780px;
  margin: 0;
  font-size: 29px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.08;
  overflow-wrap: break-word;
}

.landing-hero-copy {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.landing-actions,
.landing-demo-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.landing-button-primary {
  background: #fff;
  color: var(--ink);
}

.landing-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.landing-section .landing-button-primary,
.landing-final-cta .landing-button-primary,
.landing-demo-section .landing-button-primary {
  background: var(--ink);
  color: #fff;
}

.landing-section .landing-button-secondary,
.landing-final-cta .landing-button-secondary,
.landing-demo-section .landing-button-secondary {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.landing-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 10px;
  max-width: 610px;
  margin: 10px 0 0;
}

.landing-hero-points div {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.landing-hero-points dt {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.landing-hero-points dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.35;
}

.landing-peek {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1160px;
  margin: 0 auto;
  transform: translateY(-24px);
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 16px 44px rgba(22, 32, 28, 0.11);
}

.landing-peek div {
  min-width: 0;
  padding: 18px;
  background: var(--surface);
}

.landing-peek span,
.landing-model-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.landing-peek p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.landing-section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 58px 0;
}

.landing-section-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 24px;
}

.landing-section-heading h2,
.landing-final-cta h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: 0;
}

.landing-split-grid,
.landing-model-grid,
.landing-feature-grid,
.landing-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.landing-panel,
.landing-model-grid article,
.landing-feature-grid article {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.landing-panel h3,
.landing-model-grid h3,
.landing-feature-grid h3,
.landing-demo-list h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: 0;
}

.landing-panel p,
.landing-model-grid p,
.landing-feature-grid p,
.landing-demo-list p,
.landing-why-grid p,
.landing-final-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.landing-band {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100vw - 1160px) / 2));
  padding-left: max(18px, calc((100vw - 1160px) / 2));
  background: #eef5f1;
}

.landing-band .landing-section-heading,
.landing-band .landing-model-grid {
  width: min(1160px, 100%);
  margin-right: auto;
  margin-left: auto;
}

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

.landing-feature-grid article {
  min-height: 178px;
  border-top: 5px solid var(--green);
}

.landing-feature-grid article:nth-child(2),
.landing-feature-grid article:nth-child(6) {
  border-top-color: var(--blue);
}

.landing-feature-grid article:nth-child(3),
.landing-feature-grid article:nth-child(7) {
  border-top-color: var(--coral);
}

.landing-feature-grid article:nth-child(4) {
  border-top-color: var(--gold);
}

.landing-demo-section {
  display: grid;
  gap: 20px;
}

.landing-demo-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.landing-demo-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.landing-demo-list span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.landing-why-section {
  border-top: 1px solid var(--line);
}

.landing-why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-why-grid p {
  padding: 0 0 0 14px;
  border-left: 4px solid var(--green);
}

.landing-why-grid p:nth-child(2) {
  border-left-color: var(--blue);
}

.landing-why-grid p:nth-child(3) {
  border-left-color: var(--coral);
}

.landing-final-cta {
  display: grid;
  justify-items: start;
  gap: 14px;
  width: min(1160px, calc(100% - 36px));
  margin: 16px auto 72px;
  padding: 28px;
  border-radius: var(--radius);
  background: #17201c;
  color: #fff;
}

.landing-final-cta .landing-kicker,
.landing-final-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.landing-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 18px 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.landing-footer span {
  color: var(--ink);
}

@media (max-width: 940px) {
  .landing-nav {
    gap: 10px;
  }

  .landing-nav nav {
    display: none;
  }

  .landing-hero {
    min-height: calc(84svh - 74px);
  }

  .landing-hero-inner {
    min-height: calc(84svh - 74px);
  }

  .landing-hero h1 {
    font-size: 52px;
  }

  .landing-positioning {
    font-size: 24px;
  }

  .landing-split-grid,
  .landing-model-grid,
  .landing-peek,
  .landing-why-grid {
    grid-template-columns: 1fr;
  }

  .landing-feature-grid,
  .landing-demo-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .landing-nav {
    min-height: 66px;
    padding: 12px 14px;
  }

  .landing-wordmark {
    font-size: 16px;
  }

  .landing-nav-cta {
    min-height: 36px;
    padding: 0 10px;
  }

  .landing-hero {
    min-height: calc(84svh - 66px);
  }

  .landing-hero-image {
    object-position: 58% center;
  }

  .landing-hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 20, 16, 0.92), rgba(12, 20, 16, 0.56)),
      linear-gradient(180deg, rgba(12, 20, 16, 0.1), rgba(12, 20, 16, 0.78));
  }

  .landing-hero-inner {
    width: auto;
    min-height: calc(84svh - 66px);
    gap: 14px;
    margin: 0;
    padding: 36px 14px 30px;
  }

  .landing-hero h1 {
    font-size: 46px;
  }

  .landing-positioning {
    max-width: 100%;
    font-size: 20px;
  }

  .landing-hero-copy {
    max-width: 100%;
    font-size: 14px;
  }

  .landing-actions,
  .landing-demo-cta {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .landing-button {
    width: 100%;
  }

  .landing-hero-points,
  .landing-peek,
  .landing-feature-grid,
  .landing-demo-list {
    grid-template-columns: 1fr;
  }

  .landing-hero-points {
    gap: 8px;
    max-width: none;
  }

  .landing-hero-points div {
    padding: 10px;
  }

  .landing-peek {
    width: auto;
    margin-right: 14px;
    margin-left: 14px;
    transform: translateY(-16px);
  }

  .landing-section {
    width: auto;
    margin-right: 14px;
    margin-left: 14px;
    padding: 44px 0;
  }

  .landing-section-heading h2,
  .landing-final-cta h2 {
    font-size: 28px;
  }

  .landing-band {
    padding-right: 14px;
    padding-left: 14px;
  }

  .landing-demo-list li {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .landing-demo-list span {
    width: 34px;
    height: 34px;
  }

  .landing-final-cta {
    width: auto;
    margin-right: 14px;
    margin-bottom: 46px;
    margin-left: 14px;
    padding: 20px;
  }

  .landing-footer {
    flex-wrap: wrap;
  }
}
