:root {
  --bg: #050505;
  --bg-2: #0B0B0D;
  --card: #111114;
  --card-2: #16161A;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #F5F5F5;
  --muted: #B8B8B8;
  --off-white: #EBE8E5;
  --red: #C90F13;
  --red-hover: #E12621;
  --red-dark: #7A090B;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  --radius: 20px;
  --max: 1180px;
}

@font-face {
  font-family: "Dream MMA";
  src: url("../assets/fonts/dream_mma/Dream%20MMA.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 8%, rgba(201, 15, 19, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 16%, rgba(122, 9, 11, 0.18), transparent 24rem),
    linear-gradient(180deg, #050505 0%, #0B0B0D 52%, #050505 100%);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg,
iframe {
  max-width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 10%, black, transparent 72%);
}

a {
  color: inherit;
}

.club-name-font {
  font-family: "Dream MMA", Impact, Haettenschweiler, "Arial Black", sans-serif;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-rendering: geometricPrecision;
  text-transform: none;
  overflow-wrap: normal;
}

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--red-hover);
  outline-offset: 4px;
}

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

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--text);
  color: var(--bg);
  clip: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  max-width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  gap: 0.82rem;
  text-decoration: none;
}

.brand span {
  min-width: 0;
}

.brand-logo {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 14px;
  filter: drop-shadow(0 12px 24px rgba(201, 15, 19, 0.18));
}

.brand-mark,
.octagon-badge {
  position: relative;
  display: grid;
  place-items: center;
  color: var(--text);
  font-weight: 950;
  background:
    linear-gradient(145deg, rgba(201, 15, 19, 0.92), rgba(122, 9, 11, 0.9)),
    #0B0B0D;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.35), 0 14px 32px rgba(201, 15, 19, 0.18);
  clip-path: polygon(22% 0, 78% 0, 100% 22%, 100% 78%, 78% 100%, 22% 100%, 0 78%, 0 22%);
}

.brand-mark {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.brand strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.92rem;
  min-width: 0;
}

.nav-links a {
  padding: 0.55rem 0.7rem;
  color: var(--muted);
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a.is-active {
  border: 1px solid rgba(201, 15, 19, 0.32);
}

.nav-toggle {
  display: none;
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.section-tight {
  padding-top: 26px;
}

.view-panel {
  display: none;
}

.view-panel.is-active {
  display: block;
}

.band {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - var(--max)) / 2));
  padding-right: max(16px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  padding-top: 74px;
  padding-bottom: 58px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 34px 0 24px;
  z-index: -1;
  background:
    radial-gradient(circle at 70% 44%, rgba(201, 15, 19, 0.2), transparent 19rem),
    linear-gradient(135deg, transparent 0 42%, rgba(255, 255, 255, 0.05) 42% 42.4%, transparent 42.4% 100%),
    linear-gradient(45deg, transparent 0 47%, rgba(255, 255, 255, 0.04) 47% 47.4%, transparent 47.4% 100%);
  opacity: 0.9;
}

.hero-grid,
.two-columns,
.contact-grid,
.signup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.5rem;
  align-items: center;
  min-width: 0;
}

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

.hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--text);
  font-size: clamp(3.25rem, 7.2vw, 4.8rem);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-wrap: balance;
  overflow-wrap: normal;
}

.hero-title-word {
  display: inline;
}

.lead {
  max-width: 640px;
  margin: 1.15rem 0 0;
  color: var(--off-white);
  font-size: 1.25rem;
}

.eyebrow,
.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  color: var(--off-white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.card-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(201, 15, 19, 0.9);
}

.section-head {
  max-width: 780px;
  margin-bottom: 1.4rem;
}

h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 4.8vw, 3rem);
  font-weight: 920;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h3 {
  margin: 0 0 0.8rem;
  color: var(--text);
  font-size: 1.18rem;
  letter-spacing: -0.015em;
}

p {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.12rem;
  border: 1px solid rgba(225, 38, 33, 0.86);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--red-hover), var(--red));
  color: var(--text);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  box-shadow: 0 16px 36px rgba(201, 15, 19, 0.22);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, #F13631, var(--red));
  box-shadow: 0 18px 42px rgba(201, 15, 19, 0.3);
}

.button-outline {
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--line-strong);
  box-shadow: none;
}

.button-ghost {
  background: transparent;
  border-color: rgba(201, 15, 19, 0.42);
  box-shadow: none;
}

.button-light {
  margin-top: 0.4rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.button-small {
  min-height: 40px;
  padding: 0.56rem 0.92rem;
}

.nav-links .nav-cta {
  color: var(--text);
  background: linear-gradient(180deg, var(--red-hover), var(--red));
}

.button.disabled {
  pointer-events: none;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.12);
  background: #26262A;
  color: #969696;
  box-shadow: none;
}

.hero-actions,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.55rem;
}

.hero-proof,
.value-grid,
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.3rem;
}

.sub-tabs,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.2rem 0;
}

.sub-tab {
  min-height: 42px;
  padding: 0.55rem 0.9rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.sub-tab:hover,
.sub-tab:focus-visible,
.sub-tab.is-active {
  color: var(--text);
  background: rgba(201, 15, 19, 0.18);
  border-color: rgba(201, 15, 19, 0.45);
}

.hero-proof span,
.value-grid span,
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.75rem;
  color: var(--off-white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-panel,
.accent-box,
.price-card,
.schedule-card,
.material-card,
.contact-card,
.discord-card,
.trial-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--card);
  box-shadow: var(--shadow);
}

.hero-panel,
.accent-box,
.contact-card,
.discord-card,
.trial-card {
  padding: 1.35rem;
}

.hero-panel::after,
.trial-card::after,
.discord-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(201, 15, 19, 0.16), transparent 34%, rgba(255, 255, 255, 0.035));
  mask-image: linear-gradient(black, transparent 72%);
}

.fight-card {
  overflow: hidden;
  min-height: 470px;
  display: grid;
  align-content: space-between;
  gap: 1rem;
}

.hero-logo {
  width: min(190px, 44vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.45));
}

.hero-mobile-logo {
  display: none;
}

.octagon-badge {
  width: 138px;
  height: 138px;
  margin-bottom: 0.2rem;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.hero-panel h2 {
  font-size: 2.2rem;
}

.hero-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem 0;
  border-top: 1px solid var(--line);
}

.hero-list strong,
.schedule-time {
  color: var(--text);
}

.hero-list strong {
  flex: 1 1 160px;
}

.hero-list span {
  flex: 1 1 170px;
  min-width: 0;
  color: var(--muted);
  text-align: right;
  overflow-wrap: anywhere;
}

.hero-list .location-row span {
  color: var(--off-white);
  line-height: 1.45;
}

.trial-section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.trial-card {
  overflow: hidden;
  padding: 2rem;
  background:
    radial-gradient(circle at 86% 18%, rgba(225, 38, 33, 0.32), transparent 20rem),
    linear-gradient(135deg, rgba(122, 9, 11, 0.72), rgba(17, 17, 20, 0.96));
}

.trial-card p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  color: var(--off-white);
  text-align: center;
}

.schedule-grid,
.price-grid,
.material-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.schedule-card,
.price-card,
.material-card {
  padding: 1.15rem;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.schedule-card:hover,
.price-card:hover,
.material-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--card-2);
}

.schedule-list,
.material-card ul,
.compact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.schedule-label {
  display: grid;
  gap: 0.12rem;
}

.schedule-label small {
  color: var(--muted);
  font-weight: 800;
}

.schedule-time {
  flex: 0 0 auto;
  padding: 0.35rem 0.65rem;
  background: rgba(201, 15, 19, 0.12);
  border: 1px solid rgba(201, 15, 19, 0.28);
  border-radius: 999px;
  font-weight: 900;
}

.price-card-featured {
  border-color: rgba(201, 15, 19, 0.4);
  background:
    radial-gradient(circle at 90% 12%, rgba(201, 15, 19, 0.22), transparent 13rem),
    var(--card);
}

.price {
  display: block;
  margin: 0.35rem 0 0.75rem;
  color: var(--text);
  font-size: clamp(2rem, 7vw, 2.6rem);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.price-note {
  margin: 0.45rem 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.note {
  margin-top: 1.2rem;
  color: var(--muted);
}

.alert {
  border: 1px solid rgba(201, 15, 19, 0.22);
  border-left: 4px solid var(--red);
  border-radius: 16px;
  padding: 1rem;
  background: rgba(201, 15, 19, 0.10);
  color: var(--off-white);
}

.signup-layout {
  align-items: start;
}

.signup-section {
  scroll-margin-top: 92px;
}

#tarifs .pricing-section {
  padding-bottom: 30px;
}

#tarifs .reminder-section {
  padding-top: 18px;
  padding-bottom: 38px;
}

#tarifs .signup-section {
  padding-top: 46px;
}

.signup-flow {
  max-width: 980px;
  margin: 0 auto;
}

.signup-copy {
  max-width: 640px;
}

.reminder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem;
}

.reminder-card {
  min-height: 124px;
  padding: 0.95rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    rgba(14, 14, 17, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-left: 3px solid rgba(201, 15, 19, 0.72);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.reminder-card h3 {
  margin-bottom: 0.38rem;
  color: var(--text);
  font-size: 0.98rem;
}

.reminder-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.48;
}

.helloasso-widget-card {
  overflow: hidden;
  min-height: 750px;
  width: 100%;
  max-width: 100%;
  margin-top: 1.15rem;
  padding: 1rem;
  background:
    radial-gradient(circle at 16% 0%, rgba(201, 15, 19, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.026));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.helloasso-secure-label {
  margin: 0;
}

.helloasso-secure-label {
  margin-bottom: 0.8rem;
  color: var(--off-white);
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: uppercase;
}

.helloasso-widget-container iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 750px;
  border: none;
  background: var(--text);
  border-radius: 14px;
}

.rules {
  margin: 1.1rem 0 1rem;
}

.material-card ul {
  display: grid;
  gap: 0.5rem;
  margin: 0.55rem 0 1rem;
}

.material-card li {
  padding: 0.56rem 0.65rem;
  color: var(--off-white);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.material-grid .material-card {
  align-self: stretch;
}

.material-heading {
  display: inline-flex;
  margin-top: 0.4rem;
  color: var(--text);
}

.compact-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0;
}

.compact-list li {
  padding-left: 1rem;
  color: var(--muted);
  border-left: 2px solid rgba(201, 15, 19, 0.55);
}

.contact-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1rem;
  align-items: start;
}

.discord-card {
  min-height: 100%;
}

.season-note {
  margin: 0 0 1rem;
}

.socials-spaced {
  margin-top: 1.2rem;
}

.contact-side {
  display: grid;
  gap: 1rem;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.contact-card p {
  margin: 0.6rem 0;
  overflow-wrap: anywhere;
}

.contact-card strong {
  color: var(--text);
}

.socials {
  justify-content: center;
  align-items: center;
  margin-top: 0;
  text-align: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.66rem 0.88rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  max-width: 100%;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.social-link span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(201, 15, 19, 0.38);
  background: rgba(201, 15, 19, 0.12);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.08));
}

.legal {
  padding-top: 46px;
  color: var(--muted);
}

.legal .section-head {
  margin-bottom: 1rem;
}

.legal h2 {
  font-size: 2rem;
}

.legal dl {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) 1fr;
  gap: 0.55rem 1rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.legal-details {
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.legal-details summary {
  color: var(--text);
  font-weight: 950;
  cursor: pointer;
}

.legal dt {
  color: var(--muted);
  font-weight: 800;
}

.legal dd {
  margin: 0;
  color: var(--off-white);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 1.7rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  overflow-wrap: anywhere;
}

.chatbot {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  max-width: calc(100% - 24px);
}

.chatbot-toggle,
.chatbot-form button,
.chatbot-close {
  border: 1px solid rgba(225, 38, 33, 0.78);
  background: linear-gradient(180deg, var(--red-hover), var(--red));
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.chatbot-toggle {
  min-height: 48px;
  padding: 0 1rem;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(201, 15, 19, 0.28);
}

.chatbot-panel {
  width: min(380px, calc(100% - 32px));
  max-height: min(580px, calc(100vh - 96px));
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: #111114;
  box-shadow: var(--shadow);
}

.chatbot-panel[hidden] {
  display: none;
}

.chatbot-head,
.chatbot-form {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}

.chatbot-head {
  justify-content: space-between;
  align-items: center;
}

.chatbot-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.chatbot-messages {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.75rem;
  overflow: auto;
}

.message {
  max-width: 90%;
  padding: 0.68rem 0.78rem;
  color: var(--off-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 14px 14px 14px 4px;
  overflow-wrap: anywhere;
}

.message.user {
  align-self: flex-end;
  background: rgba(201, 15, 19, 0.22);
  border-color: rgba(201, 15, 19, 0.28);
  border-radius: 14px 14px 4px 14px;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  max-width: 100%;
  margin: 0.1rem 0 0.25rem;
}

.quick-action {
  min-height: 34px;
  padding: 0.42rem 0.66rem;
  color: var(--off-white);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 850;
  max-width: 100%;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.quick-action:hover,
.quick-action:focus-visible {
  color: var(--text);
  background: rgba(201, 15, 19, 0.18);
  border-color: rgba(201, 15, 19, 0.42);
  transform: translateY(-1px);
}

.chatbot-form {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.chatbot-form input {
  min-width: 0;
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #050505;
  color: var(--text);
}

.chatbot-form button {
  padding: 0 0.85rem;
  border-radius: 12px;
  flex: 0 0 auto;
}

@media (max-width: 1024px) {
  .nav {
    width: min(var(--max), calc(100% - 28px));
  }

  .section {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .two-columns,
  .contact-grid,
  .contact-section-grid,
  .signup-layout,
  .material-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .fight-card {
    min-height: 0;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 0.8rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
  }

  .nav-links {
    position: absolute;
    inset: 74px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem;
    background: rgba(11, 11, 13, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    max-width: calc(100% - 32px);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .two-columns,
  .contact-grid,
  .contact-section-grid,
  .signup-layout,
  .schedule-grid,
  .material-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(3rem, 11vw, 3.8rem);
  }
}

@media (max-width: 768px) {
  .price-grid,
  .schedule-grid,
  .material-grid,
  .reminder-grid,
  .contact-section-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 22px;
    padding-bottom: 28px;
    overflow: visible;
    text-align: center;
    width: min(calc(100% - 24px), var(--max));
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-grid {
    width: 100%;
    max-width: 100%;
    gap: 1rem;
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero::before {
    inset: 0;
    background:
      radial-gradient(circle at 74% 6%, rgba(201, 15, 19, 0.22), transparent 13rem),
      radial-gradient(circle at 16% 68%, rgba(122, 9, 11, 0.18), transparent 11rem),
      linear-gradient(145deg, transparent 0 44%, rgba(255, 255, 255, 0.04) 44% 44.35%, transparent 44.35% 100%);
    opacity: 0.78;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-mobile-logo {
    display: block;
    width: 54px;
    height: 54px;
    margin: 0 auto 0.78rem;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(201, 15, 19, 0.22));
  }

  .hero .eyebrow {
    justify-content: center;
    margin-bottom: 0.58rem;
    font-size: 0.7rem;
  }

  .hero h1 {
    width: min(100%, calc(100vw - 44px));
    max-width: calc(100vw - 44px);
    overflow: visible;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.9rem, 9vw, 2.45rem) !important;
    line-height: 1.04 !important;
    letter-spacing: 0 !important;
    text-align: center;
    text-wrap: nowrap;
    overflow-wrap: normal;
    transform: none;
  }

  .hero-title-word {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero .lead {
    max-width: 35rem;
    margin: 0.78rem auto 0;
    font-size: clamp(0.96rem, 3.4vw, 1.05rem);
    line-height: 1.42;
    text-align: center;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 360px;
    gap: 0.5rem;
    margin-top: 0.9rem;
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 40px;
    padding: 0.58rem 0.82rem;
    font-size: 0.88rem;
  }

  .hero-actions .button:nth-child(2),
  .hero-actions .button:nth-child(3) {
    font-size: 0;
  }

  .hero-actions .button:nth-child(2)::after,
  .hero-actions .button:nth-child(3)::after {
    font-size: 0.88rem;
  }

  .hero-actions .button:nth-child(2)::after {
    content: "Tarifs & Inscriptions";
  }

  .hero-actions .button:nth-child(3)::after {
    content: "Contact & R\00e9seaux";
  }

  .hero-panel.fight-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
  }

  .hero-panel.fight-card::after,
  .hero-panel .hero-logo,
  .hero-panel .card-kicker,
  .hero-panel h2 {
    display: none;
  }

  .hero-list {
    width: 100%;
    min-width: 0;
    max-width: 420px;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-list li {
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 0.18rem;
    min-height: 0;
    width: 100%;
    padding: 0.66rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.105);
    border-radius: 14px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
      rgba(12, 12, 15, 0.9);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  }

  .hero-list strong,
  .hero-list span {
    flex: none;
    min-width: 0;
    text-align: center;
  }

  .hero-list strong {
    font-size: 0.84rem;
    line-height: 1.18;
  }

  .hero-list span {
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.28;
  }

  .hero-list .location-row {
    min-height: 0;
    margin-right: 0;
  }

  #accueil .hero-list,
  #accueil .hero-list li,
  #accueil .hero-list strong,
  #accueil .hero-list span,
  #accueil .hero-list .location-row,
  #accueil .hero-list .location-row strong,
  #accueil .hero-list .location-row span {
    text-align: center;
  }

  #accueil .hero-list li {
    align-items: center;
    justify-content: center;
    justify-items: center;
  }

  #accueil .hero-list strong,
  #accueil .hero-list span {
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-panel h2 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .helloasso-widget-card {
    padding: 0.75rem;
    border-radius: 16px;
  }

  .helloasso-widget-container iframe {
    min-height: 750px;
    border-radius: 12px;
  }

  .reminder-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .nav {
    width: min(calc(100% - 20px), var(--max));
    min-height: 58px;
    gap: 0.56rem;
  }

  .brand strong {
    font-size: clamp(0.62rem, 3.05vw, 0.78rem);
    line-height: 1;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .nav-toggle {
    min-height: 36px;
    padding: 0 0.68rem;
    flex: 0 0 auto;
    font-size: 0.9rem;
  }

  .nav-links {
    inset: 58px 10px auto 10px;
    max-width: calc(100% - 20px);
    padding: 0.55rem;
    border-radius: 14px;
  }

  .nav-links a {
    min-height: 38px;
    padding: 0.5rem 0.62rem;
  }

  .section {
    width: min(calc(100% - 24px), var(--max));
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 46px 0;
  }

  .band {
    padding: 46px 12px;
  }

  .socials,
  .contact-actions {
    flex-direction: column;
  }

  .lead {
    font-size: 1.05rem;
  }

  .hero-actions,
  .socials,
  .contact-actions {
    flex-direction: column;
  }

  .button,
  .social-link {
    width: 100%;
  }

  .social-link {
    justify-content: center;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-panel,
  .accent-box,
  .contact-card,
  .discord-card,
  .trial-card {
    padding: 1rem;
  }

  .hero-panel.fight-card {
    padding: 0;
  }

  .fight-card {
    min-height: 0;
  }

  .octagon-badge {
    width: 104px;
    height: 104px;
    font-size: 1.45rem;
  }

  .schedule-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .price {
    font-size: clamp(1.9rem, 9vw, 2.25rem);
  }

  .legal dl {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    width: min(calc(100% - 24px), var(--max));
    max-width: 100%;
    padding: 1.15rem 0 5.75rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer p {
    display: grid;
    gap: 0.12rem;
    margin: 0;
    line-height: 1.35;
  }

  .site-footer .footer-copyright {
    color: var(--off-white);
    font-weight: 850;
  }

  .site-footer .footer-club-name {
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .site-footer .footer-separator {
    display: none;
  }

  .site-footer .footer-tagline {
    color: var(--muted);
  }

  .chatbot {
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
  }

  .chatbot-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 58px;
    width: auto;
    max-height: min(540px, calc(100vh - 86px));
  }
}

@media (max-width: 480px) {
  .section {
    width: min(calc(100% - 20px), var(--max));
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 38px 0;
  }

  .band {
    padding: 38px 10px;
  }

  .hero {
    width: min(calc(100% - 20px), var(--max));
    max-width: 100%;
    min-height: auto;
    padding-top: 18px;
    padding-bottom: 46px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1,
  .hero h1.club-name-font,
  .hero-title,
  .club-name-font.hero-title {
    width: min(100%, calc(100vw - 44px));
    min-width: 0;
    max-width: calc(100vw - 44px);
    text-align: center;
    font-size: clamp(1.85rem, 9.2vw, 2.25rem) !important;
    line-height: 1.04 !important;
    letter-spacing: 0 !important;
    overflow-wrap: normal;
    margin-left: auto;
    margin-right: auto;
    transform: none;
  }

  .hero h1 span,
  .hero-title span,
  .hero-title .title-line,
  .hero-title-word {
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2rem);
    line-height: 1.08;
  }

  .lead {
    font-size: 0.94rem;
    line-height: 1.38;
  }

  .hero-actions {
    width: 100%;
    max-width: 340px;
    gap: 0.46rem;
    margin-top: 0.78rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .button {
    min-height: 38px;
    padding: 0.54rem 0.8rem;
  }

  .hero-list {
    gap: 0.44rem;
  }

  .hero-list li {
    min-height: 0;
    padding: 0.62rem 0.68rem;
    border-radius: 12px;
  }

  .hero-list strong {
    font-size: 0.84rem;
  }

  .hero-list span {
    font-size: 0.76rem;
  }

  .schedule-row {
    padding: 0.72rem 0;
  }

  .helloasso-widget-card {
    margin-left: -2px;
    margin-right: -2px;
    padding: 0.55rem;
  }

  .chatbot-toggle {
    min-height: 34px;
    padding: 0 0.56rem;
    border-radius: 16px;
    font-size: 0.72rem;
    box-shadow: 0 10px 24px rgba(201, 15, 19, 0.24);
  }

  .chatbot {
    right: 8px;
    bottom: 6px;
    max-width: calc(100% - 16px);
  }

  .chatbot-form {
    flex-wrap: wrap;
  }

  .chatbot-form input,
  .chatbot-form button {
    width: 100%;
  }

  .chatbot-form button {
    min-height: 42px;
  }
}

@media (max-width: 380px) {
  .nav {
    width: min(calc(100% - 16px), var(--max));
    min-height: 54px;
  }

  .brand {
    gap: 0.48rem;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .brand strong {
    font-size: 0.56rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .nav-toggle {
    min-height: 34px;
    padding: 0 0.58rem;
    font-size: 0.84rem;
  }

  .nav-links {
    inset: 54px 8px auto 8px;
    max-width: calc(100% - 16px);
  }

  .section {
    width: min(calc(100% - 18px), var(--max));
  }

  .hero h1 {
    width: min(100%, calc(100vw - 40px));
    max-width: calc(100vw - 40px);
    font-size: clamp(1.75rem, 9vw, 2.1rem) !important;
    line-height: 1.04 !important;
  }

  .hero .eyebrow {
    font-size: 0.66rem;
  }

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

  .hero-list {
    gap: 0.4rem;
  }

  .hero-list li {
    min-height: 0;
    padding: 0.56rem 0.62rem;
  }

  .hero-panel,
  .accent-box,
  .contact-card,
  .discord-card,
  .trial-card,
  .schedule-card,
  .price-card,
  .material-card {
    padding: 0.86rem;
    border-radius: 16px;
  }

  .chatbot {
    right: 8px;
    bottom: 6px;
    max-width: calc(100% - 18px);
  }

  .chatbot-panel {
    left: 9px;
    right: 9px;
    width: auto;
  }
}
