/* simple.css — boutique simple, couleurs club, gros boutons, peu de bruit */

:root {
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --soft: #F3F5FB;
  --line: #E5E8F1;
  --line-2: #C9CFDC;

  --navy: #133478;
  --navy-2: #2A4A95;
  --ink: #133478;
  --ink-2: #3E5180;
  --muted: #6B7591;

  --yellow: #FFCF21;
  --yellow-2: #E8B800;
  --yellow-ink: #133478;

  --ok: #2F9E5C;
  --bad: #C44141;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: #EFE9DC;
  color: var(--ink);
  font-family: "Inter", -apple-system, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── Screen shell ─────────────────────────────────────────── */
.scr {
  width: 100%; height: 100%;
  background: var(--bg);
  color: var(--ink);
  display: flex; flex-direction: column;
  overflow: hidden;
  font-size: 17px;
  line-height: 1.4;
}

/* ── Top bar ──────────────────────────────────────────────── */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 62px 16px 16px;
  background: var(--navy);
  color: #fff;
}
.topbar-brand {
  display: flex; align-items: center; gap: 12px;
}
.topbar-mark {
  width: 40px; height: 40px;
  border-radius: 6px;
  overflow: hidden;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
}
.topbar-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
/* Topbar with the FCSM shield centered and overlapping the body below */
.topbar--centered {
  position: relative;
  height: 76px;
  padding: 62px 18px 0;
  display: flex; align-items: flex-end;
  justify-content: space-between;
  background: var(--navy);
  color: #fff;
}
.topbar--centered .topbar-name {
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.01em;
  line-height: 1.25;
  padding-bottom: 16px;
}
.topbar--centered .topbar-name span {
  display: block;
  font-weight: 500; font-size: 11.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
}
.topbar--centered .topbar-btn {
  margin-bottom: 8px;
}
.topbar-shield {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  height: 84px;
  width: auto;
  pointer-events: none;
  z-index: 4;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.12));
}
/* Push body content below the overlapping shield's bottom */
.topbar--centered + .body { padding-top: 36px; }
.topbar-name {
  font-weight: 700; font-size: 16px;
  letter-spacing: 0.01em;
}
.topbar-name span {
  display: block;
  font-weight: 500; font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1px;
}
.topbar-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}

/* ── Back bar (for steps) ─────────────────────────────────── */
.backbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 64px 12px 12px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.back-btn {
  display: flex; align-items: center; gap: 8px;
  background: transparent; border: 0;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 16px; font-weight: 600;
  color: var(--navy);
  border-radius: 12px;
}
.help-btn {
  display: flex; align-items: center; gap: 6px;
  background: transparent; border: 0;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 14px; font-weight: 600;
  color: var(--ink-2);
  border-radius: 12px;
}

/* ── Step indicator ───────────────────────────────────────── */
.steps {
  padding: 18px 20px 8px;
  background: #fff;
}
.steps-text {
  font-size: 13px; font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.steps-bar {
  display: flex; gap: 6px;
}
.steps-bar span {
  flex: 1; height: 6px;
  background: var(--line);
  border-radius: 999px;
}
.steps-bar span.on {
  background: var(--navy);
}

/* ── Body ─────────────────────────────────────────────────── */
.body { flex: 1; overflow-y: auto; padding-bottom: 24px; }

.page-title {
  padding: 20px 20px 4px;
}
.page-title h1 {
  margin: 0;
  font-size: 30px; font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--navy);
}
.page-title p {
  margin: 8px 0 0;
  font-size: 16px;
  color: var(--ink-2);
}

/* ── Hero card (next match on home) ───────────────────────── */
.hero {
  margin: 16px;
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  padding: 22px 22px 22px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; right: -40px; top: -40px;
  width: 180px; height: 180px;
  background: var(--yellow);
  opacity: 0.12;
  border-radius: 50%;
}
.hero-tag {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-vs {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.hero-vs h2 {
  margin: 0;
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  flex: 1;
}
.hero-vs h2 small {
  display: block;
  font-size: 18px; font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}
.hero-vs .vs-pill {
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800; font-size: 13px;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.hero-info {
  display: flex; flex-direction: column; gap: 10px;
  margin: 18px 0 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-info-row {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px;
}
.hero-info-row svg { opacity: 0.7; flex-shrink: 0; }
.hero-info-row b { font-weight: 600; }
.hero-info-row span { color: rgba(255, 255, 255, 0.7); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 60px;
  padding: 16px 22px;
  background: var(--yellow);
  color: var(--navy);
  border: 0; border-radius: 14px;
  font-family: inherit;
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.005em;
  cursor: pointer;
}
.btn-primary:hover { filter: brightness(0.95); }

.btn-secondary {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 56px;
  padding: 14px 22px;
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 14px;
  font-family: inherit;
  font-size: 16px; font-weight: 600;
}

.btn-text {
  background: transparent; border: 0;
  color: var(--navy);
  font-family: inherit;
  font-size: 15px; font-weight: 600;
  padding: 14px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ── Section ──────────────────────────────────────────────── */
.section-h {
  padding: 26px 20px 12px;
  font-size: 14px; font-weight: 700;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Match list cards (big, simple) ───────────────────────── */
.matches { padding: 0 16px; display: flex; flex-direction: column; gap: 10px; }
.match-card {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  min-height: 88px;
}
.match-card.disabled { opacity: 0.55; }
.match-date-block {
  width: 56px;
  text-align: center;
  flex-shrink: 0;
}
.match-date-block b {
  display: block;
  font-size: 28px; font-weight: 800;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.match-date-block span {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--ink-2);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.match-body {
  flex: 1;
  min-width: 0;
}
.match-body b {
  display: block;
  font-size: 17px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.match-body span {
  display: block;
  font-size: 14px; color: var(--ink-2);
}
.match-status-line {
  font-size: 13px; font-weight: 600;
  margin-top: 6px;
  display: inline-flex; align-items: center; gap: 6px;
}
.match-status-line.ok { color: var(--ok); }
.match-status-line.bad { color: var(--bad); }
.match-status-line.muted { color: var(--muted); }
.match-card .arrow { color: var(--ink-2); flex-shrink: 0; }

/* ── Zone list (simplified plan replacement) ──────────────── */
.zones { padding: 0 16px; display: flex; flex-direction: column; gap: 12px; }
.zone {
  display: flex; align-items: stretch; gap: 0;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.zone.on {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11, 37, 69, 0.08);
}
.zone.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.zone-side {
  width: 8px;
  background: var(--soft);
}
.zone.on .zone-side { background: var(--yellow); }
.zone-body {
  flex: 1;
  padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
}
.zone-info { flex: 1; min-width: 0; }
.zone-info b {
  display: block;
  font-size: 17px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.zone-info span {
  display: block;
  font-size: 14px; color: var(--ink-2);
  line-height: 1.35;
}
.zone-price {
  text-align: right;
  flex-shrink: 0;
}
.zone-price b {
  font-size: 22px; font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.zone-price span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.zone-radio {
  width: 26px; height: 26px;
  border: 2px solid var(--line-2);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.zone.on .zone-radio { border-color: var(--navy); }
.zone.on .zone-radio::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--navy);
  border-radius: 50%;
}

/* ── Quantity stepper (big, friendly) ─────────────────────── */
.qty-card {
  margin: 8px 20px 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
}
.qty-card h3 {
  margin: 0 0 6px;
  font-size: 20px; font-weight: 700;
  color: var(--navy);
}
.qty-card .qty-sub {
  font-size: 15px; color: var(--ink-2);
  margin-bottom: 24px;
}
.qty-stepper {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-bottom: 8px;
}
.qty-btn {
  width: 64px; height: 64px;
  border: 2px solid var(--navy);
  background: #fff;
  color: var(--navy);
  border-radius: 50%;
  font-size: 30px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.qty-num {
  font-size: 56px; font-weight: 800;
  color: var(--navy);
  min-width: 84px;
  text-align: center;
  letter-spacing: -0.04em;
  line-height: 1;
}
.qty-hint {
  font-size: 13px; color: var(--muted);
  margin-top: 14px;
}

/* ── Tariff list ──────────────────────────────────────────── */
.tariffs {
  margin: 18px 20px 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.tariff-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.tariff-row:last-child { border-bottom: 0; }
.tariff-info { flex: 1; }
.tariff-info b {
  display: block;
  font-size: 16px; font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.tariff-info span {
  display: block;
  font-size: 14px; color: var(--ink-2);
}
.tariff-price {
  font-size: 16px; font-weight: 700;
  color: var(--navy);
}

/* ── Summary card (final step) ────────────────────────────── */
.summary {
  margin: 16px 20px 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.summary-head {
  padding: 18px 20px;
  background: var(--navy);
  color: #fff;
}
.summary-head b {
  display: block;
  font-size: 18px; font-weight: 700;
  margin-bottom: 4px;
}
.summary-head span {
  font-size: 14px; color: rgba(255, 255, 255, 0.75);
}
.summary-body {
  padding: 18px 20px;
}
.summary-line {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.summary-line:last-of-type { border-bottom: 0; }
.summary-line .lbl { color: var(--ink-2); }
.summary-line .val { font-weight: 600; color: var(--navy); }
.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0 0;
  margin-top: 6px;
  border-top: 2px solid var(--navy);
  font-size: 18px; font-weight: 700;
  color: var(--navy);
}
.summary-total .val {
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.02em;
}

/* ── Sticky action bar ────────────────────────────────────── */
.action-bar {
  padding: 14px 20px 38px;
  background: #fff;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
}
.action-bar-summary {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 6px;
}
.action-bar-summary .lbl {
  font-size: 13px; color: var(--ink-2);
}
.action-bar-summary .val {
  font-size: 22px; font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

/* ── Help banner ──────────────────────────────────────────── */
.help-banner {
  margin: 18px 20px 0;
  padding: 16px 18px;
  background: var(--soft);
  border-radius: 14px;
  display: flex; align-items: center; gap: 14px;
}
.help-banner-icon {
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.help-banner-text {
  flex: 1;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.4;
}
.help-banner-text b {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.help-banner a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
}

/* ── Seat picker ──────────────────────────────────────────── */
.seat-pick {
  margin: 8px 16px 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 12px 14px;
  overflow: hidden;
}
.seat-pick-pitch {
  text-align: center;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 0 12px;
  border-bottom: 1px dashed var(--line);
  margin: 0 -12px 14px;
  background: linear-gradient(180deg, var(--soft), transparent);
}
.seat-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.seat-row {
  display: flex;
  align-items: center;
  gap: 4px;
}
.seat-row-label {
  width: 18px;
  text-align: right;
  font-size: 11px; font-weight: 700;
  color: var(--muted);
  padding-right: 4px;
}
.seat {
  width: 22px; height: 24px;
  border-radius: 5px 5px 3px 3px;
  background: var(--soft);
  border: 1.5px solid var(--line-2);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700;
  color: transparent;
  padding: 0;
  transition: transform 0.08s ease;
}
.seat.taken {
  background: #DCD3BB;
  border-color: #C9BE9E;
  cursor: not-allowed;
}
.seat.taken::after {
  content: "×";
  color: var(--muted);
  font-size: 12px;
}
.seat.on {
  background: var(--yellow);
  border-color: var(--yellow-2);
  color: var(--navy);
  transform: scale(1.08);
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}
.seat.on::after { content: none; }
.seat.disabled {
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.seat-legend {
  display: flex; flex-wrap: wrap; gap: 18px;
  padding: 14px 4px 0;
  margin-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
}
.seat-legend-item {
  display: inline-flex; align-items: center; gap: 8px;
}
.seat-legend-dot {
  width: 16px; height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--line-2);
  background: var(--soft);
}
.seat-legend-dot.taken { background: #DCD3BB; border-color: #C9BE9E; }
.seat-legend-dot.on { background: var(--yellow); border-color: var(--yellow-2); }

.seat-selected-card {
  margin: 16px 20px 0;
  padding: 16px 18px;
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
}
.seat-selected-card b {
  display: block;
  font-size: 14px; font-weight: 700;
  color: var(--yellow);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.seat-selected-list {
  font-size: 16px; font-weight: 600;
  line-height: 1.4;
}
.seat-selected-list em {
  font-style: normal;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ── Stadium minimap (where is my seat) ───────────────────── */
.minimap {
  background: var(--navy);
  border-radius: 12px;
  padding: 14px;
  margin: 14px 0 0;
}
.minimap svg { width: 100%; height: auto; display: block; }
.minimap-cap {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
}
.minimap-cap b { color: var(--yellow); font-weight: 700; }

/* ── Wallet / Abonnement ──────────────────────────────────── */
.wallet-intro {
  padding: 18px 20px 4px;
}
.wallet-intro h1 {
  margin: 0;
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.wallet-intro p {
  margin: 6px 0 0;
  font-size: 15px;
  color: var(--ink-2);
}

/* Carte abonné digitale */
.abo-card {
  margin: 16px 16px 0;
  position: relative;
  background: linear-gradient(135deg, #133478 0%, #1B4290 60%, #0E2A66 100%);
  color: #fff;
  border-radius: 18px;
  padding: 20px 22px 22px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(19, 52, 120, 0.18);
}
.abo-card::before {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.10;
  pointer-events: none;
}
.abo-card-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.abo-card-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
}
.abo-card-label small {
  display: block;
  margin-top: 4px;
  font-size: 11px; font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
}
.abo-card-shield {
  width: 44px; height: 56px;
  flex-shrink: 0;
}
.abo-card-shield img { width: 100%; height: 100%; object-fit: contain; display: block; }

.abo-card-name {
  font-size: 24px; font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 4px;
  position: relative; z-index: 1;
}
.abo-card-since {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
  position: relative; z-index: 1;
}

.abo-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  position: relative; z-index: 1;
}
.abo-card-cell small {
  display: block;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}
.abo-card-cell b {
  display: block;
  font-size: 17px; font-weight: 700;
  letter-spacing: -0.005em;
}

.abo-card-num {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 1;
  font-size: 13px;
}
.abo-card-num span { color: rgba(255, 255, 255, 0.7); }
.abo-card-num b { font-weight: 700; letter-spacing: 0.05em; }

.abo-card-qr {
  margin: 18px 0 4px;
  padding: 0;
  text-align: center;
  position: relative; z-index: 1;
}
.abo-card-qr-frame {
  display: inline-block;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.abo-card-qr-cap {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Wallet action buttons (Apple/Google Wallet) */
.wallet-actions {
  padding: 14px 16px 0;
  display: flex; flex-direction: column; gap: 8px;
}
.wallet-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  min-height: 52px;
  background: #000;
  color: #fff;
  border: 0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px; font-weight: 600;
  letter-spacing: 0;
  padding: 0 18px;
  cursor: pointer;
}
.wallet-btn .lbl-small {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.7;
}
.wallet-btn .lbl-big {
  font-size: 16px;
  font-weight: 700;
}
.wallet-btn-stack {
  display: flex; flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

/* Next match (for abonné — place automatique) */
.abo-next {
  margin: 22px 16px 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.abo-next-head {
  padding: 16px 20px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.abo-next-head b {
  font-size: 14px; font-weight: 700;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.abo-next-head .status-pill {
  background: var(--ok);
  color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.abo-next-body {
  padding: 20px;
  text-align: center;
}
.abo-next-body h3 {
  margin: 0 0 4px;
  font-size: 22px; font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.abo-next-body .when {
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.abo-next-qr {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}
.abo-next-qr svg { display: block; }
.abo-next-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
  text-align: left;
}
.abo-next-info-cell {
  padding: 12px 14px;
  background: var(--soft);
  border-radius: 10px;
}
.abo-next-info-cell small {
  display: block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.abo-next-info-cell b {
  display: block;
  font-size: 15px; font-weight: 700;
  color: var(--navy);
}
.abo-next-actions {
  padding: 0 20px 20px;
  display: flex; flex-direction: column; gap: 8px;
}

/* Match list per saison (statuses) */
.season-list {
  padding: 0 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.season-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.season-row.past { opacity: 0.55; }
.season-row.transferred { background: #FFFCEC; border-color: #F2E5A9; }
.season-row-date {
  width: 48px;
  text-align: center;
  flex-shrink: 0;
}
.season-row-date b {
  display: block;
  font-size: 22px; font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.season-row-date span {
  display: block;
  font-size: 11px; font-weight: 600;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.season-row-body {
  flex: 1; min-width: 0;
}
.season-row-body b {
  display: block;
  font-size: 16px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.season-row-body span {
  display: block;
  font-size: 13px;
  color: var(--ink-2);
}
.season-row-pill {
  flex-shrink: 0;
  font-size: 12px; font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  background: var(--soft);
  color: var(--ink-2);
}
.season-row-pill.ok { background: rgba(47, 158, 92, 0.12); color: var(--ok); }
.season-row-pill.transferred { background: var(--yellow); color: var(--navy); }
.season-row-pill.past { background: var(--soft); color: var(--muted); }

/* Transfer flow / Céder une place */
.transfer-card {
  margin: 8px 20px 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}
.transfer-recap {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.transfer-recap b {
  display: block;
  font-size: 17px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.transfer-recap span {
  display: block;
  font-size: 13px;
  color: var(--ink-2);
}
.transfer-form {
  display: flex; flex-direction: column; gap: 16px;
}
.field label {
  display: block;
  font-size: 14px; font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--navy);
  background: var(--soft);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  outline: 0;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
}
.field-hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

/* ── Order history ────────────────────────────────────────── */
.order-list {
  padding: 0 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.order-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.order-row-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}
.order-row-icon.past { background: #F1F2F6; color: var(--muted); }
.order-row-body { flex: 1; min-width: 0; }
.order-row-body b {
  display: block;
  font-size: 16px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
  letter-spacing: -0.005em;
}
.order-row-body span {
  display: block;
  font-size: 13px;
  color: var(--ink-2);
}
.order-row-meta {
  text-align: right;
  flex-shrink: 0;
}
.order-row-meta b {
  display: block;
  font-size: 16px; font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.order-row-meta span {
  display: block;
  font-size: 12px; color: var(--muted);
  margin-top: 2px;
}

/* ── Ticket download / detail ─────────────────────────────── */
.ticket-detail {
  margin: 16px 16px 0;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(19, 52, 120, 0.10);
}
.ticket-detail-top {
  background: var(--navy);
  color: #fff;
  padding: 18px 20px 16px;
  position: relative;
}
.ticket-detail-top::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 16px;
  background:
    radial-gradient(circle 8px at 8px 8px, #fff 8px, transparent 8px),
    radial-gradient(circle 8px at 100% 8px, #fff 8px, transparent 8px);
  background-size: 16px 16px;
}
.ticket-detail-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 4px;
}
.ticket-detail-match {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.ticket-detail-when {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.ticket-detail-qr {
  padding: 24px 20px 16px;
  text-align: center;
  background: #fff;
}
.ticket-detail-qr-frame {
  display: inline-block;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.ticket-detail-qr-id {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.ticket-detail-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}
.ticket-detail-info > div {
  padding: 14px 18px;
  background: #fff;
}
.ticket-detail-info small {
  display: block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.ticket-detail-info b {
  display: block;
  font-size: 16px; font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.005em;
}

.ticket-multi-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  padding: 14px 0 4px;
  font-size: 13px;
  color: var(--ink-2);
}
.ticket-multi-nav button {
  width: 36px; height: 36px;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 50%;
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.ticket-multi-nav button:disabled {
  opacity: 0.3; cursor: not-allowed;
}
.ticket-multi-nav b {
  font-weight: 700;
  color: var(--navy);
}

.download-list {
  padding: 18px 16px 0;
  display: flex; flex-direction: column; gap: 10px;
}
.download-btn {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px; font-weight: 600;
  color: var(--navy);
  text-align: left;
  width: 100%;
  cursor: pointer;
}
.download-btn-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.download-btn-icon.dark {
  background: #000; color: #fff;
}
.download-btn-icon.google {
  background: #fff; border: 1px solid #DADCE0;
}
.download-btn-body { flex: 1; }
.download-btn-body b {
  display: block;
  font-size: 16px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.download-btn-body span {
  display: block;
  font-size: 13px;
  color: var(--ink-2);
}

/* ── Welcome / Onboarding ─────────────────────────────────── */
.welcome {
  flex: 1;
  display: flex; flex-direction: column;
  padding: 80px 28px 30px;
  text-align: center;
  background: linear-gradient(180deg, var(--navy) 0%, #0E2A66 100%);
  color: #fff;
}
.welcome-logo {
  width: 96px; height: 130px;
  margin: 12px auto 28px;
}
.welcome-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.welcome h1 {
  margin: 0 0 12px;
  font-size: 32px; font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.welcome h1 em {
  font-style: normal;
  color: var(--yellow);
}
.welcome p {
  margin: 0 auto 36px;
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  max-width: 320px;
  line-height: 1.4;
}
.welcome-actions {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 10px;
}
.welcome-actions .btn-primary { background: var(--yellow); color: var(--navy); }
.welcome-actions .btn-light {
  display: flex; align-items: center; justify-content: center;
  width: 100%; min-height: 56px; padding: 14px 22px;
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px;
  font-family: inherit; font-size: 16px; font-weight: 600;
}
.welcome-link {
  margin-top: 18px;
  font-size: 14px; color: rgba(255,255,255,0.7);
}
.welcome-link a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }

/* Sign-in / Sign-up form layouts share .field */
.form-card {
  margin: 6px 20px 0;
}
.form-card h2 {
  margin: 0 0 6px;
  font-size: 22px; font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.form-card p {
  margin: 0 0 18px;
  font-size: 15px;
  color: var(--ink-2);
}

/* ── Error states ─────────────────────────────────────────── */
.err {
  padding: 40px 24px 24px;
  text-align: center;
}
.err-icon {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: #FCE5E5;
  color: var(--bad);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.err-icon.warn {
  background: #FFF3D6;
  color: #BF7B00;
}
.err h1 {
  margin: 0 0 8px;
  font-size: 26px; font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.err p {
  margin: 0 auto 24px;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.45;
  max-width: 320px;
}
.err-actions {
  display: flex; flex-direction: column; gap: 10px;
}

/* Modal overlay (session expired, place gone) */
.modal-screen {
  flex: 1;
  position: relative;
  background: rgba(11, 19, 40, 0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-screen-bg {
  position: absolute; inset: 0;
  filter: blur(2px);
  opacity: 0.65;
  z-index: 0;
  pointer-events: none;
}
.modal-sheet {
  position: relative; z-index: 1;
  background: #fff;
  border-radius: 22px;
  padding: 30px 24px 24px;
  text-align: center;
  width: 100%; max-width: 320px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.modal-sheet .err-icon { margin: 0 auto 18px; width: 64px; height: 64px; }
.modal-sheet h2 {
  margin: 0 0 6px;
  font-size: 22px; font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.modal-sheet p {
  margin: 0 0 20px;
  font-size: 15px; line-height: 1.4;
  color: var(--ink-2);
}

/* Offline banner */
.offline-banner {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: #2A2A2A;
  color: #fff;
  font-size: 13px; font-weight: 600;
}
.offline-banner-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #FF8A4C;
}

/* Chrono pill (purchase countdown) */
.chrono {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 12px; font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.chrono.urgent { background: #FF8A4C; color: #fff; }

/* ── Lockscreen / push notification ──────────────────────── */
.lockscreen {
  flex: 1;
  background:
    radial-gradient(120% 80% at 50% 0%, #1A4290 0%, #0A1A3F 60%, #050D24 100%);
  color: #fff;
  display: flex; flex-direction: column;
  padding: 80px 12px 24px;
  position: relative;
  overflow: hidden;
}
.lockscreen::before {
  content: "";
  position: absolute;
  inset: -50% -10% auto -10%;
  height: 70%;
  background: radial-gradient(60% 100% at 50% 0%, rgba(246, 188, 28, 0.10) 0%, transparent 60%);
  pointer-events: none;
}
.lock-clock {
  text-align: center;
  padding: 18px 0 30px;
}
.lock-clock-time {
  font-family: -apple-system, system-ui;
  font-size: 86px; font-weight: 200;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.lock-clock-date {
  font-size: 18px;
  margin-top: 4px;
  color: rgba(255,255,255,0.85);
}
.push-list {
  display: flex; flex-direction: column; gap: 10px;
  padding: 0 8px;
}
.push {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 12px 14px;
  display: flex; gap: 12px;
  align-items: flex-start;
}
.push-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.push-icon img { width: 78%; height: 78%; object-fit: contain; }
.push-body { flex: 1; min-width: 0; }
.push-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 2px;
}
.push-head b {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em;
}
.push-head span {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
}
.push-title {
  font-size: 14px; font-weight: 600;
  margin-bottom: 2px;
  line-height: 1.25;
}
.push-text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
}

/* ── Email mockup ─────────────────────────────────────────── */
.email-mock {
  flex: 1;
  background: #F2F3F6;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.email-app-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 58px 14px 10px;
  background: #fff;
  border-bottom: 1px solid #E2E4EA;
  font-family: -apple-system, system-ui;
  font-size: 14px;
  color: #2A2A2A;
}
.email-app-bar b { color: #007AFF; font-weight: 500; }
.email-app-bar .from-folder { color: #007AFF; display: flex; gap: 6px; align-items: center; }
.email-meta {
  padding: 16px 18px 14px;
  background: #fff;
  border-bottom: 1px solid #E2E4EA;
}
.email-meta-subject {
  font-size: 18px; font-weight: 700;
  color: #111;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.email-from {
  display: flex; align-items: center; gap: 12px;
}
.email-from-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  flex-shrink: 0;
}
.email-from-name {
  font-size: 14px; font-weight: 600;
  color: #111;
}
.email-from-meta {
  font-size: 13px; color: #6C7280;
}
.email-body {
  flex: 1;
  background: #fff;
  margin-top: 0;
  overflow-y: auto;
  font-family: -apple-system, system-ui;
  color: #1F1F1F;
  line-height: 1.5;
  font-size: 14.5px;
}
.email-banner {
  background: var(--navy);
  color: #fff;
  padding: 26px 24px;
  text-align: center;
}
.email-banner-logo {
  width: 64px; height: 84px;
  margin: 0 auto 12px;
}
.email-banner-logo img { width: 100%; height: 100%; object-fit: contain; }
.email-banner h2 {
  margin: 0 0 6px;
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.02em;
}
.email-banner p {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.email-content { padding: 22px 22px 28px; }
.email-content h3 {
  margin: 0 0 4px;
  font-size: 18px; font-weight: 700;
  color: var(--navy);
}
.email-content .meta {
  font-size: 14px;
  color: #5E6577;
  margin-bottom: 18px;
}
.email-content .summary-mini {
  border: 1px solid #E2E4EA;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
}
.email-content .summary-mini-row {
  display: flex; justify-content: space-between;
  padding: 4px 0;
  font-size: 14px;
}
.email-content .summary-mini-row b { color: var(--navy); }
.email-content .summary-mini-row .lbl { color: #5E6577; }
.email-content .cta-button {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 16px;
}
.email-content p {
  margin: 0 0 12px;
  font-size: 14px; color: #1F1F1F;
}

/* ── PMR / Accessibility highlight ────────────────────────── */
.access-card {
  margin: 14px 16px 0;
  padding: 16px 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex; gap: 12px; align-items: flex-start;
}
.access-card-ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.access-card-text { flex: 1; font-size: 14px; color: var(--ink-2); line-height: 1.4; }
.access-card-text b {
  display: block;
  font-size: 15px; color: var(--navy);
  margin-bottom: 2px;
}

/* ── Abonnement formulas ──────────────────────────────────── */
.formula-list {
  padding: 0 16px;
  display: flex; flex-direction: column; gap: 12px;
}
.formula {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 18px 18px;
  cursor: pointer;
  position: relative;
}
.formula.on {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(19, 52, 120, 0.08);
}
.formula.best {
  border-color: var(--yellow-2);
  background: linear-gradient(180deg, #FFFBEB 0%, #FFFFFF 60%);
}
.formula-badge {
  position: absolute;
  top: -10px; right: 14px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.formula-name {
  font-size: 17px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.formula-desc {
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 12px;
}
.formula-price {
  display: flex; align-items: baseline; gap: 8px;
}
.formula-price b {
  font-size: 28px; font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.formula-price del {
  font-size: 14px;
  color: var(--muted);
}
.formula-price span {
  font-size: 13px;
  color: var(--ink-2);
}
.formula-bullets {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
}
.formula-bullets li {
  padding-left: 22px;
  position: relative;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.4;
}
.formula-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--ok);
  font-weight: 700;
}

/* 4x payment plan */
.pay-plan {
  margin: 16px 20px 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
}
.pay-plan-title {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.pay-plan-title b {
  font-size: 15px; font-weight: 700;
  color: var(--navy);
}
.pay-plan-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.pay-plan-row b { color: var(--navy); font-weight: 700; }
.pay-plan-row .when { color: var(--ink-2); }
.pay-plan-row.first { border-top: 0; }
.pay-plan-row.first b { color: var(--yellow-2); }

/* ── Confirmation screen ──────────────────────────────────── */
.confirm {
  padding: 40px 24px 0;
  text-align: center;
}
.confirm-check {
  width: 88px; height: 88px;
  background: var(--ok);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.confirm h1 {
  margin: 0 0 10px;
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.confirm p {
  margin: 0 0 28px;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.45;
}
.ticket {
  margin: 0 0 20px;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 20px 22px;
  text-align: left;
  position: relative;
}
.ticket-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.ticket-row:last-child { border-bottom: 0; }
.ticket-row .lbl {
  font-size: 13px; color: rgba(255,255,255,0.7);
}
.ticket-row .val {
  font-size: 15px; font-weight: 700;
}
.ticket-qr {
  width: 100px; height: 100px;
  background: #fff;
  border-radius: 10px;
  margin: 14px auto 4px;
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
}
