/* ============================================
   upcoop Business+ — landing demo
   Palette extraite des maquettes Feature 98288 :
   bordeaux/aubergine, orange chaleureux, crème
   ============================================ */

:root {
  --upcoop-bordeaux: #5c1733;
  --upcoop-bordeaux-dark: #420f24;
  --upcoop-bordeaux-soft: #7a2347;
  --upcoop-orange: #e86b1a;
  --upcoop-orange-dark: #c75710;
  --upcoop-cream: #faf8f4;
  --upcoop-beige: #f1ebde;
  --upcoop-beige-dark: #e6dcc7;
  --upcoop-ink: #1d1416;
  --upcoop-ink-soft: #5a4a4f;
  --upcoop-line: #e8dfd0;
  --shadow-card: 0 1px 2px rgba(29, 20, 22, 0.04),
    0 8px 24px -8px rgba(29, 20, 22, 0.08);
  --shadow-card-hover: 0 1px 2px rgba(29, 20, 22, 0.06),
    0 16px 32px -12px rgba(29, 20, 22, 0.16);
  --radius: 12px;
  --radius-lg: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--upcoop-ink);
  background: var(--upcoop-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- Demo bar (options de simulation) ---------- */
.demo-bar {
  background: var(--upcoop-beige);
  border-bottom: 1px dashed var(--upcoop-bordeaux-soft);
  padding: 0.55rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.83rem;
  color: var(--upcoop-ink-soft);
  flex-wrap: wrap;
}

.demo-bar__label {
  font-weight: 700;
  color: var(--upcoop-bordeaux);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  background: rgba(92, 23, 51, 0.08);
  border-radius: 999px;
}

.demo-bar__option {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.demo-bar__option input[type='checkbox'] {
  accent-color: var(--upcoop-orange);
  cursor: pointer;
  width: 14px;
  height: 14px;
}

.demo-bar__option strong { color: var(--upcoop-bordeaux); font-weight: 600; }
.demo-bar__option em { font-style: normal; color: var(--upcoop-ink-soft); font-size: 0.78rem; }

.demo-bar__danger {
  margin-left: auto;
  background: transparent;
  border: 1px solid #b91c1c;
  color: #b91c1c;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.12s ease;
}
.demo-bar__danger:hover {
  background: #b91c1c;
  color: white;
}
.demo-bar__danger:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (max-width: 880px) {
  .demo-bar { padding: 0.55rem 1rem; gap: 0.8rem; font-size: 0.78rem; }
}

/* ---------- Layout (sidebar + main) ---------- */
.layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: calc(100vh - 64px);
}

.layout-with-sidebar .topbar { border-bottom: 1px solid var(--upcoop-line); }

.main { min-width: 0; }

/* ---------- Sidebar ---------- */
.sidebar {
  background: var(--upcoop-bordeaux);
  color: var(--upcoop-cream);
  padding: 1.6rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
}

.sidebar__header { display: flex; flex-direction: column; gap: 0.15rem; }

.sidebar__title {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--upcoop-orange);
}

.sidebar__sub {
  font-size: 0.78rem;
  color: rgba(250, 248, 244, 0.55);
  font-weight: 500;
}

.sidebar__hint {
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(250, 248, 244, 0.7);
}

.merchants {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.merchant {
  background: rgba(250, 248, 244, 0.06);
  border: 1px solid rgba(250, 248, 244, 0.1);
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, transform 0.08s ease;
  outline: none;
}

.merchant:hover {
  background: rgba(250, 248, 244, 0.12);
  border-color: rgba(250, 248, 244, 0.22);
}

.merchant:focus-visible {
  border-color: var(--upcoop-orange);
}

.merchant--active {
  background: var(--upcoop-orange);
  border-color: var(--upcoop-orange-dark);
  color: white;
}

.merchant--active:hover { background: var(--upcoop-orange); }

.merchant--loading,
.merchant--error {
  cursor: default;
  background: transparent;
  border: none;
  color: rgba(250, 248, 244, 0.6);
  font-size: 0.85rem;
  padding: 0.4rem 0;
}
.merchant--error { color: #ffb4b4; }

.merchant__name {
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}

.merchant__meta {
  font-size: 0.75rem;
  color: rgba(250, 248, 244, 0.7);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.merchant--active .merchant__meta { color: rgba(255, 255, 255, 0.85); }

.merchant__siret { font-variant-numeric: tabular-nums; }
.merchant__city::before { content: '· '; opacity: 0.6; }

.sidebar__deselect {
  margin-top: auto;
  background: transparent;
  border: 1px solid rgba(250, 248, 244, 0.25);
  color: var(--upcoop-cream);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease;
}

.sidebar__deselect:not(:disabled):hover {
  background: rgba(250, 248, 244, 0.08);
  border-color: rgba(250, 248, 244, 0.4);
}

.sidebar__deselect:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.sidebar__option {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.7rem 0.9rem;
  background: rgba(250, 248, 244, 0.05);
  border: 1px solid rgba(250, 248, 244, 0.12);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.78rem;
  color: rgba(250, 248, 244, 0.8);
  transition: background 0.12s ease;
}
.sidebar__option:hover { background: rgba(250, 248, 244, 0.08); }
.sidebar__option input[type='checkbox'] {
  margin-top: 2px;
  accent-color: var(--upcoop-orange);
  cursor: pointer;
}
.sidebar__option strong {
  display: block;
  font-weight: 600;
  color: var(--upcoop-cream);
  font-size: 0.82rem;
  margin-bottom: 1px;
}
.sidebar__option em {
  font-style: normal;
  font-size: 0.72rem;
  color: rgba(250, 248, 244, 0.55);
  line-height: 1.3;
}

/* ---------- Banner (commerçant connecté) ---------- */
.banner {
  margin: 0 2rem;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.25s ease, padding 0.25s ease,
    margin-top 0.25s ease;
}

.banner--visible {
  max-height: 280px;
  opacity: 1;
  margin-top: 1.5rem;
  padding: 1.1rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(232, 107, 26, 0.08) 0%,
    rgba(92, 23, 51, 0.06) 100%
  );
  border: 1px solid rgba(232, 107, 26, 0.25);
  border-left: 4px solid var(--upcoop-orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.banner__main { flex: 1; min-width: 0; }
.banner__actions { flex-shrink: 0; }

.banner__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--upcoop-orange-dark);
  margin-bottom: 0.2rem;
}

.banner__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--upcoop-bordeaux);
  margin-bottom: 0.3rem;
}

.banner__details {
  font-size: 0.85rem;
  color: var(--upcoop-ink-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.banner__sep { color: var(--upcoop-line); }

.banner__sub-state {
  margin-top: 0.5rem;
  font-size: 0.82rem;
}

.banner__sub-loading {
  color: var(--upcoop-ink-soft);
  font-style: italic;
  font-size: 0.78rem;
}

.banner__sub {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}
.banner__sub--active { color: #15803d; }
.banner__sub--past { color: var(--upcoop-ink-soft); }
.banner__sub--none { color: var(--upcoop-ink-soft); }
.banner__sub strong { font-weight: 700; color: var(--upcoop-bordeaux); }
.banner__sub-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #15803d;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.btn-portal {
  background: var(--upcoop-bordeaux);
  color: white;
  border: none;
  padding: 0.65rem 1.1rem;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 12px -4px rgba(92, 23, 51, 0.45);
}
.btn-portal:hover { background: var(--upcoop-bordeaux-dark); }
.btn-portal:disabled { background: var(--upcoop-line); color: var(--upcoop-ink-soft); cursor: not-allowed; }

/* ---------- Topbar ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: var(--upcoop-cream);
  border-bottom: 1px solid var(--upcoop-line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: saturate(180%) blur(8px);
  background-color: rgba(250, 248, 244, 0.88);
}

.logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--upcoop-bordeaux);
}

.topnav {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--upcoop-ink-soft);
}

.topnav a:hover { color: var(--upcoop-bordeaux); }

.topnav__login {
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--upcoop-bordeaux);
  border-radius: 999px;
  color: var(--upcoop-bordeaux) !important;
  font-weight: 600;
}
.topnav__login:hover {
  background: var(--upcoop-bordeaux);
  color: var(--upcoop-cream) !important;
}

.topnav__erp {
  padding: 0.5rem 1rem;
  border: 1px dashed var(--upcoop-orange);
  border-radius: 999px;
  color: var(--upcoop-orange-dark) !important;
  font-weight: 600;
  font-size: 0.85rem;
}
.topnav__erp:hover {
  background: rgba(232, 107, 26, 0.1);
}

.topnav__guide {
  padding: 0.5rem 1rem;
  border: 1px dashed var(--upcoop-bordeaux);
  border-radius: 999px;
  color: var(--upcoop-bordeaux) !important;
  font-weight: 600;
  font-size: 0.85rem;
}
.topnav__guide:hover {
  background: rgba(92, 23, 51, 0.08);
}

.topnav__settings {
  padding: 0.5rem 1rem;
  border: 1px solid var(--upcoop-line);
  border-radius: 999px;
  color: var(--upcoop-ink-soft) !important;
  font-weight: 600;
  font-size: 0.85rem;
}
.topnav__settings:hover {
  background: var(--upcoop-beige);
  color: var(--upcoop-bordeaux) !important;
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  align-items: center;
}

.hero__kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--upcoop-orange-dark);
  background: rgba(232, 107, 26, 0.1);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--upcoop-bordeaux);
  margin-bottom: 1.5rem;
}

.hero__plus {
  color: var(--upcoop-orange);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--upcoop-ink-soft);
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.hero__trial {
  font-size: 0.88rem;
  color: var(--upcoop-ink-soft);
}

/* ---------- Hero visual (cards mockup) ---------- */
.hero__visual {
  position: relative;
  height: 420px;
}

.hero__card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--upcoop-line);
}

.hero__card--1 {
  top: 0;
  left: 0;
  width: 60%;
  z-index: 3;
}
.hero__card--2 {
  top: 60px;
  right: 0;
  width: 45%;
  background: var(--upcoop-beige);
  z-index: 2;
}
.hero__card--3 {
  bottom: 0;
  left: 8%;
  width: 75%;
  background: var(--upcoop-bordeaux);
  color: var(--upcoop-cream);
  z-index: 4;
}

.hero__metric {
  font-size: 2rem;
  font-weight: 700;
  color: var(--upcoop-bordeaux);
  letter-spacing: -0.02em;
}
.hero__metric--accent { color: var(--upcoop-orange); }

.hero__metric-label {
  font-size: 0.85rem;
  color: var(--upcoop-ink-soft);
  margin-top: 0.2rem;
}

.hero__sparkline {
  margin-top: 0.9rem;
  height: 32px;
  background:
    linear-gradient(180deg, rgba(232, 107, 26, 0) 0%, rgba(232, 107, 26, 0.18) 100%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 8px,
      rgba(232, 107, 26, 0.5) 8px,
      rgba(232, 107, 26, 0.5) 9px
    );
  clip-path: polygon(
    0 70%, 8% 60%, 16% 65%, 24% 50%, 32% 55%, 40% 40%,
    48% 45%, 56% 30%, 64% 35%, 72% 20%, 80% 25%, 88% 15%,
    96% 18%, 100% 12%, 100% 100%, 0 100%
  );
}

.hero__chip {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(250, 248, 244, 0.18);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.hero__rec {
  font-size: 0.95rem;
  line-height: 1.45;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 1.8rem;
  border-radius: var(--radius);
  transition: transform 0.08s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn--primary {
  background: var(--upcoop-orange);
  color: white;
  box-shadow: 0 4px 14px -4px rgba(232, 107, 26, 0.55);
}
.btn--primary:hover {
  background: var(--upcoop-orange-dark);
  box-shadow: 0 6px 18px -4px rgba(232, 107, 26, 0.7);
}
.btn--primary:active { transform: translateY(1px); }

.btn:disabled,
.btn[disabled] {
  background: var(--upcoop-line) !important;
  color: var(--upcoop-ink-soft) !important;
  cursor: not-allowed;
  box-shadow: none !important;
  transform: none !important;
}

.btn--block { display: block; width: 100%; text-align: center; }

.btn--secondary {
  background: var(--upcoop-bordeaux);
  color: white;
  box-shadow: 0 4px 14px -4px rgba(92, 23, 51, 0.5);
}
.btn--secondary:hover {
  background: var(--upcoop-bordeaux-dark);
  box-shadow: 0 6px 18px -4px rgba(92, 23, 51, 0.65);
}
.btn--secondary:active { transform: translateY(1px); }

/* ---------- Benefits ---------- */
.benefits {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--upcoop-bordeaux);
  text-align: center;
  margin-bottom: 3rem;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.benefit {
  background: white;
  border: 1px solid var(--upcoop-line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.benefit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.benefit__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--upcoop-beige);
  color: var(--upcoop-bordeaux);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}

.benefit h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--upcoop-bordeaux);
  margin-bottom: 0.6rem;
}

.benefit p {
  color: var(--upcoop-ink-soft);
  font-size: 0.95rem;
}

/* ---------- Pricing ---------- */
.pricing {
  max-width: 1100px;
  margin: 2rem auto 5rem;
  padding: 0 2rem;
}

.pricing .section__title { margin-bottom: 2.5rem; }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.pricing__card {
  background: white;
  border: 1px solid var(--upcoop-line);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem 2.5rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.pricing__card--premium {
  background: linear-gradient(180deg, #ffffff 0%, var(--upcoop-cream) 100%);
  border-color: var(--upcoop-bordeaux-soft);
  box-shadow: 0 1px 2px rgba(29,20,22,0.04), 0 16px 36px -12px rgba(92,23,51,0.18);
}

.pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.45rem 1rem;
  border-radius: 999px;
}

.pricing__badge--orange { background: var(--upcoop-orange); }
.pricing__badge--bordeaux { background: var(--upcoop-bordeaux); }

.pricing__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--upcoop-bordeaux);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.pricing__subtitle {
  color: var(--upcoop-ink-soft);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.pricing__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.pricing__amount {
  font-size: 4rem;
  font-weight: 800;
  color: var(--upcoop-bordeaux);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing__period {
  font-size: 1rem;
  color: var(--upcoop-ink-soft);
}

.pricing__vat {
  color: var(--upcoop-ink-soft);
  font-size: 0.88rem;
  margin-bottom: 2rem;
}

.pricing__features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--upcoop-line);
  flex-grow: 1;
}

.pricing__features li {
  padding: 0.55rem 0;
  font-size: 0.95rem;
  color: var(--upcoop-ink);
  position: relative;
  padding-left: 1.6rem;
}

.pricing__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--upcoop-orange);
  font-weight: 700;
}

.pricing__trial-note {
  font-size: 0.82rem;
  color: var(--upcoop-ink-soft);
  margin-top: 1rem;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--upcoop-line);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--upcoop-ink-soft);
  background: var(--upcoop-cream);
}

.footer__env {
  background: rgba(232, 107, 26, 0.12);
  color: var(--upcoop-orange-dark);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .topnav { gap: 1rem; }
  .topnav a:not(.topnav__login) { display: none; }

  .layout { grid-template-columns: 1fr; }
  .sidebar {
    position: static;
    height: auto;
    max-height: 320px;
    border-bottom: 1px solid rgba(250, 248, 244, 0.15);
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 3rem;
  }
  .hero__visual { height: 360px; }
  .pricing { padding: 0 1.5rem; }
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing__card { padding: 2.5rem 1.5rem; }
  .footer { flex-direction: column; gap: 0.5rem; text-align: center; }
  .banner { margin: 1rem; }
}

/* ---------- Success / Cancel ---------- */
.status {
  max-width: 540px;
  margin: 6rem auto;
  padding: 3rem 2rem;
  text-align: center;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--upcoop-line);
  box-shadow: var(--shadow-card);
}

.status__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem;
  font-weight: 700;
}
.status__icon--ok { background: rgba(232, 107, 26, 0.12); color: var(--upcoop-orange); }
.status__icon--ko { background: rgba(92, 23, 51, 0.1); color: var(--upcoop-bordeaux); }

.status__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--upcoop-bordeaux);
  margin-bottom: 0.6rem;
}

.status__msg {
  color: var(--upcoop-ink-soft);
  margin-bottom: 2rem;
}

.status__actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.status__back {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--upcoop-bordeaux);
  color: var(--upcoop-bordeaux);
  font-weight: 600;
}
.status__back:hover { background: var(--upcoop-bordeaux); color: var(--upcoop-cream); }

.status__hint {
  font-size: 0.78rem;
  color: var(--upcoop-ink-soft);
  margin-top: 0.5rem;
}
