@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
  /* FlaroCity Verified 8px Rhythm System */
  --ui8: 8px;
  --ui12: 12px;
  --ui16: 16px;
  --ui20: 20px;
  --ui24: 24px;
  --ui32: 32px;
  --ui40: 40px;
  --ui48: 48px;
  --ui64: 64px;

  --bg: #050711;
  --bg2: #090c19;
  --panel: rgba(13, 17, 34, 0.85);
  --panel2: rgba(18, 23, 48, 0.75);
  --line: rgba(138, 112, 255, 0.2);
  --line2: rgba(68, 199, 255, 0.22);
  --text: #f5f7ff;
  --muted: #b4beed;
  --muted2: #7e8ab5;
  --purple: #b36cff;
  --pink: #ff54d7;
  --blue: #6b7cff;
  --cyan: #00f0ff;
  --green: #10b981;
  --amber: #f59e0b;
  --danger: #f43f5e;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --glow-cyan: 0 0 18px rgba(0, 240, 255, 0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --shell: 1240px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}



body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at 50% 0%, rgba(108,76,255,0.08), transparent 60%);
}

body::after {
  content: "";
  position: fixed;
  z-index: -1;
  top: 10%;
  left: 5%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  pointer-events: none;
  background: #00f0ff;
  box-shadow: 120px 80px var(--purple), 300px 150px var(--cyan), 450px 40px var(--pink), 600px 200px var(--blue), 800px 90px var(--purple), 950px 250px var(--cyan), 1100px 60px var(--pink), 1300px 180px var(--blue), 1500px 120px var(--purple), 1700px 210px var(--cyan), 250px 320px var(--pink), 500px 400px var(--blue), 750px 350px var(--purple), 1050px 420px var(--cyan), 1350px 380px var(--pink), 1650px 450px var(--blue), 150px 550px var(--purple), 400px 620px var(--cyan), 650px 580px var(--pink), 900px 650px var(--blue), 1200px 590px var(--purple), 1450px 680px var(--cyan), 1800px 610px var(--pink);
  filter: drop-shadow(0 0 6px currentColor);
  opacity: 0.6;
  animation: bg-drift 15s ease-in-out infinite alternate;
}

@keyframes bg-drift {
  from { transform: translate(0, 0); }
  to { transform: translate(25px, -20px); }
}

@media (prefers-reduced-motion: reduce) {
  body::after { animation: none; }
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

button, input, select, textarea {
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', 'Inter', sans-serif;
  letter-spacing: -0.02em;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto;
}

/* Site Header - Fixed top relative layout to prevent content overlap */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 7, 18, 0.92);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(175, 147, 255, 0.14);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 19px;
  font-weight: 800;
}

.brand img {
  height: 38px;
  width: auto;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 28px);
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 6px 14px;
  border-radius: 10px;
  color: #c8c8d7;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #ffffff;
  background: rgba(179, 108, 255, 0.14);
  border-color: rgba(179, 108, 255, 0.35);
  box-shadow: inset 0 0 14px rgba(179, 108, 255, 0.1), 0 0 12px rgba(179, 108, 255, 0.25);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.nav-links a.active {
  color: #ffffff;
  background: rgba(0, 240, 255, 0.12);
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: inset 0 0 14px rgba(0, 240, 255, 0.12), 0 0 14px rgba(0, 240, 255, 0.3);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--pink));
  border-radius: 99px;
  box-shadow: 0 0 8px var(--cyan);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Compact Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--ui8);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 50%, var(--cyan) 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  box-shadow: 0 4px 15px rgba(179, 108, 255, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(0, 240, 255, 0.4);
}

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--muted);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.mobile-menu {
  display: none;
}

/* Hero Section */
.hero {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 0 clamp(40px, 5vw, 64px);
  overflow: visible;
  text-align: left;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.hero-grid > :first-child { max-width: 620px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--ui8);
  padding: 4px 12px;
  border-radius: 99px;
  background: rgba(179, 108, 255, 0.1);
  border: 1px solid rgba(179, 108, 255, 0.25);
  color: #e2c5ff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: var(--ui8);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  font-weight: 800;
  margin-bottom: var(--ui16);
}

.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 50%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: var(--ui20);
  max-width: 560px;
  text-align: left;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: var(--ui12);
  margin-bottom: var(--ui20);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: var(--ui12) var(--ui20);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted2);
  font-weight: 600;
}

.hero-note .check {
  color: var(--green);
  font-weight: 900;
}

/* Compact Hero Card */
.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(18, 23, 48, 0.85) 0%, rgba(10, 13, 28, 0.85) 100%);
  border-radius: var(--radius);
  padding: var(--ui16);
  box-shadow: var(--shadow);
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--ui8);
  padding-bottom: var(--ui8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
  font-size: 11px;
  font-weight: 700;
}

.status-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.preview-stack {
  display: flex;
  flex-direction: column;
  gap: var(--ui8);
}

.preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.iconbox {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 15px;
  background: rgba(179, 108, 255, 0.15);
  border: 1px solid rgba(179, 108, 255, 0.2);
}

.preview-row strong {
  display: block;
  font-size: 13px;
  color: #fff;
}

.preview-row span {
  color: var(--muted2);
  font-size: 11px;
}

.badge {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 99px;
  background: rgba(107, 124, 255, 0.15);
  border: 1px solid rgba(107, 124, 255, 0.3);
  color: #d2d8ff;
  font-weight: 800;
}

/* Compact Section & Grids */
.section {
  padding: clamp(40px, 6vw, 80px) 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--ui12);
  margin-bottom: var(--ui24);
}

.section-head h2 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 4px;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  max-width: 580px;
  font-size: 14px;
  text-align: center;
  margin-inline: auto;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ui16);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--ui16);
}

.card {
  border: 1.5px solid rgba(0, 240, 255, 0.45);
  background: linear-gradient(180deg, rgba(16, 20, 44, 0.85) 0%, rgba(10, 12, 28, 0.85) 100%);
  border-radius: var(--radius);
  min-height: 100%;
  padding: var(--ui24);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: inset 0 0 14px rgba(0, 240, 255, 0.08), 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card h3, .card h2, .card p, .card span {
  text-align: center;
}

.grid-4 .card:nth-child(1),
.type-grid .type-card:nth-child(1) {
  border-color: rgba(179, 108, 255, 0.6);
  box-shadow: inset 0 0 16px rgba(179, 108, 255, 0.12), 0 8px 24px rgba(179, 108, 255, 0.15);
}

.grid-4 .card:nth-child(2),
.type-grid .type-card:nth-child(2) {
  border-color: rgba(0, 240, 255, 0.6);
  box-shadow: inset 0 0 16px rgba(0, 240, 255, 0.12), 0 8px 24px rgba(0, 240, 255, 0.15);
}

.grid-4 .card:nth-child(3),
.type-grid .type-card:nth-child(3) {
  border-color: rgba(255, 84, 215, 0.6);
  box-shadow: inset 0 0 16px rgba(255, 84, 215, 0.12), 0 8px 24px rgba(255, 84, 215, 0.15);
}

.grid-4 .card:nth-child(4),
.type-grid .type-card:nth-child(4) {
  border-color: rgba(16, 185, 129, 0.6);
  box-shadow: inset 0 0 16px rgba(16, 185, 129, 0.12), 0 8px 24px rgba(16, 185, 129, 0.15);
}

.grid-3 .card:nth-child(1) {
  border-color: rgba(0, 240, 255, 0.6);
  box-shadow: inset 0 0 16px rgba(0, 240, 255, 0.12), 0 8px 24px rgba(0, 240, 255, 0.15);
}

.grid-3 .card:nth-child(2) {
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: inset 0 0 16px rgba(245, 158, 11, 0.12), 0 8px 24px rgba(245, 158, 11, 0.15);
}

.grid-3 .card:nth-child(3) {
  border-color: rgba(179, 108, 255, 0.6);
  box-shadow: inset 0 0 16px rgba(179, 108, 255, 0.12), 0 8px 24px rgba(179, 108, 255, 0.15);
}

.steps .card:nth-child(1) {
  border-color: rgba(0, 240, 255, 0.6);
}
.steps .card:nth-child(2) {
  border-color: rgba(255, 84, 215, 0.6);
}
.steps .card:nth-child(3) {
  border-color: rgba(179, 108, 255, 0.6);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px currentColor, inset 0 0 20px currentColor;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: var(--ui8);
  font-size: 18px;
  background: linear-gradient(135deg, rgba(179, 108, 255, 0.2), rgba(0, 240, 255, 0.15));
  border: 1px solid rgba(179, 108, 255, 0.25);
}

.card h3 {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: var(--ui8);
  color: var(--cyan);
  font-weight: 700;
  font-size: 12px;
}

/* Steps System */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ui8);
}

.step {
  position: relative;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  margin-bottom: var(--ui8);
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 4px 15px rgba(179, 108, 255, 0.3);
}

/* CTA Card */
.cta {
  border: 1px solid rgba(179, 108, 255, 0.25);
  background:
    radial-gradient(circle at 15% 0%, rgba(179, 108, 255, 0.18), transparent 45%),
    radial-gradient(circle at 85% 100%, rgba(0, 240, 255, 0.15), transparent 40%),
    linear-gradient(180deg, rgba(16, 20, 44, 0.9), rgba(9, 11, 26, 0.9));
  border-radius: var(--radius);
  padding: var(--ui24) var(--ui32);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ui8);
  box-shadow: var(--shadow);
}

.cta h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
}

.cta p {
  color: var(--muted);
  font-size: 14px;
}

/* Footer */
.footer {
  padding: var(--ui8) 0;
  color: var(--muted2);
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: var(--ui8);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--ui8);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--ui8);
}

.footer-brand img {
  height: 24px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: var(--ui8);
}

.footer-links a {
  color: var(--muted2);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--cyan);
}

/* Setup Wizard Compact Styles */
.page-hero {
  padding: var(--ui8) 0 var(--ui16);
  text-align: center;
}

.page-hero h1 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: var(--ui8);
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
}

.setup-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--ui8);
  padding-bottom: var(--ui8);
}

.setup-sidebar {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 16, 35, 0.8);
  border-radius: var(--radius);
  padding: var(--ui8);
}

.setup-step-link {
  display: flex;
  gap: var(--ui8);
  align-items: center;
  padding: var(--ui8) var(--ui8);
  border-radius: var(--radius-sm);
  color: var(--muted);
  cursor: pointer;
}

.setup-step-link.active {
  background: rgba(179, 108, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(179, 108, 255, 0.25);
}

.setup-step-link .n {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 900;
  font-size: 11px;
  flex: 0 0 auto;
}

.setup-step-link.active .n {
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  border-color: transparent;
  color: #fff;
}

.setup-step-link strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.setup-step-link small {
  display: block;
  color: var(--muted2);
  font-size: 10px;
}

.setup-panel {
  border: 1.5px solid rgba(0, 240, 255, 0.45);
  background: linear-gradient(180deg, rgba(16, 20, 44, 0.85), rgba(10, 12, 28, 0.85));
  border-radius: var(--radius);
  padding: var(--ui16);
  box-shadow: inset 0 0 16px rgba(0, 240, 255, 0.08), var(--shadow);
  text-align: center;
}

.setup-panel h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
  text-align: center;
}

.setup-panel .intro {
  margin-bottom: var(--ui16);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--ui8);
}

.field {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 700;
  font-size: 12px;
  color: #e8ebff;
  text-align: center;
  width: 100%;
}

.hint {
  font-size: 11px;
  color: var(--muted2);
}

input, select, textarea {
  width: 100%;
  border: 1.5px solid rgba(0, 240, 255, 0.3);
  color: #fff;
  background: rgba(11, 15, 33, 0.85);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  outline: none;
  font-size: 13px;
  text-align: center;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.15);
}

textarea {
  min-height: 80px;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: var(--ui8) 0;
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ui8);
}

.type-card {
  border: 1.5px solid rgba(179, 108, 255, 0.4);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  padding: var(--ui12);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.type-card:hover, .type-card.active {
  border-color: var(--cyan);
  background: rgba(0, 240, 255, 0.1);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.25);
}

.type-card strong {
  display: block;
  font-size: 13px;
  color: #fff;
  text-align: center;
}

.type-card span {
  color: var(--muted2);
  font-size: 11px;
  text-align: center;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--ui12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(0, 240, 255, 0.3);
  margin-bottom: var(--ui8);
  text-align: center;
}

.toggle-row div {
  text-align: left;
}

.toggle-row:last-child {
  border-bottom: 0;
}

.toggle-row strong {
  display: block;
  font-size: 13px;
  color: #fff;
}

.toggle-row span {
  display: block;
  color: var(--muted2);
  font-size: 11px;
}

.switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex: 0 0 auto;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #232943;
  border-radius: 99px;
  transition: 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.slider:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  background: #fff;
  transition: 0.2s ease;
}

.switch input:checked + .slider {
  background: linear-gradient(90deg, var(--purple), var(--cyan));
}

.switch input:checked + .slider:before {
  transform: translateX(18px);
}

.setup-actions {
  margin-top: var(--ui8);
  display: flex;
  justify-content: flex-end;
  gap: var(--ui8);
}

.preview-box {
  padding: var(--ui8);
  border: 1px dashed rgba(0, 240, 255, 0.35);
  border-radius: var(--radius-sm);
  background: rgba(0, 240, 255, 0.04);
}

.preview-box code {
  display: block;
  color: #d1e8ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  word-break: break-all;
}

.notice {
  display: flex;
  gap: var(--ui8);
  padding: var(--ui8);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 240, 255, 0.25);
  background: rgba(0, 240, 255, 0.06);
  color: #d9f6ff;
}

.notice strong {
  display: block;
  font-size: 13px;
  color: #fff;
}

.notice p {
  margin: 2px 0 0;
  color: #a8cbd6;
  font-size: 12px;
}

/* Site Footer matching flarocity.com compact rhythm */
.site-footer {
  padding: 24px 0 14px;
  background: rgba(3, 4, 9, 0.96);
  border-top: 1px solid rgba(175, 147, 255, 0.12);
  margin-top: var(--ui24);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(120px, 1fr));
  gap: 20px;
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand img {
  width: 105px;
  height: auto;
  margin-bottom: 6px;
}
.footer-brand p {
  max-width: 300px;
  margin: 0 auto;
  color: #a7a8ba;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}
.footer-column {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 4px;
  text-align: center;
}
.footer-column h2 {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 900;
  width: 100%;
  text-align: center;
}
.footer-column:nth-child(2) h2 { color: #62e3ff; }
.footer-column:nth-child(3) h2 { color: #ff72c9; }
.footer-column:nth-child(4) h2 { color: #ffc66d; }

.footer-column a {
  color: #bcb5df;
  font-size: 12px;
  line-height: 1.35;
  width: 100%;
  text-align: center;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
.footer-column a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 6px;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #7f8194;
  font-size: 12px;
}
.footer-bottom p {
  text-align: center;
  width: 100%;
  margin: 0;
}
.footer-bottom .legal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.footer-bottom .legal-links a {
  color: #bcb5df;
  font-size: 12px;
}
.footer-bottom .legal-links a {
  color: #bcb5df;
}
.footer-bottom .legal-links a:hover {
  color: #ffffff;
}

/* Responsiveness */
@media (min-width: 981px) {
  .shell { width: min(calc(100% - 64px), 1200px); }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--ui16); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .steps { grid-template-columns: 1fr 1fr; }
  .setup-layout { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .shell { width: min(calc(100% - 36px), var(--shell)); }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-menu { display: inline-flex; }
  .hero { padding-top: 48px; text-align: center; }
  .hero p { margin-inline: auto; text-align: center; }
  .hero-actions, .hero-notes { justify-content: center; }
  .hero h1 { font-size: 38px; }
  .grid-3, .grid-4, .steps { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; padding: var(--ui8); }
  .section-head { align-items: flex-start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .type-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .shell { width: min(calc(100% - 24px), var(--shell)); }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-brand {
    grid-column: auto;
  }
}

@media (max-width: 390px) {
  .shell { width: min(calc(100% - 20px), var(--shell)); }
}

/* Live homepage refinement: strict 8px spacing grid. */

body::before {
  background: linear-gradient(180deg, rgba(5,7,17,.3), rgba(5,7,17,.62)), radial-gradient(circle at 50% 10%, rgba(108,76,255,.13), transparent 52%);
}
.hero { padding: 64px 0 48px; }
.hero-grid { gap: 48px; }
.hero-card { padding: 16px; border-color: rgba(0,240,255,.28); background: linear-gradient(145deg, rgba(15,20,45,.94), rgba(8,11,26,.9)); }
.activity-grid { gap: 8px; }
.activity-item { min-height: 80px; padding: 16px; }
.section { padding: 64px 0; }
.section-head { gap: 8px; margin-bottom: 32px; }
.section-head h2 { font-size: clamp(26px, 3vw, 34px); }
#tools, #boards, #mascots, #how { position: relative; }
#tools::before, #mascots::before { content: ""; position: absolute; inset: 10% 0; z-index: -1; background: radial-gradient(ellipse at center, rgba(34,39,91,.22), transparent 68%); pointer-events: none; }
.grid-3, .grid-4, .steps { gap: 16px; }
.card { padding: 24px; border-width: 1px; background: linear-gradient(150deg, rgba(20,25,54,.9), rgba(8,11,28,.94)); box-shadow: 0 16px 32px rgba(0,0,0,.28), inset 0 0 16px rgba(0,240,255,.035); }
.card:hover { transform: translateY(-5px); }
#tools .card { min-height: 208px; justify-content: center; }
#boards .card { min-height: 192px; justify-content: flex-start; }
#mascots .card { padding: 16px; }
#mascots .card img { margin-bottom: 16px !important; }
#how { padding: 64px 0; background: linear-gradient(180deg, rgba(8,10,25,0), rgba(14,18,43,.6), rgba(8,10,25,0)); }
#how .card { min-height: 176px; justify-content: center; }
.cta { padding: 24px 32px; border-color: rgba(179,108,255,.4); background: radial-gradient(circle at 15% 0%, rgba(179,108,255,.22), transparent 42%), radial-gradient(circle at 85% 100%, rgba(0,240,255,.18), transparent 42%), linear-gradient(135deg, rgba(19,22,53,.96), rgba(9,12,29,.96)); }
.footer { margin-top: 0; padding: 24px 0; }
@media (max-width: 768px) {
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  .hero { padding: 48px 0 32px; }
  .hero-card { margin-top: 8px; }
  .home-showcase-content { padding: 24px; }
  .home-showcase, .home-showcase img { min-height: 224px; height: 224px; }
  #tools .card, #boards .card, #how .card { min-height: 0; }
}


/* ClubOS Status Badges matching Asset UI Kit */
.badge-live {
  background: rgba(255, 62, 207, 0.18) !important;
  border: 1px solid rgba(255, 62, 207, 0.5) !important;
  color: #ff85e4 !important;
  box-shadow: 0 0 10px rgba(255, 62, 207, 0.3) !important;
}

.badge-ready {
  background: rgba(108, 76, 255, 0.18) !important;
  border: 1px solid rgba(108, 76, 255, 0.5) !important;
  color: #bfa8ff !important;
  box-shadow: 0 0 10px rgba(108, 76, 255, 0.3) !important;
}

.badge-synced {
  background: rgba(58, 139, 255, 0.18) !important;
  border: 1px solid rgba(58, 139, 255, 0.5) !important;
  color: #8ac0ff !important;
  box-shadow: 0 0 10px rgba(58, 139, 255, 0.3) !important;
}

.badge-active {
  background: rgba(0, 255, 168, 0.18) !important;
  border: 1px solid rgba(0, 255, 168, 0.5) !important;
  color: #6effcf !important;
  box-shadow: 0 0 10px rgba(0, 255, 168, 0.3) !important;
}

.badge-offline {
  background: rgba(126, 138, 181, 0.18) !important;
  border: 1px solid rgba(126, 138, 181, 0.4) !important;
  color: #b4beed !important;
}

/* Homepage showcase banner */
.home-showcase {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border: 1px solid rgba(179,108,255,.32);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0,0,0,.42);
}

.home-showcase img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  opacity: .72;
}

.home-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,13,23,.98) 0%, rgba(11,13,23,.55) 52%, rgba(11,13,23,.88) 100%);
}

.home-showcase-content {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(24px, 5vw, 56px);
  max-width: 680px;
}

.home-showcase-content h2 { margin: 9px 0 6px; font-size: clamp(24px, 3vw, 36px); }
.home-showcase-content p { color: var(--muted); font-size: 14px; }

/* ClubOS owner control center */
.dashboard-
.dashboard-body::after { opacity: .18; }
.dashboard-shell { padding-top: 28px; padding-bottom: 56px; }
.dashboard-kicker { color: var(--cyan); font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.dashboard-heading { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:24px; }
.dashboard-heading.compact { align-items:center; }
.dashboard-heading h1 { margin:4px 0; font-size:clamp(27px,3vw,38px); }
.dashboard-heading p:not(.dashboard-kicker) { color:var(--muted); }
.dashboard-heading > div:first-child { max-width:720px; }
.dashboard-actions { display:flex; align-items:center; gap:10px; flex:0 0 auto; }
.dashboard-actions .btn { min-height:44px; padding-inline:18px; }
.account-chip { max-width:180px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; color:#dffbff; font-size:13px; font-weight:700; }
.mobile-nav { display:none; position:relative; }
.mobile-nav summary { list-style:none; }
.mobile-nav summary::-webkit-details-marker { display:none; }
.mobile-nav-panel { position:absolute; right:0; top:48px; min-width:220px; padding:10px; border:1px solid var(--line2); border-radius:12px; background:#0b0f21; box-shadow:var(--shadow); display:grid; gap:4px; }
.public-mobile-nav { z-index:40; }
.public-mobile-nav .mobile-nav-panel { z-index:60; }
.mobile-nav-panel a,.mobile-nav-panel button { width:100%; padding:11px 12px; color:#fff; text-align:left; border:0; border-radius:8px; background:transparent; font:inherit; }
.mobile-nav-panel a:hover,.mobile-nav-panel button:hover { background:rgba(0,240,255,.08); }
.flash-message { margin-bottom:18px; padding:13px 16px; border-radius:10px; border:1px solid; }
.flash-message.success { border-color:rgba(16,185,129,.4); background:rgba(16,185,129,.1); color:#baf6dc; }
.flash-message.error { border-color:rgba(244,63,94,.4); background:rgba(244,63,94,.1); color:#ffd2da; }
.flash-message ul { margin:5px 0 0 18px; }
.metric-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px; margin-bottom:18px; }
.metric-card { min-width:0; min-height:148px; padding:18px; border:1px solid rgba(255,255,255,.1); border-radius:14px; background:linear-gradient(160deg,rgba(18,23,48,.92),rgba(10,13,28,.92)); box-shadow:0 8px 24px rgba(0,0,0,.24); display:flex; flex-direction:column; align-items:flex-start; }
.metric-card:nth-child(1) { border-color:rgba(0,240,255,.28); }
.metric-card:nth-child(2) { border-color:rgba(179,108,255,.3); }
.metric-card:nth-child(3) { border-color:rgba(16,185,129,.3); }
.metric-card:nth-child(4) { border-color:rgba(245,158,11,.3); }
.metric-top { width:100%; display:flex; align-items:center; gap:9px; min-width:0; }
.metric-icon { width:28px; height:28px; flex:0 0 auto; display:grid; place-items:center; border-radius:8px; border:1px solid; font-size:13px; font-weight:900; }
.metric-icon.cyan { color:var(--cyan); border-color:rgba(0,240,255,.3); background:rgba(0,240,255,.08); }
.metric-icon.purple { color:#cfb5ff; border-color:rgba(179,108,255,.35); background:rgba(179,108,255,.1); }
.metric-icon.green { color:#6ee7b7; border-color:rgba(16,185,129,.35); background:rgba(16,185,129,.1); }
.metric-icon.gold { color:#ffd18a; border-color:rgba(245,158,11,.35); background:rgba(245,158,11,.1); }
.metric-label { min-width:0; color:var(--muted); font-size:12px; font-weight:800; line-height:1.25; }
.metric-card strong { margin:8px 0 4px; color:#fff; font-size:30px; line-height:1.05; }
.metric-card strong small { color:var(--muted2); font-size:15px; }
.metric-card strong.metric-event { font-size:18px; line-height:1.25; }
.metric-card > span:last-child { color:var(--muted2); font-size:12px; }
.dashboard-panel { border:1px solid rgba(255,255,255,.1); border-radius:16px; background:rgba(9,12,26,.92); box-shadow:var(--shadow); overflow:hidden; }
.panel-heading { display:flex; justify-content:space-between; align-items:flex-end; gap:18px; padding:20px; border-bottom:1px solid rgba(255,255,255,.08); }
.panel-heading h2 { font-size:21px; }
.panel-heading p { color:var(--muted2); font-size:12px; }
.health-summary { display:flex; gap:14px; flex-wrap:wrap; color:var(--muted); font-size:12px; }
.health-dot { display:inline-block; width:8px; height:8px; margin-right:5px; border-radius:50%; }
.health-dot.connected { background:#10b981; }.health-dot.delayed { background:#f59e0b; }.health-dot.offline { background:#f43f5e; }
.board-row { display:grid; grid-template-columns:48px minmax(220px,1fr) minmax(230px,.8fr) auto; gap:14px; align-items:center; padding:16px 20px; border-bottom:1px solid rgba(255,255,255,.065); }
.board-row:last-child { border-bottom:0; }
.board-row:hover { background:rgba(255,255,255,.025); }
.board-icon { width:44px; height:44px; display:grid; place-items:center; border:1px solid rgba(0,240,255,.25); border-radius:11px; background:linear-gradient(135deg,rgba(179,108,255,.2),rgba(0,240,255,.1)); color:#fff; font-size:12px; font-weight:900; }
.board-main h3 { font-size:15px; }.board-main p { color:var(--muted); font-size:12px; }.board-help { color:var(--muted2); font-size:11px; }
.board-status { display:flex; flex-direction:column; align-items:flex-start; gap:4px; }
.board-status > span:last-child { color:var(--muted2); font-size:11px; }
.status-badge { display:inline-flex; align-items:center; width:max-content; padding:4px 9px; border-radius:99px; font-size:11px; font-weight:800; border:1px solid; }
.status-badge.connected { color:#6ee7b7; background:rgba(16,185,129,.12); border-color:rgba(16,185,129,.35); }
.status-badge.delayed { color:#ffd895; background:rgba(245,158,11,.12); border-color:rgba(245,158,11,.35); }
.status-badge.offline { color:#ffb0be; background:rgba(244,63,94,.12); border-color:rgba(244,63,94,.35); }
.status-badge.setup { color:#cfc2ff; background:rgba(179,108,255,.12); border-color:rgba(179,108,255,.35); }
.btn-manage { min-width:132px; min-height:40px; border-color:rgba(0,240,255,.2); background:rgba(0,240,255,.055); }
.btn-manage:hover { border-color:rgba(0,240,255,.45); background:rgba(0,240,255,.1); }
.login-card { padding:clamp(22px,4vw,34px); text-align:left; }
.login-card h2,.login-card > p.intro { text-align:center; }
.login-card .field { align-items:stretch; text-align:left; }
.login-card .field label,.login-card .field input { text-align:left; }
.field-help { margin-top:6px; color:var(--muted2); font-size:11px; }
.login-submit { width:100%; min-height:48px; font-size:14px; }
.login-help { margin:16px auto 0; max-width:390px; color:var(--muted2); font-size:11px; line-height:1.55; text-align:center; }
.login-help strong { color:#dce4ff; }
.pricing-grid { gap:16px; align-items:stretch; }
.pricing-card { min-width:0; padding:24px; display:flex; flex-direction:column; text-align:left; }
.pricing-card.starter { border-color:rgba(0,240,255,.45); }
.pricing-card.featured { border-color:rgba(179,108,255,.7); box-shadow:inset 0 0 20px rgba(179,108,255,.15),0 0 30px rgba(179,108,255,.2); }
.pricing-card.network { border-color:rgba(255,84,215,.4); }
.pricing-card h3 { min-height:58px; font-size:23px; line-height:1.2; }
.plan-label { width:max-content; margin-bottom:14px; }
.pricing-card.starter .plan-label { color:var(--cyan); border:1px solid rgba(0,240,255,.3); background:rgba(0,240,255,.13); }
.pricing-card.network .plan-label { color:var(--pink); border:1px solid rgba(255,84,215,.3); background:rgba(255,84,215,.13); }
.plan-price { margin:12px 0 4px; color:#fff; font-size:24px; font-weight:900; }
.plan-state { min-height:40px; margin-bottom:16px; color:var(--muted); font-size:12px; font-weight:700; }
.pricing-card.starter .plan-state { color:var(--cyan); }
.pricing-card.featured .plan-state { color:#ff9ce8; }
.plan-features { flex:1; margin:0 0 24px; padding:0; display:flex; flex-direction:column; gap:10px; list-style:none; color:#d5d7e8; font-size:13px; }
.plan-action { width:100%; min-height:46px; margin-top:auto; }
.plan-discord { border-color:rgba(255,84,215,.35); background:linear-gradient(135deg,rgba(179,108,255,.22),rgba(255,84,215,.2)); }
@media (max-width:768px) { .pricing-card h3,.plan-state { min-height:0; } }
.docs-notice { margin:14px 0 16px; }
.docs-action { min-height:44px; margin-top:4px; }
.docs-steps { margin:16px 0; padding:0; display:grid; gap:10px; list-style:none; }
.docs-steps li { display:flex; gap:12px; padding:14px; border:1px solid rgba(255,255,255,.075); border-radius:11px; background:rgba(255,255,255,.025); }
.docs-steps li > span { width:30px; height:30px; flex:0 0 auto; display:grid; place-items:center; border-radius:9px; background:linear-gradient(135deg,var(--purple),var(--cyan)); color:#fff; font-weight:900; }
.docs-steps p { margin-top:3px; color:var(--muted); font-size:12px; }
.trouble-list { margin:16px 0 0; padding:0; display:grid; grid-template-columns:1fr 1fr; gap:10px; list-style:none; }
.trouble-list li { padding:14px; border:1px solid rgba(255,255,255,.075); border-radius:11px; background:rgba(255,255,255,.025); display:flex; flex-direction:column; gap:4px; }
.trouble-list span { color:var(--muted); font-size:12px; }
@media (max-width:620px) { .trouble-list { grid-template-columns:1fr; } }
.empty-state { padding:44px 20px; text-align:center; }.empty-state p { margin:6px auto 16px; max-width:560px; color:var(--muted); }
.help-strip { margin-top:16px; padding:15px 18px; border:1px solid rgba(0,240,255,.14); border-radius:12px; background:rgba(0,240,255,.045); display:flex; align-items:center; justify-content:space-between; gap:18px; }
.help-strip div { display:flex; flex-direction:column; }.help-strip span { color:var(--muted); font-size:12px; }.help-strip a { color:var(--cyan); font-weight:800; font-size:12px; }
.dashboard-footer { padding:18px 0; border-top:1px solid rgba(255,255,255,.08); background:#050711; color:var(--muted2); font-size:12px; text-align:center; }
.dashboard-footer a { color:var(--cyan); }
.connect-layout { display:grid; grid-template-columns:minmax(280px,.7fr) minmax(360px,1fr); gap:18px; align-items:start; }
.simple-steps,.connect-card,.board-info-card,.settings-card { border:1px solid rgba(255,255,255,.1); border-radius:16px; background:rgba(10,13,28,.93); box-shadow:var(--shadow); }
.simple-steps { list-style:none; padding:16px; display:grid; gap:10px; }
.simple-steps li { display:flex; gap:13px; padding:14px; border-radius:11px; background:rgba(255,255,255,.025); }
.simple-steps li.current { border:1px solid rgba(0,240,255,.22); background:rgba(0,240,255,.055); }
.simple-steps li > span { width:30px; height:30px; flex:0 0 auto; display:grid; place-items:center; border-radius:9px; background:linear-gradient(135deg,var(--purple),var(--cyan)); font-weight:900; }
.simple-steps strong { display:block; }.simple-steps p { color:var(--muted); font-size:12px; }.simple-steps code { color:#fff; }
.connect-card { padding:26px; }.connect-card h2 { margin:4px 0; font-size:24px; }.connect-card > p { margin-bottom:18px; color:var(--muted); }
.connect-card label { margin:14px 0 6px; text-align:left; }.connect-card input { text-align:left; font-size:16px; }.connect-card #code { text-align:center; letter-spacing:.16em; font-size:22px; font-weight:900; text-transform:uppercase; }
.form-step { color:var(--cyan); font-size:11px; font-weight:900; letter-spacing:.14em; }.btn-wide { width:100%; min-height:46px; margin-top:18px; padding:12px 16px; }
.btn-back { min-height:42px; padding-inline:15px; }
.connect-card .privacy-note { margin:12px 0 0; color:var(--muted2); font-size:11px; text-align:center; }
.heading-actions { display:flex; align-items:center; gap:10px; }
.board-heading-meta { display:flex; align-items:center; flex-wrap:wrap; gap:9px; }
.board-heading-meta p { margin:0; }
.card-title-row { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.connection-light { width:12px; height:12px; flex:0 0 auto; border-radius:50%; background:var(--muted2); box-shadow:0 0 0 5px rgba(126,138,181,.09); }
.connection-light.connected { background:#10b981; box-shadow:0 0 0 5px rgba(16,185,129,.1),0 0 14px rgba(16,185,129,.55); }
.connection-light.delayed { background:#f59e0b; box-shadow:0 0 0 5px rgba(245,158,11,.1),0 0 14px rgba(245,158,11,.45); }
.connection-light.offline { background:#f43f5e; box-shadow:0 0 0 5px rgba(244,63,94,.1),0 0 14px rgba(244,63,94,.4); }
.connection-light.setup { background:#b36cff; box-shadow:0 0 0 5px rgba(179,108,255,.1),0 0 14px rgba(179,108,255,.45); }
.board-edit-layout { display:grid; grid-template-columns:290px minmax(0,1fr); gap:18px; align-items:start; }
.board-info-card,.settings-card { padding:22px; }.board-info-card h2,.settings-card h2 { margin-bottom:4px; }
.board-info-card dl { margin:16px 0; display:grid; gap:10px; }.board-info-card dl div { padding-bottom:10px; border-bottom:1px solid rgba(255,255,255,.07); }.board-info-card dt { color:var(--muted2); font-size:11px; }.board-info-card dd { color:#fff; font-weight:700; }
.board-info-card > p,.settings-card > p { color:var(--muted); font-size:12px; }.safe-id { margin-top:18px; padding:10px; border-radius:9px; background:rgba(255,255,255,.03); }.safe-id span { display:block; color:var(--muted2); font-size:10px; }.safe-id code { color:#dbe5ff; font-size:11px; word-break:break-all; }
.settings-fields { margin-top:18px; display:grid; grid-template-columns:1fr 1fr; gap:14px; }.field.align-left { align-items:stretch; text-align:left; }.field.align-left label,.field.align-left input,.field.align-left textarea { text-align:left; }
.save-bar { margin-top:20px; padding-top:16px; border-top:1px solid rgba(255,255,255,.08); display:flex; align-items:center; justify-content:space-between; gap:16px; }.save-bar > span { color:var(--muted2); font-size:11px; }.save-bar .btn { min-width:150px; min-height:44px; }

@media (max-width: 1000px) {
  .metric-grid { grid-template-columns:1fr 1fr; }
  .board-row { grid-template-columns:48px 1fr auto; }.board-status { grid-column:2 / 3; }.board-row > .btn { grid-column:3; grid-row:1 / 3; }
  .board-edit-layout { grid-template-columns:1fr; }
}
@media (max-width: 768px) {
  .mobile-nav { display:block; }.mobile-menu { display:none; }
  .dashboard-heading { align-items:flex-start; flex-direction:column; gap:14px; }.dashboard-actions { width:100%; }.dashboard-actions .btn { width:100%; }
  .connect-layout { grid-template-columns:1fr; }.simple-steps { order:2; }.connect-card { order:1; }
  .panel-heading { align-items:flex-start; flex-direction:column; }.board-row { grid-template-columns:42px 1fr; padding:15px; }.board-icon { width:40px; height:40px; }.board-status { grid-column:1 / -1; }.board-row > .btn { grid-column:1 / -1; grid-row:auto; width:100%; }
  .help-strip { align-items:flex-start; flex-direction:column; }.settings-fields { grid-template-columns:1fr; }.save-bar { align-items:stretch; flex-direction:column; }.save-bar .btn { width:100%; }
}
@media (max-width: 520px) {
  .metric-grid { grid-template-columns:1fr; }.metric-card { min-height:126px; }.connect-card { padding:20px; }.heading-actions { width:100%; justify-content:space-between; }
}

/* Homepage layout repair: clear actions and readable live status cards. */
.hero-actions {
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 14px;
}
.hero-actions .btn {
  min-width: 148px;
  min-height: 44px;
  padding: 10px 18px;
}
.hero-preview { min-width: 0; }
.hero-activity-card {
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: inset 0 0 28px rgba(0, 240, 255, 0.08), 0 18px 42px rgba(0,0,0,0.45);
  text-align: left;
}
.preview-kicker {
  display: block;
  margin-bottom: 3px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
}
.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.activity-item {
  min-width: 0;
  min-height: 88px;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 11px;
  background: linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.018));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.activity-item span { color: var(--muted2); font-size: 11px; font-weight: 700; }
.activity-item strong { margin-top: 4px; color: #fff; font-size: 16px; line-height: 1.2; overflow-wrap: anywhere; }
.activity-item small { margin-top: 3px; color: var(--muted2); font-size: 10px; }
.activity-item.accent-cyan strong { color: var(--cyan); }
.activity-item.staff-status-card {
  border-color: rgba(255,62,207,.28);
  background: linear-gradient(145deg,rgba(255,62,207,.09),rgba(255,255,255,.018));
}
.activity-item.staff-status-card strong { color: #ff8de6; }
.activity-item.accent-green strong { color: #6ee7b7; }
.activity-item.accent-gold strong { color: #ffc66d; }

@media (max-width: 768px) {
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 160px; }
}
@media (max-width: 390px) {
  .activity-grid { grid-template-columns: 1fr; }
  .activity-item { min-height: 76px; }
  .hero-actions .btn { width: 100%; flex-basis: 100%; }
}

/* ClubOS operations workspace — calm, owner-first controls. */
.brand img { width:auto; height:42px; max-width:220px; object-fit:contain; }
.footer-brand img { width:170px; height:auto; margin-bottom:12px; }
.plan-price small { color:var(--muted); font-size:13px; font-weight:700; }
.onboarding-card { padding:clamp(22px,4vw,38px); border:1px solid rgba(0,240,255,.18); border-radius:20px; background:linear-gradient(135deg,rgba(179,108,255,.1),rgba(7,11,25,.96) 46%); box-shadow:var(--shadow); display:grid; grid-template-columns:1fr minmax(320px,.72fr); gap:36px; align-items:center; }
.onboarding-copy h2 { margin:12px 0 8px; font-size:clamp(24px,3vw,34px); }
.onboarding-copy > p { max-width:620px; color:var(--muted); }
.feature-symbol { width:52px; height:52px; display:grid; place-items:center; border:1px solid rgba(0,240,255,.38); border-radius:16px; background:linear-gradient(135deg,rgba(255,84,215,.26),rgba(0,240,255,.22)); color:#fff; font:900 25px/1 Outfit,sans-serif; box-shadow:0 0 24px rgba(179,108,255,.2); }
.plain-checks { margin:22px 0 0; padding:0; display:grid; grid-template-columns:1fr 1fr; gap:11px; list-style:none; }
.plain-checks li { position:relative; padding-left:25px; color:#dbe2ff; font-size:13px; }
.plain-checks li::before { content:'✓'; position:absolute; left:0; color:var(--cyan); font-weight:900; }
.simple-form-card { padding:24px; border:1px solid rgba(255,255,255,.1); border-radius:16px; background:rgba(5,7,17,.76); }
.simple-form-card label,.ops-form label { display:flex; flex-direction:column; gap:7px; color:#e9ecff; font-size:12px; font-weight:800; text-align:left; }
.simple-form-card input,.ops-form input,.ops-form select,.ops-form textarea { width:100%; min-height:44px; padding:10px 12px; border:1px solid rgba(148,163,255,.2); border-radius:10px; background:#080b18; color:#fff; font:inherit; text-align:left; }
.simple-form-card input:focus,.ops-form input:focus,.ops-form select:focus { outline:2px solid rgba(0,240,255,.4); border-color:var(--cyan); }
.club-heading { padding-bottom:16px; border-bottom:1px solid rgba(255,255,255,.08); }
.club-heading-actions { display:flex; align-items:flex-end; gap:10px; }
.club-switcher { display:flex; flex-direction:column; gap:5px; }.club-switcher label { color:var(--muted2); font-size:10px; font-weight:800; }.club-switcher select { min-width:180px; min-height:44px; padding:9px 12px; border:1px solid rgba(0,240,255,.2); border-radius:10px; background:#080b18; color:#fff; }
.btn-clock-out { min-height:44px; border-color:rgba(255,112,143,.36); background:rgba(244,63,94,.1); color:#ffc3cf; }
.club-summary-grid { margin:4px 0 18px; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; }
.club-summary-grid .metric-card { min-height:126px; }
.operations-grid { margin-bottom:18px; display:grid; grid-template-columns:minmax(0,1.45fr) minmax(300px,.72fr); gap:18px; align-items:start; }
.operations-grid.forms-grid { grid-template-columns:1fr 1fr; }
.ops-card { min-width:0; overflow:hidden; border:1px solid rgba(255,255,255,.1); border-radius:16px; background:rgba(10,13,28,.93); box-shadow:var(--shadow); }
.schedule-list,.duty-list { display:grid; }
.schedule-row { padding:15px 18px; border-top:1px solid rgba(255,255,255,.065); display:grid; grid-template-columns:78px 1fr auto; gap:14px; align-items:center; }
.schedule-row:hover { background:rgba(255,255,255,.025); }
.schedule-row time { display:flex; flex-direction:column; }
.schedule-row time strong { color:var(--cyan); font-size:12px; letter-spacing:.1em; }
.schedule-row time span { color:#fff; font-size:13px; font-weight:800; }
.schedule-row h3 { font-size:14px; }
.schedule-row p { color:var(--muted2); font-size:11px; }
.role-pill { padding:5px 9px; border:1px solid rgba(179,108,255,.25); border-radius:99px; background:rgba(179,108,255,.1); color:#d7caff; font-size:10px; font-weight:800; }
.duty-list > div { min-height:66px; padding:14px 18px; border-top:1px solid rgba(255,255,255,.065); display:grid; grid-template-columns:10px 1fr; gap:1px 10px; align-items:center; }
.duty-list small { grid-column:2; color:var(--muted2); font-size:10px; }
.online-dot { width:9px; height:9px; grid-row:1 / 3; border-radius:50%; background:#10b981; box-shadow:0 0 10px rgba(16,185,129,.7); }
.compact-empty { padding:32px 18px!important; display:flex!important; flex-direction:column; align-items:flex-start!important; color:var(--muted); }
.compact-empty strong { color:#fff; }
.compact-empty span { margin-top:4px; font-size:12px; }
.ops-form { padding:20px; display:grid; gap:14px; }
.form-pair { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.ops-form .btn { min-height:44px; margin-top:2px; }
.device-card { margin-bottom:18px; }.device-form { grid-template-columns:minmax(180px,.45fr) 1fr auto; align-items:end; }.device-form .btn { min-height:44px; }
.connection-key { margin-bottom:18px; padding:16px 18px; border:1px solid rgba(0,240,255,.3); border-radius:13px; background:rgba(0,240,255,.07); display:grid; grid-template-columns:1fr; gap:10px; }.connection-key div { display:flex; flex-direction:column; }.connection-key span { color:var(--muted); font-size:11px; }.connection-key code { padding:12px; border-radius:9px; background:#03050c; color:#aaf9ff; font-size:12px; overflow-wrap:anywhere; user-select:all; }
.pricing-extras { padding-top:8px; }
.core-pack-strip { margin-bottom:16px; padding:22px 24px; border:1px solid rgba(0,240,255,.28); border-radius:16px; background:linear-gradient(110deg,rgba(0,240,255,.09),rgba(179,108,255,.11)); display:flex; align-items:center; justify-content:space-between; gap:20px; }
.core-pack-strip h2 { margin:5px 0 2px; font-size:25px; }.core-pack-strip p { color:var(--muted); font-size:12px; }.core-pack-strip > strong { flex:0 0 auto; color:var(--cyan); font-size:12px; }
.addon-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; }
.addon-grid article { padding:16px 18px; border:1px solid rgba(255,255,255,.09); border-radius:12px; background:rgba(255,255,255,.025); display:flex; flex-direction:column; gap:4px; }
.addon-grid strong { color:#fff; font-size:13px; }.addon-grid span { color:var(--cyan); font-size:11px; font-weight:800; }
.pricing-note { margin-top:16px; padding:17px 20px; border:1px solid rgba(179,108,255,.22); border-radius:12px; background:rgba(179,108,255,.07); display:flex; flex-direction:column; gap:3px; }
.pricing-note span { color:var(--muted); font-size:12px; }

@media (max-width:900px) {
  .onboarding-card,.operations-grid,.operations-grid.forms-grid { grid-template-columns:1fr; }
  .addon-grid { grid-template-columns:1fr 1fr; }
  .device-form { grid-template-columns:1fr; }
}
@media (max-width:650px) {
  .club-summary-grid,.plain-checks,.addon-grid,.form-pair { grid-template-columns:1fr; }
  .schedule-row { grid-template-columns:66px 1fr; }.schedule-row > .role-pill { grid-column:2; width:max-content; }
  .brand img { height:34px; max-width:170px; }
  .core-pack-strip { align-items:flex-start; flex-direction:column; }
  .club-heading-actions { width:100%; align-items:stretch; flex-direction:column; }.club-switcher select,.club-heading-actions .btn { width:100%; }
}

/* ClubOS neon venue system: every functional box reads like club hardware. */
:is(
  .card,
  .metric-card,
  .dashboard-panel,
  .ops-card,
  .onboarding-card,
  .simple-form-card,
  .connect-card,
  .simple-steps,
  .board-info-card,
  .settings-card,
  .hero-activity-card,
  .activity-item,
  .core-pack-strip,
  .addon-grid article,
  .pricing-note,
  .connection-key,
  .help-strip,
  .docs-steps li,
  .trouble-list li
) {
  --box-neon: 0, 240, 255;
  border-color: rgba(var(--box-neon), .5);
  box-shadow:
    inset 0 0 20px rgba(var(--box-neon), .075),
    0 0 12px rgba(var(--box-neon), .08),
    0 8px 28px rgba(0, 0, 0, .34);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background-color .2s ease;
}

:is(
  .card,
  .metric-card,
  .ops-card,
  .activity-item,
  .addon-grid article,
  .docs-steps li,
  .trouble-list li
):nth-child(3n + 2) { --box-neon: 179, 108, 255; }

:where(
  .card,
  .metric-card,
  .ops-card,
  .activity-item,
  .addon-grid article,
  .docs-steps li,
  .trouble-list li
):nth-child(3n) { --box-neon: 255, 84, 215; }

:is(.board-row, .schedule-row, .duty-list > div, .simple-steps li) {
  --box-neon: 0, 240, 255;
  border-color: rgba(var(--box-neon), .16);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background-color .2s ease;
}

@media (hover:hover) and (pointer:fine) {
  :is(
    .card,
    .metric-card,
    .ops-card,
    .onboarding-card,
    .simple-form-card,
    .connect-card,
    .simple-steps,
    .board-info-card,
    .settings-card,
    .hero-activity-card,
    .activity-item,
    .core-pack-strip,
    .addon-grid article,
    .pricing-note,
    .connection-key,
    .help-strip,
    .docs-steps li,
    .trouble-list li
  ):hover {
    border-color: rgba(var(--box-neon), .9) !important;
    box-shadow:
      inset 0 0 28px rgba(var(--box-neon), .11),
      0 0 12px rgba(var(--box-neon), .28),
      0 0 30px rgba(var(--box-neon), .16),
      0 14px 38px rgba(0, 0, 0, .46) !important;
    transform: translateY(-3px) !important;
  }

  :is(.board-row, .schedule-row, .duty-list > div, .simple-steps li):hover {
    border-color: rgba(var(--box-neon), .58) !important;
    background: rgba(var(--box-neon), .055) !important;
    box-shadow: inset 3px 0 0 rgba(var(--box-neon), .78), 0 0 18px rgba(var(--box-neon), .18) !important;
    transform: translateX(2px) !important;
  }
}

/* Radio hosting follows the same full-width public shell and 8px grid. */
body:not(.dashboard-body) .hosting-grid {
  width: 100%;
  max-width: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

body:not(.dashboard-body) .hosting-how {
  width: 100%;
  max-width: none;
  margin: 8px auto 0;
  padding: 16px;
  gap: 16px;
}

@media (max-width: 760px) {
  body:not(.dashboard-body) .hosting-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body:not(.dashboard-body) .hosting-plan:last-child { grid-column: 1 / -1; width: min(100%, 50%); }
}

@media (max-width: 480px) {
  body:not(.dashboard-body) .hosting-grid { grid-template-columns: 1fr; }
  body:not(.dashboard-body) .hosting-plan:last-child { width: 100%; }
}

:is(.card, .metric-card, .ops-card, .addon-grid article, .board-row, .schedule-row):focus-within {
  border-color: rgba(var(--box-neon), .9);
  box-shadow: 0 0 0 2px rgba(var(--box-neon), .18), 0 0 25px rgba(var(--box-neon), .2);
}

@media (prefers-reduced-motion: reduce) {
  :where(.card, .metric-card, .ops-card, .activity-item, .addon-grid article, .board-row, .schedule-row) { transition:none; }
}

/* 2026-08-10 professional UI scrub: one compact, predictable interaction system. */
.site-header { border-bottom-color:rgba(0,240,255,.16); }
.nav { min-height:64px; gap:18px; }
.brand img { height:34px; border-radius:7px; }
.nav-links { gap:6px; padding:5px; border:1px solid rgba(255,255,255,.075); border-radius:13px; background:rgba(3,6,16,.48); }
.nav-links a { min-height:36px; padding:6px 12px; border-radius:8px; font-size:12px; letter-spacing:.025em; }
.nav-links a.active::after { bottom:1px; left:14px; right:14px; }
.nav-actions { gap:8px; }
.nav-actions .btn { min-height:38px; white-space:nowrap; }
.nav-dashboard { min-width:112px; }
.account-chip { max-width:160px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.btn { min-height:38px; padding:8px 15px; border-radius:9px; font-size:12px; letter-spacing:.015em; }
.btn:focus-visible,.nav-links a:focus-visible,.footer-column a:focus-visible { outline:2px solid var(--cyan); outline-offset:3px; }
.section { padding-top:clamp(34px,5vw,56px); padding-bottom:clamp(34px,5vw,56px); }
.page-hero { padding-top:clamp(54px,7vw,84px); padding-bottom:clamp(32px,5vw,54px); }
.page-hero .shell,.hero .shell { max-width:1180px; }
.section-head,.section-heading { margin-bottom:20px; }
.grid-3,.grid-4 { gap:16px; }
.card { padding:22px; border-radius:14px; }
.cta { padding:24px 28px; border-radius:15px; }

.site-footer { margin-top:32px; padding:30px 0 16px; border-top-color:rgba(0,240,255,.2); background:linear-gradient(180deg,rgba(5,7,17,.96),rgba(2,3,8,.99)); }
.footer-grid { grid-template-columns:minmax(260px,1.45fr) repeat(3,minmax(130px,.75fr)); gap:24px; }
.footer-brand img { width:150px; margin-bottom:8px; }
.footer-brand p { max-width:340px; color:var(--muted); }
.footer-social-actions { width:100%; margin-top:14px; display:flex; flex-wrap:wrap; justify-content:center; gap:8px; }
.footer-social-actions .btn { min-width:130px; }
.footer-store { border-color:rgba(0,240,255,.4); background:rgba(0,240,255,.08); color:#c8fcff; box-shadow:0 0 15px rgba(0,240,255,.09); }
.footer-discord { border-color:rgba(179,108,255,.48); background:rgba(179,108,255,.1); color:#eddfff; box-shadow:0 0 15px rgba(179,108,255,.11); }
.footer-store:hover,.footer-discord:hover { border-color:#fff; color:#fff; box-shadow:0 0 20px rgba(0,240,255,.2),0 0 28px rgba(179,108,255,.12); }
.footer-column { gap:7px; }
.footer-column h2 { margin-bottom:5px; }
.footer-column a { width:auto; padding:2px 5px; border-radius:5px; }
.footer-bottom { margin-top:22px; padding-top:14px; border-top:1px solid rgba(255,255,255,.07); }
.legal-links { display:flex; justify-content:center; gap:14px; }
.dashboard-body .site-footer { margin-top:44px; }

@media (max-width:980px) {
  .footer-grid { grid-template-columns:1.25fr repeat(2,minmax(140px,1fr)); }
  .footer-community { grid-column:2 / -1; }
}
@media (max-width:720px) {
  .shell { width:min(calc(100% - 28px),var(--shell)); }
  .nav { min-height:60px; }
  .brand img { height:31px; max-width:158px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:22px 14px; }
  .footer-brand { grid-column:1 / -1; }
  .footer-community { grid-column:auto; }
  .footer-bottom { align-items:center; flex-direction:column; gap:8px; }
  .card { padding:19px; }
}
@media (max-width:460px) {
  .footer-grid { grid-template-columns:1fr; }
  .footer-community { grid-column:auto; }
  .footer-social-actions { flex-direction:column; align-items:stretch; }
  .footer-social-actions .btn { width:100%; }
}

/* FlaroCity alignment: centered copy across public and owner-facing UI. */
main :where(h1, h2, h3, p),
:is(
  .card,
  .metric-card,
  .activity-item,
  .dashboard-heading,
  .panel-heading,
  .board-main,
  .board-status,
  .schedule-row,
  .duty-list,
  .compact-empty,
  .ops-card,
  .simple-form-card,
  .onboarding-copy,
  .connect-card,
  .board-info-card,
  .settings-card,
  .help-strip,
  .core-pack-strip,
  .addon-grid article,
  .pricing-note,
  .docs-steps li,
  .trouble-list li,
  .footer-brand,
  .footer-column,
  .footer-bottom,
  .dashboard-footer
) { text-align:center; }

.metric-top,
.health-summary,
.board-heading-meta,
.card-title-row,
.section-heading,
.footer-bottom,
.help-strip,
.core-pack-strip { justify-content:center; }

.board-status,
.compact-empty,
.metric-card { align-items:center; }
.schedule-row time { align-items:center; }
.panel-heading > div,
.dashboard-heading > div,
.section-heading > div { width:100%; }
.ops-form label,
.simple-form-card label,
.field.align-left label { text-align:center; }
.ops-form input,
.ops-form select,
.ops-form textarea,
.simple-form-card input,
.field.align-left input,
.field.align-left textarea { text-align:center; }
.mobile-nav-panel a,
.mobile-nav-panel button { text-align:center; }
.footer-grid { text-align:center; }
.footer-column { align-items:center; }

/* Club tools: friendly neon radio and weekly booking UI */
.club-tools-nav { margin:18px 0 22px; padding:7px; border:1px solid rgba(0,240,255,.3); border-radius:15px; background:rgba(4,7,18,.92); display:flex; justify-content:center; gap:7px; box-shadow:0 0 18px rgba(0,240,255,.08),inset 0 0 20px rgba(199,55,255,.04); }
.club-tools-nav a { padding:10px 16px; border:1px solid transparent; border-radius:10px; color:var(--muted); font-size:12px; font-weight:900; letter-spacing:.04em; text-align:center; }
.club-tools-nav a:hover,.club-tools-nav a.active { border-color:rgba(231,69,255,.62); background:linear-gradient(135deg,rgba(231,69,255,.16),rgba(0,240,255,.1)); color:#fff; box-shadow:0 0 18px rgba(231,69,255,.2); }
.tool-heading { align-items:center; }
.club-tool-cards { margin:0 0 18px; display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.club-tool-card { min-height:92px; padding:16px 18px; border:1px solid rgba(0,240,255,.32); border-radius:16px; background:linear-gradient(135deg,rgba(10,13,28,.98),rgba(16,7,31,.93)); display:grid; grid-template-columns:54px 1fr auto; gap:14px; align-items:center; text-align:center; box-shadow:0 0 22px rgba(0,240,255,.08); }
.club-tool-card:nth-child(2) { border-color:rgba(231,69,255,.36); box-shadow:0 0 22px rgba(231,69,255,.09); }
.club-tool-card:hover { transform:translateY(-2px); border-color:var(--cyan); box-shadow:0 0 28px rgba(0,240,255,.25),0 0 42px rgba(231,69,255,.12); }
.club-tool-card img { width:54px; height:54px; border-radius:13px; object-fit:cover; box-shadow:0 0 18px rgba(0,240,255,.23); }
.club-tool-card span { display:grid; gap:4px; }
.club-tool-card strong { color:#fff; font-size:15px; }
.club-tool-card small { color:var(--muted2); line-height:1.45; }
.club-tool-card b { color:var(--cyan); font-size:12px; white-space:nowrap; }

.schedule-control-card { margin-bottom:18px; padding:16px 18px; }
.week-bar { display:grid; grid-template-columns:auto 1fr auto; gap:14px; align-items:center; }
.week-bar > div { display:grid; gap:3px; text-align:center; }
.week-bar span { color:var(--muted2); font-size:10px; font-weight:900; letter-spacing:.14em; text-transform:uppercase; }
.week-bar strong { color:#fff; font-size:19px; }
.schedule-legend { margin-top:15px; padding-top:14px; border-top:1px solid rgba(255,255,255,.07); display:flex; flex-wrap:wrap; justify-content:center; gap:14px; color:var(--muted); font-size:11px; font-weight:800; }
.schedule-legend span { display:flex; align-items:center; gap:6px; }
.schedule-legend i { width:10px; height:10px; border-radius:50%; box-shadow:0 0 9px currentColor; }
.legend-open { color:var(--cyan); background:var(--cyan); }.legend-mine { color:#6dff9c; background:#6dff9c; }.legend-booked { color:#db72ff; background:#db72ff; }.legend-blocked { color:#71809a; background:#71809a; }
.weekly-calendar-card { margin-bottom:18px; overflow-x:auto; overscroll-behavior-inline:contain; }
.weekly-calendar { min-width:980px; padding:12px; display:grid; grid-template-columns:repeat(var(--club-days),minmax(128px,1fr)); gap:9px; }
.calendar-day { min-width:0; border:1px solid rgba(0,240,255,.22); border-radius:13px; overflow:hidden; background:rgba(3,6,15,.82); }
.calendar-day:nth-child(even) { border-color:rgba(231,69,255,.25); }
.calendar-day > header { padding:12px 8px; border-bottom:1px solid rgba(255,255,255,.08); background:linear-gradient(135deg,rgba(0,240,255,.11),rgba(231,69,255,.08)); display:grid; gap:2px; text-align:center; }
.calendar-day > header span { color:var(--cyan); font-size:11px; font-weight:950; letter-spacing:.12em; text-transform:uppercase; }
.calendar-day > header strong { color:#fff; font-size:14px; }
.calendar-slots { padding:7px; display:grid; gap:7px; }
.calendar-slot { min-height:70px; padding:9px 7px; border:1px solid rgba(255,255,255,.1); border-radius:10px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px; text-align:center; transition:border-color .18s ease,box-shadow .18s ease,transform .18s ease; }
.calendar-slot time { color:var(--muted2); font-size:10px; font-weight:900; letter-spacing:.06em; }
.calendar-slot strong { max-width:100%; color:#fff; font-size:11px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.calendar-slot > span { color:var(--muted2); font-size:11px; }
.slot-open { border-color:rgba(0,240,255,.27); background:rgba(0,240,255,.045); }
.slot-open:hover { border-color:var(--cyan); box-shadow:0 0 18px rgba(0,240,255,.2); transform:translateY(-1px); }
.slot-booked { border-color:rgba(219,114,255,.38); background:rgba(199,55,255,.1); }
.slot-mine { border-color:rgba(74,255,151,.55); background:rgba(74,255,151,.09); box-shadow:inset 0 0 14px rgba(74,255,151,.05); }
.slot-blocked { border-color:rgba(113,128,154,.24); background:rgba(77,87,106,.1); opacity:.72; }
.slot-pick,.calendar-slot form button { padding:5px 9px; border:1px solid rgba(0,240,255,.42); border-radius:7px; background:rgba(0,240,255,.09); color:#c9fcff; font:inherit; font-size:10px; font-weight:900; cursor:pointer; }
.calendar-slot form button { border-color:rgba(255,255,255,.15); background:rgba(255,255,255,.04); color:var(--muted); }
.slot-pick:hover,.calendar-slot form button:hover { border-color:#fff; color:#fff; box-shadow:0 0 12px rgba(0,240,255,.25); }
.simple-settings-card { margin-bottom:18px; }
.inline-settings { grid-template-columns:1fr 1fr auto; align-items:end; }

.booking-dialog { width:min(560px,calc(100% - 28px)); padding:0; border:1px solid rgba(0,240,255,.55); border-radius:18px; background:linear-gradient(145deg,#090d1f,#170923); color:#fff; box-shadow:0 0 38px rgba(0,240,255,.22),0 0 65px rgba(231,69,255,.18); }
.booking-dialog::backdrop { background:rgba(0,0,0,.76); backdrop-filter:blur(4px); }
.dialog-heading { text-align:center; }
.dialog-heading h2 { margin:5px 0; }
.dialog-heading p { color:var(--muted); }
.booking-actions { display:grid; grid-template-columns:1fr 1fr; gap:9px; }
.booking-actions .btn { margin:0; }

.radio-grid { grid-template-columns:minmax(0,1.1fr) minmax(320px,.75fr); }
.now-playing-card { min-height:285px; padding:28px; position:relative; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; overflow:hidden; background:radial-gradient(circle at 50% 110%,rgba(0,240,255,.16),transparent 45%),radial-gradient(circle at 85% 0,rgba(231,69,255,.14),transparent 42%),rgba(7,10,24,.96); }
.now-playing-card:before { content:""; position:absolute; inset:-2px; pointer-events:none; background:linear-gradient(90deg,transparent,rgba(0,240,255,.1),transparent); transform:translateX(-100%); animation:radioSweep 6s linear infinite; }
@keyframes radioSweep { to { transform:translateX(100%); } }
.radio-status { margin-bottom:20px; padding:6px 10px; border:1px solid rgba(255,255,255,.12); border-radius:999px; color:var(--muted); font-size:10px; font-weight:950; letter-spacing:.09em; text-transform:uppercase; display:flex; align-items:center; gap:7px; }
.radio-status span { width:8px; height:8px; border-radius:50%; background:#71809a; }
.radio-status.is-online { border-color:rgba(74,255,151,.36); color:#8bffb7; }.radio-status.is-online span { background:#4aff97; box-shadow:0 0 12px #4aff97; }
.radio-eyebrow { color:var(--pink)!important; font-size:12px!important; font-weight:950; letter-spacing:.12em; text-transform:uppercase; }
.now-playing-card h2 { max-width:720px; margin:8px 0; font-size:clamp(22px,3vw,36px); text-shadow:0 0 18px rgba(0,240,255,.24); }
.now-playing-card > p:last-of-type { color:var(--muted); }
.equalizer { height:42px; margin-top:24px; display:flex; align-items:end; justify-content:center; gap:4px; }
.equalizer i { width:5px; height:calc(var(--bar) * 5px); border-radius:5px; background:linear-gradient(to top,var(--pink),var(--cyan)); box-shadow:0 0 8px rgba(0,240,255,.45); animation:eqPulse 1.1s ease-in-out infinite alternate; animation-delay:calc(var(--bar) * -90ms); }
@keyframes eqPulse { to { height:10px; opacity:.65; } }
.radio-help-card .compact-steps { margin:0; padding:18px 22px 22px; }
.radio-setup-card { margin-bottom:18px; }
.radio-form { max-width:900px; margin:0 auto; }
.advanced-settings { padding:14px; border:1px solid rgba(231,69,255,.22); border-radius:12px; background:rgba(231,69,255,.035); }
.advanced-settings summary { color:#dfb8ff; font-size:12px; font-weight:900; cursor:pointer; text-align:center; }
.advanced-fields { margin:15px 0 12px; }
.friendly-toggle { padding:14px 16px!important; border:1px solid rgba(0,240,255,.25); border-radius:12px; background:rgba(0,240,255,.045); grid-template-columns:auto 1fr!important; align-items:center!important; text-align:left!important; cursor:pointer; }
.friendly-toggle input { width:20px!important; height:20px!important; margin:0; accent-color:var(--cyan); }
.friendly-toggle span { display:grid; gap:3px; }.friendly-toggle strong { color:#fff; }.friendly-toggle small { color:var(--muted2); font-weight:500; }

@media (max-width: 820px) {
  .club-tool-cards,.radio-grid { grid-template-columns:1fr; }
  .inline-settings { grid-template-columns:1fr; }
  .tool-heading { align-items:center; }
}
@media (max-width: 620px) {
  .club-tools-nav { overflow-x:auto; justify-content:flex-start; }
  .club-tools-nav a { flex:0 0 auto; }
  .club-tool-cards { gap:12px; }
  .club-tool-card { grid-template-columns:46px 1fr; padding:14px; }
  .club-tool-card img { width:46px; height:46px; }.club-tool-card b { grid-column:1 / -1; }
  .week-bar { grid-template-columns:1fr 1fr; }.week-bar > div { grid-column:1 / -1; grid-row:1; }.week-bar > a:first-child { grid-column:1; }.week-bar > a:last-child { grid-column:2; }
  .booking-actions { grid-template-columns:1fr; }
  .now-playing-card { min-height:250px; padding:22px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .now-playing-card:before,.equalizer i { animation:none; }
}

.dj-requests-card { margin-bottom:18px; }
.request-count { min-width:34px; height:34px; border:1px solid rgba(231,69,255,.55); border-radius:50%; color:#fff; display:grid; place-items:center; box-shadow:0 0 16px rgba(231,69,255,.28); }
.dj-request-list { padding:12px; display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:12px; }
.dj-request { padding:17px; border:1px solid rgba(0,240,255,.28); border-radius:13px; background:linear-gradient(145deg,rgba(0,240,255,.055),rgba(231,69,255,.055)); display:grid; gap:12px; text-align:center; }
.dj-request:hover { border-color:var(--cyan); box-shadow:0 0 22px rgba(0,240,255,.17),0 0 30px rgba(231,69,255,.1); }
.dj-request h3 { margin:3px 0; color:#fff; }
.dj-request p { color:var(--muted); font-size:11px; }
.dj-request > a { width:max-content; max-width:100%; margin:auto; padding:7px 11px; border:1px solid rgba(231,69,255,.35); border-radius:8px; color:#efc9ff; font-size:11px; font-weight:900; }
.dj-request > a:hover { border-color:var(--pink); box-shadow:0 0 14px rgba(231,69,255,.2); }
.dj-request .request-note { padding:9px; border-radius:8px; background:rgba(255,255,255,.035); color:#d9def0; }
.dj-request form { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.dj-request form .btn { margin:0; }

.signup-
.signup-shell { width:min(720px,calc(100% - 28px)); padding:34px 0; }
.signup-logo { width:min(360px,82%); height:auto; margin:0 auto 24px; filter:drop-shadow(0 0 22px rgba(0,240,255,.2)); }
.signup-card { padding:clamp(22px,5vw,42px); border:1px solid rgba(0,240,255,.44); border-radius:22px; background:linear-gradient(145deg,rgba(8,12,29,.97),rgba(22,7,31,.96)); box-shadow:0 0 35px rgba(0,240,255,.16),0 0 65px rgba(231,69,255,.12); }
.signup-card h1 { margin:8px 0 12px; font-size:clamp(27px,6vw,44px); text-shadow:0 0 20px rgba(0,240,255,.22); }
.signup-lead { max-width:590px; margin:0 auto 22px; color:var(--muted); line-height:1.7; }
.signup-form { padding:0; }
.signup-form label { text-align:center; }
.signup-success,.signup-expired { margin-top:18px; padding:14px; border:1px solid rgba(74,255,151,.36); border-radius:12px; background:rgba(74,255,151,.07); color:#9dffbf; font-weight:900; }
.signup-expired { border-color:rgba(231,69,255,.36); background:rgba(231,69,255,.07); color:#efc9ff; }
.signup-foot { margin:16px auto 0; color:var(--muted2); font-size:10px; }
@media (max-width:620px) { .dj-request form { grid-template-columns:1fr; }.signup-shell { width:min(100% - 18px,720px); }.signup-card { border-radius:16px; } }

.radio-hosting-hero { position:relative; overflow:hidden; padding-top:46px; padding-bottom:28px; }
.radio-hosting-hero:after { content:""; position:absolute; width:460px; height:460px; left:50%; bottom:-380px; transform:translateX(-50%); border:2px solid rgba(0,240,255,.28); border-radius:50%; box-shadow:0 0 70px rgba(0,240,255,.2),inset 0 0 70px rgba(231,69,255,.14); }
.hosting-promise { margin:16px auto 0; display:flex; flex-wrap:wrap; justify-content:center; gap:8px; }
.hosting-promise span { padding:7px 11px; border:1px solid rgba(0,240,255,.28); border-radius:999px; background:rgba(0,240,255,.05); color:#d8fcff; font-size:10px; font-weight:850; }
.hosting-section { padding-top:6px; padding-bottom:38px; }
.hosting-grid { width:min(100%,1060px); margin:0 auto; display:grid; grid-template-columns:repeat(3,minmax(260px,320px)); justify-content:center; gap:24px; align-items:stretch; }
.hosting-plan { --plan-neon:0,240,255; position:relative; isolation:isolate; min-width:0; min-height:0; padding:22px 22px 20px; overflow:hidden; border:1px solid rgba(var(--plan-neon),.62); border-radius:20px; background:linear-gradient(155deg,rgba(8,12,28,.98),rgba(18,7,29,.97)); display:flex; flex-direction:column; align-items:center; justify-content:flex-start; text-align:center; box-shadow:inset 0 0 24px rgba(var(--plan-neon),.07),0 0 16px rgba(var(--plan-neon),.16),0 18px 38px rgba(0,0,0,.42); transition:transform .24s ease,border-color .24s ease,box-shadow .24s ease,background .24s ease; }
.hosting-plan:nth-child(2) { --plan-neon:179,108,255; }
.hosting-plan:nth-child(3) { --plan-neon:255,84,215; }
.hosting-plan::before { content:""; position:absolute; z-index:-1; inset:-1px; pointer-events:none; background:radial-gradient(circle at 50% -15%,rgba(var(--plan-neon),.24),transparent 42%),linear-gradient(115deg,transparent 18%,rgba(var(--plan-neon),.055) 50%,transparent 82%); opacity:.7; transition:opacity .24s ease; }
.hosting-plan::after { content:""; position:absolute; left:16%; right:16%; top:-1px; height:2px; border-radius:99px; background:rgb(var(--plan-neon)); box-shadow:0 0 10px rgba(var(--plan-neon),.95),0 0 24px rgba(var(--plan-neon),.6); }
.hosting-plan.featured { border-color:rgba(var(--plan-neon),.86); box-shadow:inset 0 0 28px rgba(var(--plan-neon),.11),0 0 22px rgba(var(--plan-neon),.25),0 18px 40px rgba(0,0,0,.46); }
@media (hover:hover) and (pointer:fine) {
  .hosting-plan:hover { z-index:2; transform:translateY(-8px) scale(1.018); border-color:rgba(var(--plan-neon),1); background:linear-gradient(155deg,rgba(10,15,34,.99),rgba(23,8,36,.99)); box-shadow:inset 0 0 34px rgba(var(--plan-neon),.15),0 0 18px rgba(var(--plan-neon),.56),0 0 52px rgba(var(--plan-neon),.3),0 24px 50px rgba(0,0,0,.55); }
  .hosting-plan:hover::before { opacity:1; }
}
.hosting-plan-top { width:100%; min-height:29px; display:flex; align-items:center; justify-content:center; gap:6px; }.hosting-plan-top b { color:#ff9af0; font-size:8px; letter-spacing:.1em; }
.hosting-quality { margin:12px 0 2px; display:flex; align-items:baseline; justify-content:center; gap:4px; }.hosting-quality strong { color:#fff; font-size:36px; line-height:1; text-shadow:0 0 18px rgba(var(--plan-neon),.48); }.hosting-quality span { color:rgb(var(--plan-neon)); font-size:10px; font-weight:900; text-shadow:0 0 9px rgba(var(--plan-neon),.55); }
.hosting-plan > p { width:100%; min-height:0; color:var(--muted); font-size:11px; line-height:1.45; text-align:center; }
.hosting-prices { width:100%; margin:12px 0; padding:10px 0; border-block:1px solid rgba(var(--plan-neon),.22); display:grid; grid-template-columns:1fr 1fr; gap:5px; text-align:center; }
.hosting-prices span { display:grid; gap:2px; }.hosting-prices strong { color:#fff; font-size:17px; }.hosting-prices small { color:var(--muted2); font-size:8px; letter-spacing:.08em; text-transform:uppercase; }
.hosting-plan ul { width:100%; margin:0; padding:0; list-style:none; display:grid; justify-items:center; gap:6px; color:#d7dff5; font-size:10px; line-height:1.4; text-align:center; }.hosting-plan li:before { content:"✓ "; color:rgb(var(--plan-neon)); text-shadow:0 0 8px rgba(var(--plan-neon),.85); }
.availability { width:100%; margin-top:14px; padding-top:0; color:#76ffae; font-size:9px; font-weight:950; letter-spacing:.09em; text-align:center; text-transform:uppercase; text-shadow:0 0 12px rgba(118,255,174,.45); }.availability.sold-out { color:#ff7aa8; }
.hosting-how { width:min(100%,1060px); margin:22px auto 0; padding:22px; border:1px solid rgba(179,108,255,.55); border-radius:20px; background:linear-gradient(135deg,rgba(179,108,255,.1),rgba(0,240,255,.07)); display:grid; grid-template-columns:1fr 1.15fr; gap:20px; align-items:center; text-align:center; box-shadow:inset 0 0 26px rgba(179,108,255,.06),0 0 22px rgba(179,108,255,.12); transition:border-color .22s ease,box-shadow .22s ease,transform .22s ease; }
.hosting-how h2 { margin:4px 0 6px; }.hosting-how p { color:var(--muted); line-height:1.5; }.hosting-how ol { margin:0; padding:0; list-style:none; display:grid; gap:7px; }.hosting-how li { padding:9px 10px; border:1px solid rgba(0,240,255,.2); border-radius:11px; background:rgba(4,7,16,.62); display:grid; grid-template-columns:28px 1fr; gap:8px; align-items:center; text-align:center; transition:border-color .2s ease,box-shadow .2s ease,background .2s ease; }.hosting-how li > b { width:27px; height:27px; border-radius:50%; background:linear-gradient(135deg,var(--cyan),var(--pink)); color:#050712; display:grid; place-items:center; box-shadow:0 0 14px rgba(0,240,255,.3); }.hosting-how li span { display:grid; text-align:center; }.hosting-how li small { color:var(--muted2); }
@media (hover:hover) and (pointer:fine) { .hosting-how:hover { transform:translateY(-3px); border-color:rgba(0,240,255,.82); box-shadow:inset 0 0 32px rgba(179,108,255,.09),0 0 22px rgba(0,240,255,.3),0 0 48px rgba(179,108,255,.2); }.hosting-how li:hover { border-color:rgba(255,84,215,.72); background:rgba(179,108,255,.1); box-shadow:0 0 18px rgba(255,84,215,.2); } }
.hosting-fineprint { max-width:850px; margin:12px auto 0; color:var(--muted2); font-size:9px; text-align:center; line-height:1.45; }
.radio-price-note { grid-template-columns:1fr 1.3fr auto; align-items:center; }.radio-price-note .btn { margin:0; }
@media (max-width:1100px) { .hosting-grid { grid-template-columns:repeat(3,minmax(0,1fr)); } }
@media (max-width:760px) { .hosting-grid { width:min(100%,680px); grid-template-columns:repeat(2,minmax(0,1fr)); }.hosting-plan:last-child { grid-column:1 / -1; width:min(100%,328px); justify-self:center; }.hosting-how { grid-template-columns:1fr; }.radio-price-note { grid-template-columns:1fr; } }
@media (max-width:480px) { .hosting-grid { grid-template-columns:1fr; }.hosting-plan:last-child { width:100%; } }

/* Site-wide neon panel system, derived from the radio-hosting plan cards. */
:is(
  .card,
  .hero-activity-card,
  .dashboard-panel,
  .metric-card,
  .ops-card,
  .onboarding-card,
  .simple-form-card,
  .connect-card,
  .setup-panel,
  .board-info-card,
  .settings-card,
  .signup-card,
  .club-tool-card,
  .hosting-how
) {
  --panel-neon: var(--box-neon, 0, 240, 255);
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(var(--panel-neon), .62) !important;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% -18%, rgba(var(--panel-neon), .2), transparent 44%),
    linear-gradient(155deg, rgba(8,12,28,.98), rgba(18,7,29,.97)) !important;
  box-shadow:
    inset 0 0 24px rgba(var(--panel-neon), .07),
    0 0 16px rgba(var(--panel-neon), .16),
    0 18px 38px rgba(0,0,0,.42) !important;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
}

:is(
  .card,
  .hero-activity-card,
  .dashboard-panel,
  .metric-card,
  .ops-card,
  .onboarding-card,
  .simple-form-card,
  .connect-card,
  .setup-panel,
  .board-info-card,
  .settings-card,
  .signup-card,
  .club-tool-card,
  .hosting-how
)::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: -1px;
  left: 16%;
  right: 16%;
  height: 2px;
  border-radius: 99px;
  background: rgb(var(--panel-neon));
  box-shadow: 0 0 10px rgba(var(--panel-neon), .95), 0 0 24px rgba(var(--panel-neon), .6);
  pointer-events: none;
}

:is(.card,.metric-card,.ops-card,.club-tool-card):nth-child(3n + 2) { --panel-neon: 179, 108, 255; }
:is(.card,.metric-card,.ops-card,.club-tool-card):nth-child(3n) { --panel-neon: 255, 84, 215; }

:is(.activity-item,.board-row,.schedule-row,.duty-list > div,.simple-steps li,.docs-steps li,.trouble-list li) {
  --panel-neon: var(--box-neon, 0, 240, 255);
  border-color: rgba(var(--panel-neon), .42) !important;
  background: linear-gradient(145deg, rgba(var(--panel-neon), .075), rgba(8,11,28,.9)) !important;
  box-shadow: inset 0 0 18px rgba(var(--panel-neon), .055), 0 0 12px rgba(var(--panel-neon), .1);
}

@media (hover:hover) and (pointer:fine) {
  :is(
    .card,
    .hero-activity-card,
    .dashboard-panel,
    .metric-card,
    .ops-card,
    .onboarding-card,
    .simple-form-card,
    .connect-card,
    .setup-panel,
    .board-info-card,
    .settings-card,
    .signup-card,
    .club-tool-card,
    .hosting-how
  ):hover {
    z-index: 2;
    transform: translateY(-6px) !important;
    border-color: rgba(var(--panel-neon), 1) !important;
    background:
      radial-gradient(circle at 50% -18%, rgba(var(--panel-neon), .28), transparent 46%),
      linear-gradient(155deg, rgba(10,15,34,.99), rgba(23,8,36,.99)) !important;
    box-shadow:
      inset 0 0 34px rgba(var(--panel-neon), .15),
      0 0 18px rgba(var(--panel-neon), .56),
      0 0 52px rgba(var(--panel-neon), .3),
      0 24px 50px rgba(0,0,0,.55) !important;
  }
}

/* Final public-site spacing contract: FlaroCity-style 8px grid. */
body:not(.dashboard-body) .shell {
  width: min(calc(100% - 64px), 1200px);
}

body:not(.dashboard-body) .nav {
  min-height: 64px;
  gap: 24px;
}

body:not(.dashboard-body) .brand img { height: 32px; border-radius: 8px; }
body:not(.dashboard-body) .nav-links { gap: 8px; padding: 8px; border-radius: 16px; }
body:not(.dashboard-body) .nav-links a { min-height: 40px; padding: 8px 16px; border-radius: 8px; }
body:not(.dashboard-body) .nav-actions { gap: 8px; }
body:not(.dashboard-body) .btn { min-height: 40px; padding: 8px 16px; border-radius: 8px; }

body:not(.dashboard-body) .hero { padding: 64px 0 48px; }
body:not(.dashboard-body) .hero .shell { max-width: 1200px; }
body:not(.dashboard-body) .hero-grid { gap: 48px; }
body:not(.dashboard-body) .hero h1 { margin-bottom: 16px; }
body:not(.dashboard-body) .hero p { margin-bottom: 24px; }
body:not(.dashboard-body) .hero-actions { gap: 16px; margin-bottom: 24px; }
body:not(.dashboard-body) .hero-notes { gap: 16px 24px; }
body:not(.dashboard-body) .hero-card { padding: 16px; }
body:not(.dashboard-body) .hero-card-top { margin-bottom: 8px; padding-bottom: 8px; }
body:not(.dashboard-body) .activity-grid { gap: 8px; }
body:not(.dashboard-body) .activity-item { min-height: 80px; padding: 16px; }

body:not(.dashboard-body) .section { padding: 64px 0; }
body:not(.dashboard-body) .section-head,
body:not(.dashboard-body) .section-heading { gap: 8px; margin-bottom: 32px; }
body:not(.dashboard-body) .grid-3,
body:not(.dashboard-body) .grid-4,
body:not(.dashboard-body) .steps { gap: 16px; }
body:not(.dashboard-body) .card { padding: 24px; border-radius: 16px; }
body:not(.dashboard-body) #tools .card { min-height: 208px; }
body:not(.dashboard-body) #boards .card { min-height: 192px; }
body:not(.dashboard-body) #mascots .card { padding: 16px; }
body:not(.dashboard-body) #mascots .card img { margin-bottom: 16px !important; }
body:not(.dashboard-body) #how { padding: 64px 0; }
body:not(.dashboard-body) #how .card { min-height: 176px; }

body:not(.dashboard-body) .home-showcase-content { padding: 48px; }
body:not(.dashboard-body) .home-showcase-content h2 { margin: 8px 0; }
body:not(.dashboard-body) .cta { gap: 24px; padding: 24px 32px; border-radius: 16px; }

body:not(.dashboard-body) .site-footer { margin-top: 32px; padding: 32px 0 16px; }
body:not(.dashboard-body) .footer-grid { gap: 24px; }
body:not(.dashboard-body) .footer-social-actions { margin-top: 16px; gap: 8px; }
body:not(.dashboard-body) .footer-column { gap: 8px; }
body:not(.dashboard-body) .footer-column h2 { margin-bottom: 8px; }
body:not(.dashboard-body) .footer-bottom { margin-top: 24px; padding-top: 16px; }
body:not(.dashboard-body) .legal-links { gap: 16px; }

@media (max-width: 768px) {
  body:not(.dashboard-body) .shell { width: min(calc(100% - 32px), 1200px); }
  body:not(.dashboard-body) .nav { min-height: 64px; gap: 16px; }
  body:not(.dashboard-body) .hero { padding: 48px 0 32px; }
  body:not(.dashboard-body) .hero-grid { gap: 32px; }
  body:not(.dashboard-body) .section { padding: 48px 0; }
  body:not(.dashboard-body) .section-head,
  body:not(.dashboard-body) .section-heading { margin-bottom: 24px; }
  body:not(.dashboard-body) .card { padding: 16px; }
  body:not(.dashboard-body) .home-showcase-content { padding: 24px; }
  body:not(.dashboard-body) .cta { gap: 16px; padding: 24px; }
  body:not(.dashboard-body) .site-footer { margin-top: 32px; padding: 32px 0 16px; }
  body:not(.dashboard-body) .footer-grid { gap: 24px 16px; }
}

/* 2026-08-10 correction: match the measured FlaroCity 94vw / 8px layout. */
body:not(.dashboard-body) .shell,
body:not(.dashboard-body) .hero .shell {
  width: 94vw;
  max-width: none;
}

body:not(.dashboard-body) .hero { padding: 24px 0 8px; }
body:not(.dashboard-body) .hero-grid { gap: 24px; }
body:not(.dashboard-body) .hero h1 { margin-bottom: 8px; }
body:not(.dashboard-body) .hero p { margin-bottom: 16px; }
body:not(.dashboard-body) .hero-actions { gap: 8px; margin-bottom: 8px; }
body:not(.dashboard-body) .hero-notes { gap: 8px 16px; }
body:not(.dashboard-body) .hero-card { padding: 16px; }

body:not(.dashboard-body) .section { padding: 16px 0 8px; }
body:not(.dashboard-body) .section-head,
body:not(.dashboard-body) .section-heading { gap: 8px; margin-bottom: 16px; }
body:not(.dashboard-body) .section-head h2,
body:not(.dashboard-body) .section-heading h2 { font-size: clamp(28px, 2.5vw, 44px); }
body:not(.dashboard-body) .section-head p,
body:not(.dashboard-body) .section-heading p { max-width: 720px; font-size: 15px; }

body:not(.dashboard-body) .grid-3,
body:not(.dashboard-body) .grid-4,
body:not(.dashboard-body) .steps { gap: 8px; }
body:not(.dashboard-body) .card { padding: 16px; }
body:not(.dashboard-body) .card h3 { font-size: 18px; }
body:not(.dashboard-body) .card p { font-size: 14px; }
body:not(.dashboard-body) #tools .card,
body:not(.dashboard-body) #boards .card { min-height: 176px; }
body:not(.dashboard-body) #mascots .card { padding: 16px; }
body:not(.dashboard-body) #how { padding: 16px 0 8px; }
body:not(.dashboard-body) #how .card { min-height: 160px; }

body:not(.dashboard-body) .home-showcase-content { padding: 32px; }
body:not(.dashboard-body) .cta { gap: 16px; padding: 16px 24px; }
body:not(.dashboard-body) .site-footer { margin-top: 8px; padding: 8px 0; }
body:not(.dashboard-body) .footer-grid { gap: 8px 32px; }
body:not(.dashboard-body) .footer-bottom { margin-top: 8px; padding-top: 8px; }

@media (max-width: 768px) {
  body:not(.dashboard-body) .shell,
  body:not(.dashboard-body) .hero .shell { width: calc(100% - 24px); }
  body:not(.dashboard-body) .hero { padding: 24px 0 8px; }
  body:not(.dashboard-body) .hero-grid { gap: 16px; }
  body:not(.dashboard-body) .section { padding: 16px 0 8px; }
  body:not(.dashboard-body) .section-head,
  body:not(.dashboard-body) .section-heading { margin-bottom: 16px; }
  body:not(.dashboard-body) .grid-3,
  body:not(.dashboard-body) .grid-4,
  body:not(.dashboard-body) .steps { gap: 8px; }
}

/* ClubOS legal pages */
.legal-hero { padding: 24px 0 8px; }
.legal-hero p { max-width: 760px; }
.legal-dates { margin-top: 16px; display:flex; flex-wrap:wrap; justify-content:center; gap:8px; }
.legal-dates span { padding:8px 12px; border:1px solid rgba(0,240,255,.28); border-radius:999px; background:rgba(0,240,255,.055); color:#d8fcff; font-size:11px; font-weight:800; }
.legal-section { padding:16px 0 8px !important; }
.legal-layout { display:grid; grid-template-columns:288px minmax(0,1fr); gap:8px; align-items:start; }
.legal-toc,.legal-card { --legal-neon:0,240,255; position:relative; overflow:hidden; border:1px solid rgba(var(--legal-neon),.58); border-radius:20px; background:radial-gradient(circle at 50% -18%,rgba(var(--legal-neon),.19),transparent 44%),linear-gradient(155deg,rgba(8,12,28,.98),rgba(18,7,29,.97)); box-shadow:inset 0 0 24px rgba(var(--legal-neon),.07),0 0 16px rgba(var(--legal-neon),.13),0 18px 38px rgba(0,0,0,.35); }
.legal-toc::after,.legal-card::after { content:""; position:absolute; top:-1px; left:16%; right:16%; height:2px; border-radius:99px; background:rgb(var(--legal-neon)); box-shadow:0 0 10px rgba(var(--legal-neon),.95),0 0 24px rgba(var(--legal-neon),.6); }
.legal-toc { position:sticky; top:72px; padding:16px; display:grid; gap:8px; }
.legal-toc .dashboard-kicker { margin-bottom:8px; text-align:left; }
.legal-toc a { padding:8px 12px; border:1px solid rgba(255,255,255,.075); border-radius:8px; color:var(--muted); font-size:12px; font-weight:700; transition:border-color .2s ease,color .2s ease,background .2s ease; }
.legal-toc a:hover { border-color:rgba(0,240,255,.48); background:rgba(0,240,255,.07); color:#fff; }
.legal-content { display:grid; gap:8px; }
.legal-card { padding:16px 24px; scroll-margin-top:80px; }
.legal-card:nth-child(3n + 2) { --legal-neon:179,108,255; }
.legal-card:nth-child(3n) { --legal-neon:255,84,215; }
.legal-card > span { width:32px; height:32px; display:grid; place-items:center; float:left; margin:0 16px 8px 0; border:1px solid rgba(var(--legal-neon),.55); border-radius:10px; background:rgba(var(--legal-neon),.12); color:rgb(var(--legal-neon)); font-size:11px; font-weight:900; box-shadow:0 0 14px rgba(var(--legal-neon),.18); }
.legal-card h2 { margin:2px 0 8px; color:#fff; font-size:22px; text-align:left; }
.legal-card p { clear:both; color:var(--muted); font-size:14px; line-height:1.7; text-align:left; }
.legal-card a { color:var(--cyan); font-weight:800; }
.legal-card a:hover { color:#fff; text-shadow:0 0 10px rgba(0,240,255,.8); }

@media (hover:hover) and (pointer:fine) {
  .legal-card:hover { border-color:rgba(var(--legal-neon),.95); box-shadow:inset 0 0 30px rgba(var(--legal-neon),.11),0 0 18px rgba(var(--legal-neon),.28),0 18px 42px rgba(0,0,0,.44); transform:translateY(-2px); }
}

@media (max-width: 860px) {
  .legal-layout { grid-template-columns:1fr; }
  .legal-toc { position:relative; top:auto; grid-template-columns:repeat(2,minmax(0,1fr)); }
  .legal-toc .dashboard-kicker { grid-column:1 / -1; text-align:center; }
}

@media (max-width: 520px) {
  .legal-toc { grid-template-columns:1fr; }
  .legal-card { padding:16px; }
}

/* Authenticated ClubOS pages: full 94vw shell and strict 8px rhythm. */
.dashboard-body .shell { width:94vw; max-width:none; }
.dashboard-body .nav { min-height:64px; gap:24px; }
.dashboard-body .nav-links { gap:8px; padding:8px; border-radius:16px; }
.dashboard-body .nav-links a { min-height:40px; padding:8px 16px; border-radius:8px; }
.dashboard-body .nav-actions { gap:8px; }
.dashboard-body .dashboard-shell { padding-top:16px; padding-bottom:8px; }
.dashboard-body .dashboard-heading { gap:16px; margin-bottom:16px; }
.dashboard-body .dashboard-actions,
.dashboard-body .heading-actions,
.dashboard-body .club-heading-actions { gap:8px; }

.dashboard-body .metric-grid { gap:8px; margin-bottom:8px; }
.dashboard-body .metric-card { min-height:144px; padding:16px; }
.dashboard-body .metric-top { gap:8px; }
.dashboard-body .dashboard-panel { width:100%; }
.dashboard-body .panel-heading { gap:16px; padding:16px; }
.dashboard-body .health-summary { gap:16px; }
.dashboard-body .board-row { gap:8px; padding:16px; }
.dashboard-body .board-status { gap:8px; }
.dashboard-body .help-strip { margin-top:8px; padding:16px; gap:16px; }

.dashboard-body .connect-layout { gap:8px; }
.dashboard-body .simple-steps { padding:16px; gap:8px; }
.dashboard-body .simple-steps li { gap:8px; padding:16px; }
.dashboard-body .connect-card { padding:24px; }
.dashboard-body .board-edit-layout { grid-template-columns:288px minmax(0,1fr); gap:8px; }
.dashboard-body .settings-fields { margin-top:16px; gap:8px; }
.dashboard-body .save-bar { margin-top:16px; padding-top:16px; gap:16px; }

.dashboard-body .onboarding-card { gap:16px; padding:24px; }
.dashboard-body .plain-checks { margin-top:16px; gap:8px; }
.dashboard-body .club-tools-nav { margin:8px 0; padding:8px; gap:8px; }
.dashboard-body .club-tool-cards { margin-bottom:8px; gap:8px; }
.dashboard-body .club-tool-card { grid-template-columns:56px 1fr auto; gap:16px; padding:16px; }
.dashboard-body .club-summary-grid { margin:8px 0; gap:8px; }
.dashboard-body .operations-grid,
.dashboard-body .operations-grid.forms-grid { margin-bottom:8px; gap:8px; }
.dashboard-body .ops-form { padding:16px; gap:8px; }
.dashboard-body .form-pair { gap:8px; }
.dashboard-body .schedule-row { gap:8px; padding:16px; }
.dashboard-body .duty-list > div { gap:8px; padding:16px; }
.dashboard-body .device-card,
.dashboard-body .connection-key,
.dashboard-body .simple-settings-card,
.dashboard-body .radio-setup-card,
.dashboard-body .dj-requests-card { margin-bottom:8px; }
.dashboard-body .connection-key { padding:16px; gap:8px; }
.dashboard-body .core-pack-strip { margin-bottom:8px; padding:16px; gap:16px; }
.dashboard-body .addon-grid { gap:8px; }
.dashboard-body .addon-grid article { padding:16px; gap:8px; }
.dashboard-body .pricing-note { margin-top:8px; padding:16px; gap:8px; }

.dashboard-body .week-bar { gap:8px; }
.dashboard-body .schedule-legend { margin-top:8px; padding-top:8px; gap:16px; }
.dashboard-body .weekly-calendar { padding:8px; gap:8px; }
.dashboard-body .calendar-slots { padding:8px; gap:8px; }
.dashboard-body .calendar-slot { padding:8px; gap:8px; }
.dashboard-body .booking-actions { gap:8px; }
.dashboard-body .dj-request-list { padding:8px; gap:8px; }
.dashboard-body .dj-request { padding:16px; gap:8px; }

.dashboard-body .now-playing-card { min-height:288px; padding:24px; }
.dashboard-body .radio-status { margin-bottom:16px; padding:8px; gap:8px; }
.dashboard-body .radio-help-card .compact-steps { padding:16px; }
.dashboard-body .advanced-settings { padding:16px; }
.dashboard-body .advanced-fields { margin:16px 0 8px; }
.dashboard-body .friendly-toggle { padding:16px !important; }
.dashboard-body .site-footer { margin-top:8px; padding:8px 0; }

@media (max-width: 900px) {
  .dashboard-body .onboarding-card,
  .dashboard-body .operations-grid,
  .dashboard-body .operations-grid.forms-grid { grid-template-columns:1fr; }
}

@media (max-width: 768px) {
  .dashboard-body .shell { width:calc(100% - 24px); }
  .dashboard-body .dashboard-shell { padding-top:16px; }
  .dashboard-body .dashboard-heading { gap:8px; margin-bottom:16px; }
  .dashboard-body .board-edit-layout { grid-template-columns:1fr; }
  .dashboard-body .connect-card,
  .dashboard-body .onboarding-card { padding:16px; }
}

.dashboard-body .dashboard-heading > div:first-child { width:auto; flex:1 1 auto; }
.dashboard-body .dashboard-heading > .dashboard-actions,
.dashboard-body .dashboard-heading > .club-heading-actions { width:auto; flex:0 0 auto; }

@media (max-width: 768px) {
  .dashboard-body .dashboard-heading > .dashboard-actions,
  .dashboard-body .dashboard-heading > .club-heading-actions { width:100%; }
}

/* Polished control-center navigation, centered copy, and signed-in help. */
.dashboard-body .nav-links a {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  white-space:nowrap;
}
.dashboard-body .nav-icon {
  width:20px;
  height:20px;
  flex:0 0 20px;
  border:1px solid rgba(0,240,255,.32);
  border-radius:6px;
  object-fit:cover;
  box-shadow:0 0 10px rgba(0,240,255,.16);
}
.dashboard-body .nav-icon-symbol {
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,rgba(179,108,255,.25),rgba(0,240,255,.14));
  color:#eafdff;
  font-size:11px;
  font-weight:900;
}
.dashboard-body .nav-links a.active .nav-icon {
  border-color:rgba(0,240,255,.8);
  box-shadow:0 0 14px rgba(0,240,255,.5);
}
.dashboard-body .dashboard-heading,
.dashboard-body .dashboard-heading.compact,
.dashboard-body .dashboard-heading.club-heading,
.dashboard-body .dashboard-heading.tool-heading {
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.dashboard-body .dashboard-heading > div:first-child {
  width:100%;
  max-width:960px;
  flex:0 1 auto;
  margin:0 auto;
  text-align:center;
}
.dashboard-body .dashboard-heading h1,
.dashboard-body .dashboard-heading p,
.dashboard-body .dashboard-kicker {
  text-align:center;
}
.dashboard-body .dashboard-actions,
.dashboard-body .club-heading-actions,
.dashboard-body .heading-actions {
  width:auto;
  flex:0 0 auto;
  justify-content:center;
  margin:0 auto;
}
.dashboard-body .metric-card,
.dashboard-body .metric-top {
  text-align:center;
  align-items:center;
  justify-content:center;
}
.dashboard-body .metric-icon {
  overflow:hidden;
  padding:2px;
}
.dashboard-body .metric-icon img {
  width:100%;
  height:100%;
  border-radius:5px;
  object-fit:cover;
}
.dashboard-body .onboarding-copy,
.dashboard-body .simple-form-card {
  align-items:center;
  text-align:center;
}
.dashboard-body .feature-symbol-image {
  overflow:hidden;
  padding:4px;
}
.dashboard-body .feature-symbol-image img {
  width:100%;
  height:100%;
  border-radius:11px;
  object-fit:cover;
}
.dashboard-body .plain-checks {
  width:100%;
  justify-items:center;
}
.dashboard-body .simple-steps li {
  grid-template-columns:32px minmax(0,1fr);
  align-items:center;
  text-align:center;
}
.dashboard-body .simple-steps li > div {
  padding-right:32px;
}

.dashboard-help-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
  margin-bottom:8px;
}
.dashboard-help-card {
  --help-neon:0,240,255;
  position:relative;
  overflow:hidden;
  min-height:320px;
  padding:24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:1px solid rgba(var(--help-neon),.62);
  border-radius:20px;
  background:radial-gradient(circle at 50% -10%,rgba(var(--help-neon),.2),transparent 46%),linear-gradient(155deg,rgba(7,13,31,.98),rgba(14,6,26,.97));
  box-shadow:inset 0 0 30px rgba(var(--help-neon),.08),0 0 18px rgba(var(--help-neon),.16),0 18px 38px rgba(0,0,0,.34);
  text-align:center;
}
.dashboard-help-card::before {
  content:"";
  position:absolute;
  top:-1px;
  left:20%;
  right:20%;
  height:2px;
  background:rgb(var(--help-neon));
  box-shadow:0 0 14px rgba(var(--help-neon),.95),0 0 28px rgba(var(--help-neon),.6);
}
.dashboard-help-card.purple-card { --help-neon:179,108,255; }
.dashboard-help-card.pink-card { --help-neon:255,84,215; }
.dashboard-help-card > img {
  width:64px;
  height:64px;
  padding:4px;
  border:1px solid rgba(var(--help-neon),.65);
  border-radius:16px;
  object-fit:cover;
  box-shadow:0 0 20px rgba(var(--help-neon),.28);
}
.dashboard-help-card h2 { margin:0; }
.dashboard-help-card p { max-width:420px; margin:0 0 8px; }
.dashboard-help-card .form-step { color:rgb(var(--help-neon)); }
.dashboard-help-panel { scroll-margin-top:88px; }
.dashboard-help-panel .panel-heading { justify-content:center; text-align:center; }
.help-check-list {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
  padding:8px;
  list-style:none;
  counter-reset:none;
}
.help-check-list li {
  display:grid;
  grid-template-columns:40px minmax(0,1fr);
  align-items:center;
  gap:8px;
  min-height:104px;
  padding:16px;
  border:1px solid rgba(0,240,255,.24);
  border-radius:14px;
  background:rgba(7,13,31,.72);
  text-align:center;
}
.help-check-list li > span {
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border:1px solid rgba(0,240,255,.55);
  border-radius:12px;
  background:linear-gradient(135deg,#a966ff,#13dff0);
  color:#fff;
  font-weight:900;
  box-shadow:0 0 18px rgba(0,240,255,.24);
}
.help-check-list li > div { padding-right:40px; }
.help-check-list p { margin:4px 0 0; }

body:not(.dashboard-body) .docs-layout {
  width:94vw;
  max-width:none;
  grid-template-columns:240px minmax(0,1fr);
  gap:8px;
  margin:0 auto 8px;
}
body:not(.dashboard-body) .docs-layout > * { min-width:0; }
body:not(.dashboard-body) .docs-layout .setup-sidebar { padding:8px; }
body:not(.dashboard-body) .docs-panel {
  width:100%;
  min-width:0;
  padding:16px;
  align-items:stretch;
  text-align:center;
}
body:not(.dashboard-body) .docs-panel article,
body:not(.dashboard-body) .docs-panel h2,
body:not(.dashboard-body) .docs-panel p,
body:not(.dashboard-body) .docs-panel .intro {
  text-align:center;
}
body:not(.dashboard-body) .docs-panel .docs-notice {
  align-items:center;
  text-align:center;
}
body:not(.dashboard-body) .docs-panel .docs-action { align-self:center; }
body:not(.dashboard-body) .docs-panel .docs-steps li {
  align-items:center;
  text-align:center;
}
body:not(.dashboard-body) .docs-panel .docs-steps li > div { padding-right:40px; }

@media (max-width: 1180px) {
  .dashboard-body .nav-links a { padding:8px 10px; }
  .dashboard-body .nav-icon { display:none; }
}
@media (max-width: 900px) {
  .dashboard-help-grid,
  .help-check-list { grid-template-columns:1fr; }
  body:not(.dashboard-body) .docs-layout { grid-template-columns:1fr; }
  body:not(.dashboard-body) .docs-layout .setup-sidebar { position:relative; top:auto; }
}
@media (max-width: 768px) {
  .dashboard-body .dashboard-actions,
  .dashboard-body .club-heading-actions,
  .dashboard-body .heading-actions { width:100%; }
  .dashboard-body .simple-steps li > div,
  .help-check-list li > div,
  body:not(.dashboard-body) .docs-panel .docs-steps li > div { padding-right:0; }
  .dashboard-help-card { min-height:280px; padding:16px; }
}

/* Dashboard board list: true center, independent of controls on either side. */
.dashboard-body .dashboard-panel > .panel-heading {
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.dashboard-body .dashboard-panel > .panel-heading > div {
  width:100%;
  text-align:center;
}
.dashboard-body .dashboard-panel > .panel-heading .health-summary {
  width:auto;
  justify-content:center;
}
.dashboard-body .board-row {
  grid-template-columns:minmax(160px,1fr) minmax(260px,auto) minmax(160px,1fr);
  align-items:center;
}
.dashboard-body .board-row > .board-icon {
  grid-column:1;
  justify-self:start;
}
.dashboard-body .board-row > .board-main {
  grid-column:2;
  justify-self:center;
  width:100%;
  text-align:center;
}
.dashboard-body .board-row-actions {
  grid-column:3;
  justify-self:end;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
}
.dashboard-body .board-row-actions .board-status {
  align-items:center;
  text-align:center;
}

/* Owner admin and protected store demos */
.demo-lock-badge { display:inline-flex; align-items:center; width:max-content; padding:4px 9px; border:1px solid rgba(255,84,215,.55); border-radius:999px; color:#ff8de6; background:rgba(255,84,215,.12); box-shadow:0 0 16px rgba(255,84,215,.16); font-size:10px; font-weight:950; letter-spacing:.07em; vertical-align:middle; }
.admin-heading { align-items:center; }
.admin-panel { margin-top:18px; }
.demo-slot-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:9px; padding:18px; }
.demo-slot-card { min-height:112px; padding:16px; border:1px solid rgba(0,240,255,.26); border-radius:14px; background:linear-gradient(145deg,rgba(8,24,42,.9),rgba(12,10,31,.94)); display:flex; align-items:center; gap:14px; }
.demo-slot-card.filled { border-color:rgba(255,84,215,.48); box-shadow:0 0 22px rgba(255,84,215,.11); }
.demo-slot-number { width:42px; height:42px; flex:0 0 42px; border-radius:12px; display:grid; place-items:center; color:#050817; background:linear-gradient(135deg,#9e6cff,#00edff); font-size:20px; font-weight:950; }
.demo-slot-card strong,.demo-slot-card p,.demo-slot-card span { display:block; text-align:left; }.demo-slot-card p { margin:4px 0; color:var(--muted2); font-size:12px; }.demo-slot-card div > span { color:#79f7ff; font-size:11px; }
.admin-list { display:grid; gap:9px; padding:16px; }
.admin-record { border:1px solid rgba(255,255,255,.1); border-radius:14px; background:rgba(6,9,24,.82); overflow:hidden; }
.admin-record[open] { border-color:rgba(0,240,255,.32); box-shadow:0 0 24px rgba(0,240,255,.06); }
.admin-record summary { min-height:78px; padding:14px 16px; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:18px; list-style:none; }.admin-record summary::-webkit-details-marker { display:none; }
.admin-record summary > span:first-child { min-width:0; display:flex; flex-direction:column; gap:4px; }.admin-record summary strong { color:#fff; font-size:15px; }.admin-record summary small { color:var(--muted2); overflow-wrap:anywhere; }
.admin-record-meta { display:flex; align-items:center; justify-content:flex-end; flex-wrap:wrap; gap:9px; }.admin-record-meta em { color:var(--muted2); font-size:11px; font-style:normal; }
.admin-record-
.admin-inline-form,.admin-danger-form { padding:12px; border:1px solid rgba(255,255,255,.09); border-radius:12px; display:grid; grid-template-columns:minmax(180px,1fr) minmax(220px,2fr) auto; align-items:end; gap:9px; background:rgba(255,255,255,.018); }
.admin-inline-form label,.admin-danger-form label { display:grid; gap:6px; color:#fff; font-size:11px; font-weight:800; }.admin-inline-form input,.admin-inline-form select,.admin-danger-form input { width:100%; min-height:40px; }
.admin-danger-form { border-color:rgba(244,63,94,.22); grid-template-columns:1fr auto; }.btn-danger { color:#ffd7df; border-color:rgba(244,63,94,.46); background:rgba(244,63,94,.12); }
.admin-board-facts { display:flex; flex-wrap:wrap; gap:9px; }.admin-board-facts span { padding:7px 10px; border-radius:999px; color:var(--muted2); background:rgba(255,255,255,.04); font-size:11px; }
.admin-sales-list { display:grid; gap:1px; padding:16px; }.admin-sales-list article { padding:12px; display:grid; grid-template-columns:1fr 1.4fr .7fr .8fr; gap:10px; align-items:center; border-bottom:1px solid rgba(255,255,255,.07); }.admin-sales-list span,.admin-sales-list time { color:var(--muted2); font-size:11px; overflow-wrap:anywhere; }.admin-sales-list b { color:#72f7c7; font-size:10px; }
.account-switch { margin-top:18px; padding-top:16px; border-top:1px solid rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; gap:12px; color:var(--muted2); font-size:12px; }.account-switch .btn { min-height:38px; }
.account-form-shell { max-width:760px; margin:0 auto var(--ui48); }.register-hero { padding-bottom:24px; }.register-card { max-width:none; }.register-form-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }.register-wide { grid-column:1 / -1; }.register-errors { margin-bottom:18px; border-color:rgba(244,63,94,.5); background:rgba(244,63,94,.1); color:#fca5a5; }.register-errors ul { margin:6px 0 0; padding-left:18px; }.terms-check { margin-top:18px; padding:13px; border:1px solid rgba(0,240,255,.2); border-radius:12px; background:rgba(0,240,255,.035); display:flex; align-items:flex-start; justify-content:center; gap:9px; color:var(--muted); font-size:12px; }.terms-check input { width:18px; height:18px; flex:0 0 18px; accent-color:#00edff; }.terms-check a { color:#77f8ff; }.account-create-actions { justify-content:center; margin-top:18px; }
@media (max-width:900px){.demo-slot-grid{grid-template-columns:1fr 1fr}.admin-inline-form,.admin-danger-form{grid-template-columns:1fr}.admin-record summary{align-items:flex-start;flex-direction:column}.admin-record-meta{justify-content:flex-start}.admin-sales-list article{grid-template-columns:1fr}}
@media (max-width:560px){.demo-slot-grid{grid-template-columns:1fr}.register-form-grid{grid-template-columns:1fr}.register-wide{grid-column:auto}.account-switch{align-items:stretch;flex-direction:column}.account-switch .btn{width:100%}}

@media (max-width: 1000px) {
  .dashboard-body .board-row {
    grid-template-columns:48px minmax(0,1fr);
  }
  .dashboard-body .board-row > .board-icon { grid-column:1; grid-row:1; }
  .dashboard-body .board-row > .board-main { grid-column:2; grid-row:1; }
  .dashboard-body .board-row-actions {
    grid-column:1 / -1;
    grid-row:2;
    justify-self:center;
    justify-content:center;
  }
}

@media (max-width: 560px) {
  .dashboard-body .board-row {
    grid-template-columns:1fr;
    justify-items:center;
  }
  .dashboard-body .board-row > .board-icon,
  .dashboard-body .board-row > .board-main,
  .dashboard-body .board-row-actions {
    grid-column:1;
    grid-row:auto;
    justify-self:center;
  }
  .dashboard-body .board-row-actions {
    width:100%;
    flex-direction:column;
  }
  .dashboard-body .board-row-actions .btn { width:100%; }
}

/* Setup steps: number badges do not shift the copy away from true center. */
.dashboard-body .simple-steps li,
.dashboard-body .simple-steps li.current {
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  border-color:rgba(0,240,255,.18);
  background:rgba(7,17,37,.72);
  box-shadow:none;
  text-align:center;
}
.dashboard-body .simple-steps li > span {
  position:absolute;
  left:16px;
  top:50%;
  transform:translateY(-50%);
}
.dashboard-body .simple-steps li > div {
  width:100%;
  padding:0 48px;
  text-align:center;
}
.dashboard-body .simple-steps li strong,
.dashboard-body .simple-steps li p {
  display:block;
  width:100%;
  text-align:center;
}

@media (max-width: 420px) {
  .dashboard-body .simple-steps li { padding-top:56px; }
  .dashboard-body .simple-steps li > span {
    top:16px;
    left:50%;
    transform:translateX(-50%);
  }
  .dashboard-body .simple-steps li > div { padding:0; }
}

/* Universal Board catalog and friendly guided controls. */
.board-catalog-hero { padding-bottom:8px; }
.board-catalog-section { padding-top:8px !important; }
.catalog-bundle {
  --catalog-neon:0,240,255;
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto auto;
  align-items:center;
  gap:24px;
  margin-bottom:8px;
  padding:24px;
  border:1px solid rgba(var(--catalog-neon),.65);
  border-radius:20px;
  background:radial-gradient(circle at 50% -20%,rgba(var(--catalog-neon),.2),transparent 48%),linear-gradient(145deg,rgba(9,15,35,.98),rgba(20,7,32,.97));
  box-shadow:inset 0 0 30px rgba(var(--catalog-neon),.08),0 0 22px rgba(var(--catalog-neon),.18),0 18px 40px rgba(0,0,0,.35);
  text-align:center;
}
.catalog-bundle::before,.board-catalog-card::before {
  content:"";position:absolute;top:-1px;left:18%;right:18%;height:2px;background:rgb(var(--catalog-neon));
  box-shadow:0 0 12px rgba(var(--catalog-neon),1),0 0 28px rgba(var(--catalog-neon),.65);
}
.catalog-bundle h2,.catalog-bundle p { text-align:center; }
.catalog-bundle-price { display:grid; text-align:center; }
.catalog-bundle-price strong { color:#fff;font:900 30px/1 Outfit,sans-serif; }
.catalog-bundle-price span { margin-top:5px;color:var(--muted2);font-size:11px;text-transform:uppercase;letter-spacing:.12em; }
.board-catalog-grid { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px; }
.board-catalog-card {
  --catalog-neon:0,240,255;
  position:relative;overflow:hidden;min-height:304px;padding:24px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;
  border:1px solid rgba(var(--catalog-neon),.5);border-radius:18px;
  background:radial-gradient(circle at 50% -12%,rgba(var(--catalog-neon),.16),transparent 45%),linear-gradient(155deg,rgba(7,13,31,.98),rgba(15,7,26,.97));
  box-shadow:inset 0 0 25px rgba(var(--catalog-neon),.06),0 0 16px rgba(var(--catalog-neon),.12);text-align:center;
}
.board-catalog-card:nth-child(3n+2){--catalog-neon:179,108,255}.board-catalog-card:nth-child(3n){--catalog-neon:255,84,215}
.board-catalog-card img { width:58px;height:58px;padding:4px;border:1px solid rgba(var(--catalog-neon),.58);border-radius:15px;object-fit:cover;box-shadow:0 0 18px rgba(var(--catalog-neon),.24); }
.board-catalog-card h2 { margin:0;font-size:20px; }
.board-catalog-card p { max-width:380px;margin:0;color:var(--muted);font-size:13px;line-height:1.55; }
.catalog-category { color:rgb(var(--catalog-neon));font-size:10px;font-weight:900;letter-spacing:.14em;text-transform:uppercase; }
.catalog-price { display:grid;margin-top:auto;padding-top:8px;text-align:center; }
.catalog-price strong { color:#fff;font:900 24px/1 Outfit,sans-serif; }
.catalog-price span { margin-top:5px;color:var(--muted2);font-size:10px;text-transform:uppercase;letter-spacing:.1em; }
.catalog-note { margin-top:8px; }
.addon-grid article img { display:block;width:44px;height:44px;margin:0 auto 4px;border-radius:11px;object-fit:cover;box-shadow:0 0 14px rgba(0,240,255,.18); }
.addon-grid article small { color:var(--muted2);font-size:11px;line-height:1.5;text-align:center; }

.guided-field[hidden] { display:none !important; }
.location-picker { position:relative;width:100%; }
.location-results {
  position:absolute;z-index:30;top:calc(100% + 6px);left:0;right:0;overflow:hidden;padding:6px;
  border:1px solid rgba(0,240,255,.5);border-radius:12px;background:#080b1a;box-shadow:0 18px 38px rgba(0,0,0,.55),0 0 20px rgba(0,240,255,.14);
}
.location-results button { width:100%;padding:11px 12px;border:0;border-radius:8px;background:transparent;color:#dffcff;font:700 12px/1.35 Inter,sans-serif;text-align:left;cursor:pointer; }
.location-results button:hover,.location-results button:focus-visible { background:rgba(0,240,255,.1);color:#fff;outline:none; }
.location-loading { display:block;padding:12px;color:var(--muted);font-size:12px;text-align:center; }
.guided-field .field-help { display:block;margin-top:6px;color:var(--muted2);font-size:11px;line-height:1.45;text-align:center; }

.attendance-summary-grid { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;margin-bottom:8px; }
.attendance-panel .panel-heading { align-items:center; }
.attendance-table-wrap { overflow-x:auto; }
.attendance-table { width:100%;border-collapse:collapse; }
.attendance-table th,.attendance-table td { padding:14px 16px;border-bottom:1px solid rgba(255,255,255,.07);color:var(--muted);font-size:12px;text-align:center; }
.attendance-table th { color:#fff;font-size:10px;letter-spacing:.1em;text-transform:uppercase; }
.attendance-table td strong { color:#fff; }
.attendance-periods { flex-wrap:wrap; }
.kiosk-pairing-key code { color:#fff;font-size:24px;letter-spacing:.16em; }

@media (max-width: 1000px) {
  .board-catalog-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .catalog-bundle { grid-template-columns:1fr;gap:16px; }
}
@media (max-width: 760px) {
  .board-catalog-grid,.attendance-summary-grid { grid-template-columns:1fr; }
  .board-catalog-card { min-height:270px;padding:16px; }
}
.stock-badge{display:inline-flex;align-items:center;padding:4px 9px;border:1px solid rgba(0,238,255,.55);border-radius:999px;background:rgba(0,238,255,.09);color:#67f6ff;font-size:.68rem;font-weight:900;letter-spacing:.08em}
.stock-note{margin:0;padding:10px 12px;border:1px solid rgba(0,238,255,.24);border-radius:9px;background:rgba(0,238,255,.05);color:var(--muted)}
.slideshow-builder{margin-top:12px;padding:14px;border:1px solid rgba(0,238,255,.3);border-radius:12px;background:rgba(0,238,255,.04)}
.slideshow-items{display:grid;gap:8px;margin-top:10px}
.slideshow-item{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:9px 10px;border:1px solid rgba(235,69,255,.25);border-radius:9px;background:rgba(5,7,18,.72)}
.slideshow-item code{overflow-wrap:anywhere;color:#dffcff;font-size:.78rem}
.slideshow-item .btn{min-width:38px;padding:7px 10px}
.slideshow-library{grid-column:1/-1}
/* ClubOS Auction Status 2026-08-13 */
.auction-status-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin:14px 0}.auction-status-card{border-color:#24dff1;box-shadow:0 0 20px #17c8e533}.auction-status-card:hover{border-color:#ef53ff;box-shadow:0 0 28px #e33aff66}.auction-status-card.status-postponed{border-color:#ff456b}.auction-status-card.status-questionable{border-color:#ffb02e}.auction-status-card.status-disabled{opacity:.72}.device-management-list{display:grid;gap:10px}.device-name-form{display:grid;grid-template-columns:minmax(190px,1fr) minmax(260px,2fr) auto;align-items:end;padding:12px;border:1px solid #25eaff55;border-radius:14px;background:#071128}.device-name-form>div{display:grid;gap:4px}.device-name-form small{color:#9db3c9}.check-row{display:flex!important;align-items:center;gap:8px}.check-row input{width:auto!important}@media(max-width:800px){.auction-status-grid{grid-template-columns:1fr}.device-name-form{grid-template-columns:1fr}}


/* ==========================================================================
   DASHBOARD & OPERATOR NEON GLOW & ILLUMINATION ENHANCEMENTS
   ========================================================================== */

.dash-card,
.stat-card,
.card,
.bot-card,
.box,
.panel,
.quick-action-card {
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  border: 1px solid rgba(139, 92, 246, 0.28) !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45), inset 0 0 15px rgba(139, 92, 246, 0.04) !important;
  will-change: transform, box-shadow, border-color;
}

.dash-card:hover,
.stat-card:hover,
.card:hover,
.bot-card:hover,
.box:hover,
.panel:hover,
.quick-action-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(0, 240, 255, 0.85) !important;
  box-shadow: 0 0 28px rgba(0, 240, 255, 0.5), 0 0 60px rgba(139, 92, 246, 0.25), 0 16px 40px rgba(0, 0, 0, 0.65), inset 0 0 20px rgba(0, 240, 255, 0.12) !important;
}

/* Quick Action Buttons & Interactive Controls */
.qa-btn, .btn, .button {
  transition: all 0.25s ease !important;
  position: relative;
}

.qa-btn:hover, .btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.55), 0 0 40px rgba(0, 240, 255, 0.25) !important;
}

/* Inputs with Glowing Neon Focus */
input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  border-color: #00f0ff !important;
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.5), inset 0 0 10px rgba(0, 240, 255, 0.15) !important;
  outline: none !important;
}

/* Status Badges */
.badge-online, .status-online, .badge-green {
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.6) !important;
}

.badge-offline, .status-offline, .badge-red {
  box-shadow: 0 0 12px rgba(244, 63, 94, 0.6) !important;
}

.badge-cyan, .status-cyan {
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.6) !important;
}

/* Fix white-on-white dropdown text */
select option { background: #0d1122 !important; color: #ffffff !important; }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  background: radial-gradient(circle at 8% 8%, rgba(132,70,255,.22), transparent 31rem), radial-gradient(circle at 88% 12%, rgba(255,59,190,.15), transparent 34rem), linear-gradient(180deg, #090719 0, #080617 46rem, #03020c 100%) !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .2;
  background-image: linear-gradient(rgba(111,85,178,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(111,85,178,.14) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 72%);
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}


/* ==========================================================================
   HOMEPAGE THEME & RESPONSIVE SHELL ALIGNMENT FOR DASHBOARD
   ========================================================================== */

:root {
  --bg: #080617;
  --deep: #03020c;
  --panel: rgba(13, 10, 32, 0.88);
  --line: rgba(171, 126, 255, 0.28);
  --text: #fbf8ff;
  --muted: #b9b0cc;
  --muted2: #8e84a5;
  --pink: #ff4fbd;
  --cyan: #46ddff;
  --violet: #a96cff;
  --gold: #ffd35c;
  --lime: #96f58b;
  --shell: 1280px;
  --radius: 20px;
  --shadow: 0 24px 80px rgba(0,0,0,.48);
}

body, body.ops-body, body.dashboard-body {
  min-height: 100vh;
  margin: 0;
  color: var(--text, #fbf8ff);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  background:
    linear-gradient(180deg, rgba(8,6,23,0.86) 0%, rgba(5,3,17,0.92) 40%, rgba(3,2,12,0.98) 100%),
    radial-gradient(circle at 12% 8%, rgba(132,70,255,.24), transparent 32rem),
    radial-gradient(circle at 88% 12%, rgba(255,59,190,.18), transparent 34rem),
    url('/assets/flarocity-dashboard-bg.jpg') center top / cover no-repeat fixed !important;
  background-attachment: fixed !important;
}

body::before, body.ops-body::before, body.dashboard-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .18;
  background-image: linear-gradient(rgba(111,85,178,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(111,85,178,.15) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, #000 10%, transparent 80%);
  mask-image: linear-gradient(to bottom, #000 10%, transparent 80%);
}

/* Matching Homepage Panel & Shell Widths */
.ops-shell, .content, .ops-header-nav {
  width: min(calc(100% - 48px), var(--shell, 1280px));
  margin-inline: auto;
}

@media (min-width: 981px) {
  .ops-shell, .content, .ops-header-nav {
    width: min(94vw, 2400px) !important;
  }
}
@media (max-width: 980px) {
  .ops-shell, .content, .ops-header-nav {
    width: min(calc(100% - 40px), var(--shell, 1280px)) !important;
  }
}
@media (max-width: 720px) {
  .ops-shell, .content, .ops-header-nav {
    width: min(calc(100% - 28px), var(--shell, 1280px)) !important;
  }
}

/* Card & Panel Styling to Match Homepage */
.ops-hero,
.ops-bot-card,
.ops-table-wrap,
.stat-card,
.bot-card,
.panel,
.table-wrap,
.ops-section > div {
  background: rgba(13, 10, 32, 0.88) !important;
  border: 1px solid rgba(168, 85, 247, 0.32) !important;
  border-radius: 20px !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 25px rgba(168, 85, 247, 0.08) !important;
  backdrop-filter: blur(16px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(140%) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}

.ops-bot-card:hover,
.bot-card:hover,
.stat-card:hover,
.panel:hover {
  border-color: rgba(0, 240, 255, 0.6) !important;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 240, 255, 0.22) !important;
}

.ops-hero {
  padding: 32px 36px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 24px !important;
}

.ops-eyebrow {
  color: var(--pink, #ff4fbd) !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  font-weight: 800 !important;
}

/* Top Navbar Matching Homepage Site-Header */
.ops-header-nav {
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.ops-main-nav a {
  font-weight: 600 !important;
  font-size: 13px !important;
  color: #cbd5e1 !important;
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  padding: 8px 14px !important;
  border-radius: 10px !important;
  border: 1px solid transparent !important;
  text-decoration: none !important;
}
.ops-main-nav a:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}
.ops-main-nav a.active {
  color: #00f0ff !important;
  background: rgba(0, 240, 255, 0.08) !important;
  border: 1px solid rgba(0, 240, 255, 0.7) !important;
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.25) !important;
  font-weight: 700 !important;
}
.ops-main-nav a.active::after {
  display: none !important;
}


/* ==========================================================================
   CENTER ALL TEXT ON ALL DASHBOARD & OPERATIONAL PAGES
   ========================================================================== */

/* Headings & Ledes */
.ops-hero,
.ops-section-head,
.section-heading,
.panel-head,
.customer-services header,
.customer-catalog header,
.page-title-wrap {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.ops-hero > div,
.ops-section-head > div,
.section-heading > div,
.panel-head > div {
  text-align: center !important;
  margin-inline: auto !important;
}

.ops-hero h1,
.ops-section-head h2,
.section-heading h2,
.panel-head h3,
.customer-services h1,
.customer-catalog h2,
.ops-section-head h2,
h1, h2, h3, h4, h5, h6 {
  text-align: center !important;
}

.ops-eyebrow,
.eyebrow {
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-inline: auto !important;
}

.ops-hero p,
.ops-section-head p,
.section-heading p,
.customer-lead,
.customer-catalog header p,
.sub,
.panel-head p {
  text-align: center !important;
  margin-inline: auto !important;
}

/* Stat Cards */
.ops-stats,
.stats-row {
  justify-content: center !important;
}

.ops-stats article,
.stat-card {
  text-align: center !important;
  justify-content: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
}

.ops-stats article > div,
.stat-info {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  margin-inline: auto !important;
}

.ops-stats b,
.stat-val,
.ops-stats small,
.stat-label {
  text-align: center !important;
}

.ops-stat-icon,
.stat-icon {
  margin-inline: auto !important;
}

/* Bot Cards & Facts */
.ops-bot-card,
.bot-card,
.panel {
  text-align: center !important;
}

.ops-bot-card > header,
.bot-card-head {
  text-align: center !important;
  justify-content: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
}

.ops-avatar,
.bot-emoji {
  margin-inline: auto !important;
}

.ops-bot-card header p,
.bot-meta,
.bot-name,
.bot-status-text {
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.ops-bot-facts {
  text-align: center !important;
}

.ops-bot-facts div {
  text-align: center !important;
}

.ops-bot-facts dt,
.ops-bot-facts dd {
  text-align: center !important;
}

.ops-quick,
.ops-quick > span,
.ops-quick > div {
  text-align: center !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
}

.ops-quick > span {
  width: 100% !important;
  margin-bottom: 8px !important;
}

/* Command Builder & Forms */
.ops-command-builder,
.ops-command-builder summary,
.ops-command-builder label,
.ops-command-builder label span,
.form-group,
.form-group label {
  text-align: center !important;
  justify-content: center !important;
  margin-inline: auto !important;
}

.form-input,
.ops-command-builder input,
.ops-command-builder select {
  text-align: center !important;
  text-align-last: center !important;
}

select.form-input {
  text-align-last: center !important;
}

.qa-btn,
.btn-action,
.button {
  text-align: center !important;
  justify-content: center !important;
}

/* Tables & Ledgers */
.ops-table-wrap,
.table-wrap {
  text-align: center !important;
}

.ops-table,
.cmd-table {
  text-align: center !important;
  width: 100% !important;
}

.ops-table th,
.ops-table td,
.cmd-table th,
.cmd-table td {
  text-align: center !important;
  vertical-align: middle !important;
}

.ops-table code,
.cmd-table code {
  text-align: center !important;
  margin-inline: auto !important;
}

.ops-badge,
.badge {
  text-align: center !important;
  margin-inline: auto !important;
}

.ops-empty {
  text-align: center !important;
}

/* Portals & Customer Services */
.portal-card,
.portal-card-header,
.portal-desc,
.portal-title,
.portal-status,
.catalog-group,
.catalog-group h3,
.catalog-group ul,
.catalog-group li,
.catalog-group li span {
  text-align: center !important;
  justify-content: center !important;
  align-items: center !important;
}

.portal-icon {
  margin-inline: auto !important;
}

.catalog-group li {
  justify-content: center !important;
  flex-direction: column !important;
  gap: 4px !important;
}
.catalog-group li > span {
  align-items: center !important;
}
.catalog-group li > span:last-child {
  text-align: center !important;
}
