:root {
  --bg: #11111f;
  --bg-soft: #17172b;
  --surface: rgba(22, 22, 38, 0.9);
  --surface-strong: rgba(28, 28, 46, 0.96);
  --surface-highlight: rgba(68, 238, 11, 0.08);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --brand: #44ee0b;
  --brand-dark: #2eb000;
  --line: rgba(255, 255, 255, 0.1);
  --error: #ff7272;
  --warning: #ffce6a;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --font-headline: "SmadiMain", Georgia, "Times New Roman", serif;
  --font-body: Verdana, Geneva, sans-serif;
}

.partner-page .partner-shell {
  width: min(1120px, calc(100% - 32px));
  padding: 128px 0 48px;
}

.partner-page .partner-hero {
  align-items: center;
  margin-bottom: 28px;
}

.partner-page .dashboard-hero h1 {
  max-width: 760px;
  margin: 10px 0 14px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
}

.partner-page .dashboard-hero p {
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.65;
}

.partner-choice-panel,
.partner-form-panel {
  max-width: 900px;
  margin-inline: auto;
}

.partner-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.partner-choice-grid .button {
  justify-content: center;
  min-height: 56px;
  font-size: 0.92rem;
}

.partner-type-modal {
  max-width: min(720px, calc(100% - 28px));
}

.partner-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.partner-type-grid .button {
  min-height: 54px;
  justify-content: center;
  text-align: center;
}

.contact-preference-fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.contact-preference-fieldset legend {
  padding: 0 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.booking-form .contact-preference-option {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.contact-preference-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
}

.partner-page .site-footer {
  margin-top: 10px;
}

.partner-page .dashboard-header {
  position: fixed;
  left: 50%;
  width: min(1120px, calc(100% - 132px));
  transform: translateX(-50%);
}

.form-hint {
  min-height: 1.5rem;
  margin: 0;
}

.spam-challenge-field {
  display: grid;
  gap: 0.45rem;
}

@font-face {
  font-family: "SmadiMain";
  src: url("assets/fonts/main_font.ttf") format("truetype");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(68, 238, 11, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(68, 238, 11, 0.08), transparent 22%),
    linear-gradient(180deg, #0c0c18 0%, var(--bg) 42%, var(--bg-soft) 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select,
input {
  font: inherit;
}

.promo-popout {
  position: fixed;
  top: 50%;
  left: 0;
  z-index: 11;
  display: flex;
  align-items: stretch;
  max-width: min(340px, calc(100vw - 18px));
  transform: translateY(-50%);
  transition: transform 220ms ease;
}

.promo-popout.collapsed {
  transform: translate(calc(-100% + 42px), -50%);
}

@media (hover: hover) and (pointer: fine) {
  .promo-popout.collapsed:hover {
    transform: translateY(-50%);
  }
}

.promo-panel {
  display: grid;
  align-items: center;
  width: min(292px, calc(100vw - 60px));
  min-height: 108px;
  padding: 18px;
  border: 1px solid rgba(68, 238, 11, 0.28);
  border-left: 0;
  border-radius: 0 16px 16px 0;
  background: rgba(13, 13, 25, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  color: var(--text);
}

.promo-panel strong {
  color: var(--brand);
  font-family: var(--font-headline);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.promo-toggle {
  display: grid;
  place-items: center;
  width: 42px;
  border: 1px solid rgba(68, 238, 11, 0.36);
  border-left: 0;
  border-radius: 0 14px 14px 0;
  background: rgba(13, 13, 25, 0.96);
  color: var(--brand);
  cursor: pointer;
  font-family: var(--font-headline);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.promo-toggle span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 132px));
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(12, 12, 24, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.brand,
.site-nav,
.hero-actions,
.calendar-toolbar,
.process-strip {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-family: var(--font-headline);
  text-transform: none;
  letter-spacing: 0.04em;
}

.brand img {
  display: block;
  width: clamp(160px, 18vw, 250px);
  height: auto;
}

.site-nav {
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav a:hover,
.nav-logout-button:hover {
  color: var(--brand);
}

.nav-logout-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.nav-logout-button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.language-switch {
  position: fixed;
  top: 18px;
  right: 16px;
  z-index: 12;
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(12, 12, 24, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.mobile-menu-button,
.mobile-menu,
.mobile-menu-backdrop {
  display: none;
}

.mobile-menu-button {
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
  border: 1px solid rgba(68, 238, 11, 0.28);
  border-radius: 50%;
  background: rgba(68, 238, 11, 0.1);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 18;
  background: rgba(0, 0, 0, 0.42);
}

.mobile-menu {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 19;
  width: min(320px, 84vw);
  padding: 26px;
  border-right: 1px solid rgba(68, 238, 11, 0.22);
  background: rgba(12, 12, 24, 0.98);
  box-shadow: 18px 0 50px rgba(0, 0, 0, 0.34);
  transform: translateX(-100%);
  transition: transform 220ms ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  font-size: 1.6rem;
}

.mobile-menu nav {
  display: grid;
  gap: 4px;
  margin-top: 28px;
}

.mobile-menu nav a,
.mobile-menu nav button {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.mobile-menu nav button {
  width: 100%;
  text-align: left;
}

.language-button {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.05rem;
}

.language-button img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.language-button.active {
  border-color: rgba(68, 238, 11, 0.34);
  background: rgba(68, 238, 11, 0.14);
}

.social-rail {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 11;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.social-rail a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(68, 238, 11, 0.24);
  border-radius: 50%;
  background: rgba(12, 12, 24, 0.78);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
  color: var(--brand);
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.social-rail img {
  display: block;
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.social-rail a:hover {
  background: rgba(68, 238, 11, 0.14);
  transform: translateY(-1px);
}

.floating-availability {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 11;
  min-width: 190px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%);
}

.floating-availability:hover {
  transform: translate(-50%, -1px);
}

.floating-availability.button:hover {
  transform: translate(-50%, -1px);
}

.hero-section {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 128px max(24px, calc((100vw - 1120px) / 2)) 44px;
  overflow: hidden;
}

.hero-live-section {
  background-image: url("/assets/images/hero-live-show-ring-match.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #06060c;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 8, 16, 0.9) 0%, rgba(8, 8, 16, 0.62) 40%, rgba(8, 8, 16, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 8, 16, 0.05) 0%, rgba(8, 8, 16, 0.86) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: space-between;
  justify-items: center;
  width: 100%;
  min-height: calc(92vh - 172px);
  text-align: center;
}

.hero-logo {
  display: block;
  width: min(420px, 80vw);
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.42));
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(68, 238, 11, 0.22);
  border-radius: 999px;
  background: rgba(68, 238, 11, 0.12);
  color: var(--brand);
  font-family: var(--font-headline);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-headline);
  line-height: 1;
  text-transform: none;
  letter-spacing: 0.04em;
}

h1 {
  max-width: 9ch;
  margin-bottom: 20px;
  font-size: clamp(4rem, 12vw, 9rem);
}

.hero-live-section h1 {
  max-width: min(820px, 100%);
  margin-bottom: 10px;
  font-size: clamp(2rem, 7.2vw, 4.8rem);
  text-wrap: balance;
  white-space: normal;
}

.hero-live-section .hero-content {
  width: 100%;
}

.hero-bottom-copy {
  display: grid;
  align-content: end;
  justify-items: center;
  width: min(980px, 100%);
  min-height: 50%;
  align-self: end;
  padding: 18px 20px 6px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(8, 8, 16, 0), rgba(8, 8, 16, 0.58));
  transform: translateY(18px);
}

.hero-bottom-copy p {
  max-width: 760px;
  margin-bottom: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-content p {
  max-width: 58ch;
  font-size: 1.05rem;
}

.hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.event-type-picker {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 780px;
  margin-top: 18px;
}

.event-type-button {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(10, 10, 21, 0.58);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
  backdrop-filter: blur(10px);
}

.event-type-button:hover {
  border-color: rgba(68, 238, 11, 0.34);
  background: rgba(68, 238, 11, 0.12);
  color: var(--text);
  transform: translateY(-1px);
}

.event-type-button.active {
  border-color: rgba(68, 238, 11, 0.5);
  background: rgba(68, 238, 11, 0.18);
  color: var(--brand);
}

.button,
.icon-button {
  border: 0;
  cursor: pointer;
  transition: transform 160ms ease, opacity 160ms ease, border-color 160ms ease;
}

.button:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.button.primary {
  background: var(--brand);
  color: #101019;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.full-width {
  width: 100%;
}

.issue-report-link {
  justify-self: center;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.86rem;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.issue-report-link:hover,
.issue-report-link:focus-visible {
  color: var(--brand);
}

.booking-section,
.party-section,
.steps-section,
.setup-section,
.benefits-section,
.comparison-section,
.packages-section,
.addons-section,
.reviews-section,
.partnership-section,
.booking-process-section,
.workflow-section,
.board-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-copy {
  max-width: 760px;
  margin-bottom: 24px;
}

.party-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 28px;
}

.party-copy h2 {
  margin: 14px 0 0;
  font-size: clamp(1.7rem, 3.4vw, 3.4rem);
  line-height: 1.08;
}

.party-visual {
  display: grid;
  place-items: center;
  min-height: 320px;
}

.party-visual img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  filter: drop-shadow(0 28px 70px rgba(68, 238, 11, 0.15));
}

.steps-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.step-card,
.benefit-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(25, 25, 42, 0.98), rgba(17, 17, 31, 0.96));
  box-shadow: var(--shadow);
}

.step-card span {
  color: var(--brand);
  font-family: var(--font-headline);
  font-size: 1.55rem;
  line-height: 1;
}

.step-card h3,
.benefit-card h3 {
  margin-bottom: 0;
}

.step-card p,
.benefit-card p {
  margin-bottom: 0;
}

.setup-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 28px;
}

.setup-visual img {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.setup-copy p {
  font-size: 1.02rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.comparison-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(25, 25, 42, 0.98), rgba(17, 17, 31, 0.96));
  box-shadow: var(--shadow);
}

.comparison-card ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.5;
}

.comparison-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.comparison-card.featured-card {
  border-color: rgba(68, 238, 11, 0.34);
  background:
    linear-gradient(180deg, rgba(68, 238, 11, 0.11), rgba(17, 17, 31, 0.96)),
    var(--surface);
}

.comparison-card.featured-card li::before {
  background: var(--brand);
}

.comparison-card li.plus-marker::before,
.package-card li.plus-marker::before {
  content: "+";
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--brand);
  font-weight: 900;
}

.partnership-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(68, 238, 11, 0.28);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(68, 238, 11, 0.1), rgba(25, 25, 42, 0.96)),
    var(--surface);
  box-shadow: var(--shadow);
}

.partnership-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
}

.partnership-head .section-copy {
  margin-bottom: 0;
}

.partnership-visual {
  display: grid;
  justify-items: end;
}

.partnership-visual img {
  display: block;
  width: min(100%, 360px);
  height: auto;
  filter: drop-shadow(0 24px 58px rgba(68, 238, 11, 0.14));
}

.partnership-panel p {
  margin-bottom: 0;
}

.partnership-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.partnership-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.55;
}

.partnership-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 20px;
}

.panel,
.package-card,
.workflow-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.panel {
  padding: 24px;
}

.calendar-package-selector {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.visually-hidden-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.calendar-package-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.calendar-package-card {
  display: grid;
  gap: 8px;
  min-height: 104px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.calendar-package-card:hover,
.calendar-package-card:focus-visible {
  border-color: rgba(68, 238, 11, 0.44);
  box-shadow: 0 0 0 4px rgba(68, 238, 11, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.calendar-package-card.selected {
  border-color: rgba(68, 238, 11, 0.68);
  background: linear-gradient(180deg, rgba(68, 238, 11, 0.14), rgba(68, 238, 11, 0.045));
  box-shadow: 0 0 0 4px rgba(68, 238, 11, 0.09);
}

.calendar-package-card span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.calendar-package-card strong {
  color: var(--brand);
  font-family: var(--font-headline);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.package-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(4px);
}

.package-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 31;
  display: grid;
  gap: 14px;
  width: min(680px, calc(100% - 28px));
  padding: 24px;
  border: 1px solid rgba(68, 238, 11, 0.22);
  border-radius: var(--radius-xl);
  background: rgba(17, 17, 31, 0.98);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}

.package-modal[hidden],
.package-modal-backdrop[hidden] {
  display: none;
}

.package-modal .mobile-menu-close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.package-modal h3 {
  max-width: calc(100% - 48px);
  margin-bottom: 0;
}

.package-modal p {
  max-width: 58ch;
  margin-bottom: 4px;
}

.package-modal-cards {
  margin-top: 4px;
}

.calendar-toolbar {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.calendar-toolbar strong {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  text-transform: none;
  letter-spacing: 0.04em;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(68, 238, 11, 0.24);
  border-radius: 50%;
  background: rgba(68, 238, 11, 0.12);
  color: var(--brand);
  font-size: 1.35rem;
}

.weekday-grid,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.availability-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.78rem;
}

.availability-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot.green {
  background: var(--brand);
}

.legend-dot.yellow {
  background: #ffd65c;
}

.legend-dot.orange {
  background: #ff9f1c;
}

.legend-dot.red {
  background: #ff5353;
}

.weekday-grid {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
  text-transform: none;
}

.day-button {
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.day-button:hover,
.day-button.selected {
  border-color: rgba(68, 238, 11, 0.5);
  background: var(--surface-highlight);
}

.day-button.availability-green {
  border-color: rgba(68, 238, 11, 0.28);
  background: linear-gradient(180deg, rgba(68, 238, 11, 0.15), rgba(68, 238, 11, 0.055));
}

.day-button.availability-yellow {
  border-color: rgba(255, 214, 92, 0.34);
  background: linear-gradient(180deg, rgba(255, 214, 92, 0.18), rgba(255, 214, 92, 0.06));
}

.day-button.availability-orange {
  border-color: rgba(255, 159, 28, 0.58);
  background: linear-gradient(180deg, rgba(255, 159, 28, 0.34), rgba(255, 159, 28, 0.12));
}

.day-button.availability-red {
  border-color: rgba(255, 83, 83, 0.5);
  background: linear-gradient(180deg, rgba(255, 83, 83, 0.28), rgba(255, 83, 83, 0.09));
}

.day-button.selected {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18), 0 0 0 5px rgba(68, 238, 11, 0.16);
}

.day-button.unavailable {
  cursor: not-allowed;
  opacity: 0.76;
}

.day-button.too-soon {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.34);
}

.day-button.empty {
  visibility: hidden;
}

.day-number {
  font-weight: 700;
  font-size: 1.05rem;
}

.day-booking-count {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 22px;
  padding: 0 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(10, 10, 21, 0.34);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.day-status {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.booking-panel {
  display: grid;
  align-content: start;
  gap: 22px;
  background: linear-gradient(180deg, rgba(25, 25, 42, 0.98), rgba(17, 17, 31, 0.96));
}

.label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: none;
}

.booking-step {
  display: none;
  scroll-margin-top: 120px;
}

.booking-step.active {
  display: grid;
  gap: 16px;
}

.booking-form {
  display: grid;
  gap: 14px;
}

.form-section-title {
  margin-top: 4px;
  color: var(--text);
  font-family: var(--font-headline);
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0.04em;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.discount-entry {
  display: grid;
  gap: 8px;
}

.discount-code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.discount-code-row .button {
  min-height: 0;
  padding-inline: 16px;
}

.addon-fieldset,
.consent-fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
}

.addon-fieldset legend,
.consent-fieldset legend {
  padding: 0 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.booking-form .addon-option,
.booking-form .consent-option {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.booking-form .addon-option[hidden] {
  display: none;
}

.delivery-distance-field {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.delivery-distance-field[hidden] {
  display: none;
}

.delivery-distance-field small {
  color: var(--muted);
  line-height: 1.45;
}

.delivery-distance-field small a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.addon-option input,
.consent-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
}

.consent-option a {
  color: var(--brand);
  text-decoration: none;
}

.consent-option a:hover {
  text-decoration: underline;
}

.price-summary {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(68, 238, 11, 0.16);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(68, 238, 11, 0.09), rgba(255, 255, 255, 0.035));
}

.price-summary strong {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: 0.04em;
}

.price-summary-addons {
  display: grid;
  gap: 10px;
}

.price-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.price-summary-row[hidden] {
  display: none;
}

.price-summary-row span:last-child {
  color: var(--text);
  font-weight: 700;
  text-align: right;
}

.discount-row {
  color: var(--brand);
}

.discount-row span:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--brand);
}

.remove-discount-button {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(68, 238, 11, 0.36);
  border-radius: 50%;
  background: rgba(68, 238, 11, 0.12);
  color: var(--brand);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.price-summary-row.total {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 1.06rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(10, 10, 21, 0.92);
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(68, 238, 11, 0.22);
  border-color: rgba(68, 238, 11, 0.5);
}

textarea {
  min-height: 84px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.confirmation-box {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(68, 238, 11, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(68, 238, 11, 0.08);
}

.confirmation-box p {
  margin: 0;
  color: var(--muted);
}

.confirmation-box .confirmation-reference {
  color: var(--text);
  font-weight: 800;
}

.confirmation-box strong {
  color: var(--text);
}

.process-strip {
  justify-content: space-between;
  gap: 8px;
  padding-top: 4px;
}

.process-strip[hidden] {
  display: none;
}

.process-strip span {
  flex: 1;
  position: relative;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.process-strip span::after {
  content: "";
  display: block;
  height: 16px;
  margin-top: 4px;
  color: var(--brand);
  font-size: 0.8rem;
  line-height: 1;
}

.process-strip span.completed::after {
  content: "✓";
}

.process-strip .active {
  border-color: rgba(68, 238, 11, 0.32);
  background: rgba(68, 238, 11, 0.1);
  color: var(--brand);
}

.package-grid,
.board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.package-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(25, 25, 42, 0.98), rgba(17, 17, 31, 0.96));
}

.selectable-package-card {
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.selectable-package-card:hover,
.selectable-package-card:focus-visible {
  border-color: rgba(68, 238, 11, 0.44);
  box-shadow: var(--shadow), 0 0 0 4px rgba(68, 238, 11, 0.08);
  transform: translateY(-2px);
  outline: none;
}

.selectable-package-card.selected {
  border-color: rgba(68, 238, 11, 0.62);
  background:
    linear-gradient(180deg, rgba(68, 238, 11, 0.13), rgba(17, 17, 31, 0.96)),
    var(--surface);
  box-shadow: var(--shadow), 0 0 0 5px rgba(68, 238, 11, 0.1);
}

.package-card.featured {
  border-color: rgba(68, 238, 11, 0.36);
  background:
    linear-gradient(180deg, rgba(68, 238, 11, 0.1), rgba(17, 17, 31, 0.96)),
    var(--surface);
}

.selectable-package-card.selected.featured {
  border-color: rgba(68, 238, 11, 0.62);
  background:
    linear-gradient(180deg, rgba(68, 238, 11, 0.13), rgba(17, 17, 31, 0.96)),
    var(--surface);
}

.package-card h3 {
  font-size: 2rem;
}

.package-card .label {
  font-size: 1.06rem;
  line-height: 1.2;
}

.package-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.5;
}

.package-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.reviews-viewport {
  position: relative;
  overflow: hidden;
  padding: 8px 0 18px;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.reviews-viewport.dragging {
  cursor: grabbing;
}

.reviews-viewport::before,
.reviews-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(120px, 18vw);
  pointer-events: none;
}

.reviews-viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), rgba(17, 17, 31, 0));
}

.reviews-viewport::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), rgba(17, 17, 31, 0));
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 20px;
  will-change: transform;
  animation: reviews-slide 72s linear infinite;
}

.reviews-viewport:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  display: grid;
  align-content: start;
  gap: 14px;
  width: min(390px, calc(100vw - 56px));
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(25, 25, 42, 0.98), rgba(17, 17, 31, 0.96));
  box-shadow: var(--shadow);
}

.review-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.review-author {
  display: grid;
  gap: 4px;
}

.review-author strong {
  font-family: var(--font-headline);
  font-size: 1.08rem;
  text-transform: none;
  letter-spacing: 0.04em;
}

.review-date {
  color: var(--muted);
  font-size: 0.78rem;
}

.review-stars {
  color: var(--brand);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.review-card blockquote {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.review-source {
  margin-top: auto;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0.08em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0 92px;
  border-top: 1px solid var(--line);
}

.legal-page {
  width: min(840px, calc(100% - 32px));
  margin: 0 auto;
  padding: 120px 0 80px;
}

.legal-page h1 {
  max-width: none;
  margin-top: 32px;
  font-size: clamp(1.7rem, 5vw, 3rem);
  line-height: 1.18;
  overflow-wrap: normal;
}

.legal-logo {
  display: inline-flex;
  width: min(260px, 72vw);
  margin-bottom: 28px;
}

.legal-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.legal-page h2 {
  margin: 42px 0 14px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.28;
}

.legal-page p,
.legal-page address {
  color: var(--muted);
  line-height: 1.75;
}

.legal-page address {
  font-style: normal;
}

.legal-page section {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--line);
}

.legal-page a:not(.button) {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-updated {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--brand);
}

.footer-logo {
  display: inline-grid;
  place-items: center;
}

.footer-logo img {
  display: block;
  width: clamp(150px, 17vw, 230px);
  height: auto;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(68, 238, 11, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
}

.footer-social a:hover {
  background: rgba(68, 238, 11, 0.14);
  transform: translateY(-1px);
}

.footer-social img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

@keyframes reviews-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 10px));
  }
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.workflow-list li {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.workflow-list strong {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  text-transform: none;
}

.faq-list strong {
  position: relative;
  padding-left: 18px;
}

.faq-list strong::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.workflow-list span {
  color: var(--muted);
  line-height: 1.55;
}

.booking-process-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-process-list small {
  color: var(--brand);
  font-family: var(--font-headline);
  font-size: 1.45rem;
  line-height: 1;
}

.stat-panel strong {
  display: block;
  font-family: var(--font-headline);
  margin-top: 8px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1;
}

.table-panel {
  margin-top: 20px;
  overflow-x: auto;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.9fr 0.9fr;
  gap: 16px;
  min-width: 720px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.table-row:first-child,
.table-head + .table-row {
  border-top: 0;
}

.table-head {
  color: var(--text);
  font-weight: 700;
}

.status {
  display: inline-flex;
  width: max-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.status.ok {
  background: rgba(68, 238, 11, 0.12);
  color: var(--brand);
}

.status.waiting {
  background: rgba(255, 206, 106, 0.13);
  color: var(--warning);
}

.status-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 20;
  max-width: calc(100% - 32px);
  padding: 12px 16px;
  border: 1px solid rgba(68, 238, 11, 0.28);
  border-radius: 999px;
  background: rgba(10, 10, 21, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
  color: var(--brand);
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translate(-50%, 16px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.toast.error {
  border-color: rgba(255, 114, 114, 0.3);
  color: var(--error);
}

.dashboard-body {
  min-height: 100vh;
}

.dashboard-header {
  position: fixed;
  left: 50%;
  width: min(1120px, calc(100% - 132px));
  transform: translateX(-50%);
}

.dashboard-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 128px 0 72px;
}

.dashboard-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.dashboard-hero h1 {
  max-width: 760px;
  margin: 10px 0 14px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
}

.dashboard-hero p {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.65;
}

.dashboard-login-panel {
  max-width: 420px;
  margin: 12vh auto 0;
}

.dashboard-login-panel h1 {
  max-width: none;
  margin: 10px 0 22px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.dashboard-2fa-modal {
  width: min(420px, calc(100% - 28px));
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: 20px;
  margin-top: 20px;
}

.dashboard-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.dashboard-section-head h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.3vw, 2.35rem);
  line-height: 1.08;
}

.dashboard-search {
  max-width: 360px;
}

.booking-table-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.dashboard-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
  white-space: nowrap;
}

.dashboard-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
}

.dashboard-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.dashboard-refresh-floating {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 14;
  min-width: 170px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%);
}

.dashboard-refresh-floating.button:hover {
  transform: translate(-50%, -1px);
}

.dashboard-modal {
  width: min(900px, calc(100% - 28px));
  max-height: min(86vh, 940px);
  overflow-y: auto;
}

.dashboard-manual-form {
  margin-top: 18px;
}

.manual-addon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.dashboard-manual-form .form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 6px;
}

.button.tiny {
  min-height: 34px;
  padding: 7px 12px;
  font-size: 0.78rem;
}

.dashboard-table {
  overflow-x: auto;
}

.dashboard-row {
  display: grid;
  gap: 16px;
  min-width: 980px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.booking-table .dashboard-row {
  grid-template-columns: 1fr 1.2fr 1fr 1.05fr 1.2fr 0.75fr 0.8fr;
}

.holds-table .dashboard-row {
  grid-template-columns: 1fr 1.2fr 1fr 1fr 0.75fr;
}

.offers-table .dashboard-row {
  grid-template-columns: 0.95fr 1.1fr 1.2fr 1.15fr 0.75fr 1.25fr 0.7fr;
}

.partner-table .dashboard-row {
  grid-template-columns: 1fr 1.2fr 1fr 1.1fr 0.85fr 0.7fr;
}

.issues-table .dashboard-row {
  grid-template-columns: 0.95fr 1.1fr 1.1fr 1.7fr 0.7fr;
}

.dashboard-row-head {
  border-top: 0;
  color: var(--text);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dashboard-row span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.dashboard-row small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  line-height: 1.35;
}

.dashboard-empty {
  padding: 20px 0 4px;
  color: var(--muted);
}

.detail-panel {
  align-self: start;
}

.detail-panel h3 {
  margin: 10px 0 10px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.date-bookings-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.date-booking-item {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  text-align: left;
}

.date-booking-button {
  cursor: pointer;
}

.date-booking-button:hover,
.date-booking-button:focus-visible {
  border-color: rgba(68, 238, 11, 0.44);
  background: rgba(68, 238, 11, 0.08);
  outline: none;
}

.date-booking-item strong {
  font-family: var(--font-headline);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.date-booking-item span,
.date-bookings-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.dashboard-link {
  display: block;
  width: max-content;
  max-width: 100%;
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  overflow-wrap: anywhere;
}

.dashboard-link + .dashboard-link {
  margin-top: 5px;
}

@media (max-width: 900px) {
  .language-switch {
    flex-direction: column;
  }

  .promo-popout {
    top: auto;
    right: 0;
    bottom: 86px;
    left: auto;
    flex-direction: row-reverse;
    max-width: min(320px, calc(100vw - 16px));
    transform: translateX(0);
  }

  .promo-popout.collapsed {
    transform: translateX(calc(100% - 46px));
  }

  .promo-panel {
    width: min(260px, calc(100vw - 64px));
    min-height: 92px;
    border-right: 0;
    border-left: 1px solid rgba(68, 238, 11, 0.28);
    border-radius: 16px 0 0 16px;
  }

  .promo-toggle {
    width: 46px;
    border-right: 0;
    border-left: 1px solid rgba(68, 238, 11, 0.36);
    border-radius: 14px 0 0 14px;
  }

  .promo-toggle span {
    writing-mode: vertical-rl;
    transform: none;
  }

  .site-header {
    align-items: center;
    border-radius: 24px;
  }

  .site-nav {
    display: none;
  }

  .mobile-menu-button {
    display: grid;
    order: -1;
  }

  .mobile-menu:not([hidden]),
  .mobile-menu-backdrop:not([hidden]) {
    display: block;
  }

  .hero-section {
    min-height: 86vh;
    padding-top: 108px;
  }

  .hero-live-section {
    background-image: none;
  }

  .hero-content {
    position: relative;
    overflow: hidden;
    padding-top: 0;
    background-image: none;
  }

  .hero-content::before {
    content: "";
    position: absolute;
    top: 48px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-image:
      linear-gradient(180deg, rgba(6, 6, 12, 0.08) 0%, rgba(6, 6, 12, 0.14) 44%, rgba(6, 6, 12, 0.72) 100%),
      var(--hero-mobile-image, url("/assets/images/hero-live-show-ring-match.png"));
    background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .hero-live-section h1 {
    white-space: normal;
  }

  .booking-layout,
  .party-section,
  .setup-section,
  .steps-grid,
  .benefit-grid,
  .comparison-grid,
  .partnership-head,
  .partnership-panel,
  .package-grid,
  .workflow-list,
  .board-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-hero,
  .dashboard-section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .dashboard-search {
    max-width: none;
  }

  .booking-table-controls,
  .dashboard-pagination {
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
  }

  .dashboard-checkbox {
    white-space: normal;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    order: 2;
  }

  .footer-logo {
    order: 1;
  }

  .footer-social {
    justify-content: center;
    order: 3;
  }
}

@media (max-width: 620px) {
  .booking-section,
  .party-section,
  .steps-section,
  .setup-section,
  .benefits-section,
  .comparison-section,
  .packages-section,
  .addons-section,
  .reviews-section,
  .partnership-section,
  .booking-process-section,
  .workflow-section,
  .board-section {
    width: min(100% - 20px, 1120px);
    padding: 52px 0;
  }

  .panel,
  .package-card,
  .workflow-list li {
    padding: 18px;
    border-radius: 22px;
  }

  .weekday-grid,
  .calendar-grid {
    gap: 5px;
  }

  .day-button {
    min-height: 70px;
    padding: 8px;
  }

  .day-status {
    font-size: 0.68rem;
  }

  .hero-section {
    min-height: 90vh;
    padding-top: 118px;
    padding-bottom: 22px;
  }

  .hero-live-section {
    background-image: none;
  }

  .hero-content {
    min-height: calc(90vh - 140px);
    align-content: space-between;
  }

  .hero-live-section h1 {
    font-size: clamp(1.55rem, 8.8vw, 2.65rem);
    line-height: 0.98;
  }

  .hero-bottom-copy {
    width: 100%;
    min-height: 50%;
    align-content: end;
    padding: 12px 12px 4px;
    margin-top: auto;
    transform: translateY(2px);
    background: linear-gradient(180deg, rgba(8, 8, 16, 0), rgba(8, 8, 16, 0.42));
  }

  .hero-bottom-copy p {
    max-width: 34ch;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 14px;
  }

  .hero-actions .button {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .event-type-picker {
    gap: 6px;
    margin-top: 10px;
  }

  .event-type-button {
    min-height: 30px;
    padding: 6px 8px;
    font-size: 0.74rem;
  }

  .process-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .social-rail {
    right: 10px;
  }

  .social-rail a {
    width: 40px;
    height: 40px;
  }

  .social-rail img {
    width: 22px;
    height: 22px;
  }

  .floating-availability {
    bottom: 12px;
    min-width: min(230px, calc(100% - 88px));
  }

  .dashboard-shell {
    width: min(100% - 20px, 1280px);
    padding-top: 100px;
  }

  .site-footer {
    width: min(100% - 20px, 1120px);
    padding-bottom: 86px;
  }

  .partnership-visual {
    justify-items: center;
  }

  .partnership-visual img {
    width: min(100%, 300px);
  }

  .partnership-panel {
    padding: 20px;
    border-radius: 22px;
  }
}
