/* ============================================================================
   XCLUSIVE PLATINUM · Brand stylesheet — Cinematic edition
   Follows PMI XCLUSIVE mini brand book pp. 2-11
   Design values (pg 2): luxury · edgy · sophisticated · powerful · MANLY · sharp
   Visual language: Black & Gold dominance
   ============================================================================ */

/* Brand font policy (per Rinat 22.04.26 — one font across the form):
   • Primary: Heebo — official brand fallback for RAG MAROM (per mini brand book pg 11).
     Used for all copy: display, body, eyebrow, labels, errors. Single typeface.
   • Italic Latin accents reuse Heebo italic (covers "Chosen" + dates).
   RAG MAROM + Ping HL are licensed; will swap when files arrive. */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  /* Brand-book colors (locked) */
  --xc-black: #000000;
  --xc-void:  #050505;
  --xc-ink:   #0a0a0a;
  --xc-coal:  #141414;
  --xc-smoke: #1c1c1c;
  --xc-gold:       #F2C46A;  /* Primary Gold — luxurious, glowing (was #CB9C52) */
  --xc-gold-hl:    #FFF2B3;  /* Highlight Gold — hot shimmer (was #F8EFA6)      */
  --xc-gold-rich:  #FFD87A;  /* Mid-gold for gradients                           */
  --xc-gold-deep:  #9E742B;  /* Deep gold for shadow/base                        */
  --xc-gold-ink:   #6b4f1d;  /* Deep shadow for gold gradients                  */
  --xc-red:        #8D191B;  /* Deep Red accent (pg 3)                          */

  /* Supporting tokens */
  --xc-paper:  #f4ecd8;
  --xc-muted:  #a89470;
  --xc-dim:    #6a5c48;

  /* Typography — single typeface across the entire form (Rinat 22.04.26) */
  --font-display:   'Heebo', 'Segoe UI', sans-serif;
  --font-serif:     'Heebo', 'Segoe UI', sans-serif;
  --font-sans:      'Heebo', 'Segoe UI', sans-serif;
  --font-latin:     'Heebo', 'Segoe UI', sans-serif;

  /* Depth */
  --shadow-deep:  0 40px 80px rgba(0,0,0,0.65), 0 12px 32px rgba(0,0,0,0.55);
  --shadow-gold:  0 0 48px rgba(203,156,82,0.2), 0 0 120px rgba(203,156,82,0.08);
  --shadow-inset: inset 0 1px 0 rgba(255,240,210,0.06), inset 0 -1px 0 rgba(0,0,0,0.5);

  /* Spacing (8px baseline) */
  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.5rem;  --s-6: 2rem;   --s-7: 3rem;    --s-8: 4rem;
  --s-9: 6rem;    --s-10: 8rem;
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
button, input, textarea, select { font: inherit; color: inherit; }
img, svg { display: block; max-width: 100%; }

html { scroll-behavior: smooth; }
body {
  background: var(--xc-black);
  color: var(--xc-paper);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.005em;
  direction: rtl;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* -------- Cinematic hero stage -------- */
.xc-cinema {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
}
.xc-cinema__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.xc-cinema__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Cinematic depth without over-processing the photograph (Rinat 22.04.26):
     subtle warm grade only — luxury comes from typography + brand graphics, not filters. */
  filter: contrast(1.04) brightness(0.92);
  animation: xc-kenburns 28s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes xc-kenburns {
  0%   { transform: scale(1.08) translate(0, 0); }
  100% { transform: scale(1.18) translate(-2%, -1%); }
}
/* Layered scrim so text always reads */
.xc-cinema__bg::before,
.xc-cinema__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.xc-cinema__bg::before {
  /* Strong center darkening so the form glass + logo always read clearly,
     edges keep the cinematic dead-sea atmosphere */
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.78) 60%, rgba(0,0,0,0.95) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 30%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.xc-cinema__bg::after {
  /* Subtle film grain / brand warmth */
  background:
    linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.2) 50%, rgba(0,0,0,0.95) 100%);
  z-index: 2;
}
.xc-cinema__content {
  position: relative;
  z-index: 3;
  padding: var(--s-8) var(--s-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
}

/* -------- Typography -------- */
.xc-eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--xc-gold);
  opacity: 0.95;
  padding-right: 0.42em; /* absorb tracking */
}
.xc-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  /* Hebrew — no uppercase (renders raw glyphs); kept for Latin only */
  /* 4-stop gold gradient mirrors the metallic finish of the XCLUSIVE PLATINUM logo */
  background:
    linear-gradient(180deg,
      var(--xc-gold-hl) 0%,
      var(--xc-gold-rich) 30%,
      var(--xc-gold) 62%,
      var(--xc-gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 24px rgba(242,196,106,0.22));
}
.xc-display--hero { font-size: clamp(2.2rem, 7vw, 5.4rem); }
.xc-display--xl   { font-size: clamp(1.7rem, 5.4vw, 4rem); }
.xc-display--lg   { font-size: clamp(1.4rem, 3.6vw, 2.6rem); }
.xc-display--md   { font-size: clamp(1.1rem, 2.5vw, 1.7rem); }

@media (max-width: 480px) {
  .xc-display { letter-spacing: 0.02em; }
}

.xc-serif {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.6;
  color: var(--xc-paper);
  opacity: 0.92;
  letter-spacing: 0.01em;
}
.xc-prose {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--xc-paper);
  opacity: 0.88;
}

.xc-rule {
  width: 64px;
  height: 1px;
  margin: var(--s-5) auto;
  background: linear-gradient(90deg, transparent 0%, var(--xc-gold) 50%, transparent 100%);
  border: 0;
}
.xc-rule--wide { width: clamp(180px, 30vw, 360px); }
.xc-rule--full { width: 100%; background: linear-gradient(90deg, transparent, rgba(203,156,82,0.35), transparent); }

/* -------- Particles (brand book pg 10 - light glow particles) -------- */
.xc-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}
.xc-sparkle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--xc-gold-hl);
  border-radius: 50%;
  box-shadow:
    0 0 6px var(--xc-gold-hl),
    0 0 14px var(--xc-gold-rich),
    0 0 28px var(--xc-gold);
  animation: xc-float 10s linear infinite, xc-twinkle 3.5s ease-in-out infinite;
  opacity: 0;
}
@keyframes xc-float {
  0%   { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-110vh) translateX(8px); }
}
@keyframes xc-twinkle {
  0%, 100% { opacity: 0; }
  50%      { opacity: 0.9; }
}

/* -------- Glass card -------- */
.xc-glass {
  position: relative;
  background:
    linear-gradient(135deg, rgba(14,14,14,0.88) 0%, rgba(5,5,5,0.92) 100%);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(242,196,106,0.42);
  box-shadow:
    var(--shadow-deep),
    var(--shadow-inset),
    0 0 60px rgba(242,196,106,0.10);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 2px;
}
.xc-glass::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(242,196,106,0.22);
  pointer-events: none;
  border-radius: 1px;
}
.xc-glass--tight { padding: var(--s-5) var(--s-6); }

/* Premium container */
.xc-container {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.xc-container--wide { max-width: 960px; }
.xc-container--form { max-width: 820px; text-align: right; }

/* -------- Logo presentation -------- */
.xc-logo {
  margin: 0 auto;
  filter: drop-shadow(0 0 40px rgba(242,196,106,0.35));
  position: relative;
  z-index: 2;
}
.xc-logo--hero { width: clamp(200px, 30vw, 340px); }
.xc-logo--lg   { width: clamp(140px, 22vw, 220px); }
.xc-logo--md   { width: clamp(100px, 16vw, 150px); }
.xc-logo--sm   { width: 90px; }

/* Logo stage — wraps the platinum logo with brand graphics from the package
   (Spark.ai → gold-burst.png, line beam → gold-line.png).
   Solves Rinat's "logo looks detached" feedback (22.04.26). */
.xc-logo-stage {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: var(--s-4) auto var(--s-3);
  padding: var(--s-5) 0 var(--s-4);
  isolation: isolate;
}
.xc-logo-stage::before {
  /* Gold spark burst behind the logo */
  content: '';
  position: absolute;
  inset: -30% -10% -30% -10%;
  background: url('/static/img/gold-burst.webp') center/contain no-repeat;
  opacity: 0.55;
  z-index: 0;
  animation: xc-burst-pulse 6s ease-in-out infinite;
  pointer-events: none;
}
.xc-logo-stage::after {
  /* Horizontal light beam under logo */
  content: '';
  position: absolute;
  left: -30%;
  right: -30%;
  bottom: 12%;
  height: 80px;
  background: url('/static/img/gold-line.png') center/contain no-repeat;
  opacity: 0.85;
  z-index: 1;
  pointer-events: none;
}
@keyframes xc-burst-pulse {
  0%, 100% { opacity: 0.42; transform: scale(1); }
  50%      { opacity: 0.65; transform: scale(1.04); }
}

/* -------- Buttons -------- */
.xc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  padding: 1rem 2.8rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--xc-black);
  /* Metallic 4-stop gold — mimics the XCLUSIVE PLATINUM logo finish */
  background: linear-gradient(135deg,
    var(--xc-gold-hl) 0%,
    var(--xc-gold-rich) 35%,
    var(--xc-gold) 65%,
    var(--xc-gold-deep) 100%);
  border: 1px solid var(--xc-gold);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1), box-shadow 0.3s, filter 0.2s;
  /* Glow halo so the CTA looks lit, not faded */
  box-shadow:
    0 8px 28px rgba(0,0,0,0.55),
    0 0 36px rgba(242,196,106,0.25),
    inset 0 1px 0 rgba(255,248,210,0.55),
    inset 0 -1px 0 rgba(120,80,25,0.35);
  min-width: 200px;
}
.xc-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(150%);
  transition: transform 0.9s cubic-bezier(.2,.7,.2,1);
}
.xc-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold), 0 16px 40px rgba(0,0,0,0.6);
  filter: brightness(1.05);
}
.xc-btn:hover::before { transform: translateX(-150%); }
.xc-btn:active { transform: translateY(0); }
.xc-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(0.35);
  transform: none;
}
.xc-btn--ghost {
  color: var(--xc-gold);
  background: transparent;
  border: 1px solid rgba(203,156,82,0.6);
  box-shadow: none;
}
.xc-btn--ghost:hover {
  background: rgba(203,156,82,0.08);
  color: var(--xc-gold-hl);
  box-shadow: 0 0 24px rgba(203,156,82,0.15);
}
.xc-btn--sm { padding: 0.55rem 1.3rem; min-width: 0; font-size: 0.78rem; letter-spacing: 0.18em; }

/* -------- Form primitives -------- */
.xc-field { display: flex; flex-direction: column; gap: var(--s-2); }
.xc-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--xc-gold);
  opacity: 0.88;
}
.xc-label--req::after {
  content: ' ◆';
  color: var(--xc-gold-hl);
  font-size: 0.7em;
  opacity: 0.8;
}
.xc-input, .xc-select, .xc-textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: rgba(8,8,8,0.9);
  border: 1px solid rgba(203,156,82,0.3);
  border-radius: 2px;
  color: var(--xc-paper);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
  transition: all 0.2s;
  text-align: right;
}
.xc-input:hover, .xc-select:hover, .xc-textarea:hover {
  border-color: rgba(203,156,82,0.5);
}
.xc-input:focus, .xc-select:focus, .xc-textarea:focus {
  outline: none;
  border-color: var(--xc-gold);
  background: rgba(0,0,0,1);
  box-shadow: 0 0 0 3px rgba(203,156,82,0.15), 0 0 28px rgba(203,156,82,0.2);
}
.xc-input::placeholder, .xc-textarea::placeholder {
  color: rgba(244,236,216,0.3);
  font-weight: 300;
}

/* Code pill */
.xc-code-input {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.55em;
  padding: 1.1rem 0.5rem;
  padding-inline-end: 0;
  background: rgba(0,0,0,0.9);
  border: 1px solid rgba(203,156,82,0.4);
  text-transform: uppercase;
  color: var(--xc-gold-hl);
}
.xc-code-input::placeholder {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: rgba(203,156,82,0.3);
}

/* Choice cards (radio/checkbox styled) */
.xc-choices {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.xc-choice {
  position: relative;
  padding: 1rem 1.1rem;
  background: rgba(8,8,8,0.8);
  border: 1px solid rgba(203,156,82,0.25);
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--xc-paper);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.xc-choice:hover { border-color: var(--xc-gold); background: rgba(14,14,14,0.95); }
.xc-choice input { accent-color: var(--xc-gold); flex-shrink: 0; }
.xc-choice:has(input:checked) {
  border-color: var(--xc-gold);
  background: linear-gradient(180deg, rgba(203,156,82,0.08), rgba(203,156,82,0.03));
  color: var(--xc-gold-hl);
}

/* Row helpers */
.xc-row { display: grid; gap: var(--s-5); margin-bottom: var(--s-5); }
.xc-row--2 { grid-template-columns: 1fr 1fr; }
.xc-row--3 { grid-template-columns: 2fr 1fr; }
@media (max-width: 640px) {
  .xc-row--2, .xc-row--3 { grid-template-columns: 1fr; }
}

/* Stepper */
.xc-stepper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--s-3);
  margin: var(--s-6) 0;
}
.xc-stepper__step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(203,156,82,0.35);
  background: rgba(8,8,8,0.9);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--xc-muted);
  transition: all 0.3s cubic-bezier(.2,.7,.2,1);
}
.xc-stepper__bar {
  width: 44px;
  height: 1px;
  background: rgba(203,156,82,0.2);
}
.xc-stepper__step.active {
  color: var(--xc-black);
  background: linear-gradient(135deg, var(--xc-gold-hl), var(--xc-gold));
  border-color: var(--xc-gold);
  box-shadow: 0 0 16px rgba(203,156,82,0.45);
  transform: scale(1.1);
}
.xc-stepper__step.done { color: var(--xc-gold); border-color: var(--xc-gold); }

/* Legal scroll area */
.xc-legal {
  max-height: 220px;
  overflow-y: auto;
  padding: var(--s-5);
  background: rgba(0,0,0,0.8);
  border: 1px solid rgba(203,156,82,0.2);
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--xc-paper);
  opacity: 0.8;
  scrollbar-width: thin;
  scrollbar-color: var(--xc-gold) rgba(10,10,10,0.9);
}
.xc-legal::-webkit-scrollbar { width: 6px; }
.xc-legal::-webkit-scrollbar-thumb { background: var(--xc-gold); border-radius: 3px; }
.xc-legal strong { color: var(--xc-gold-hl); font-weight: 500; }

/* Alerts */
.xc-alert {
  padding: var(--s-4) var(--s-5);
  border-radius: 2px;
  font-size: 0.9rem;
  margin: var(--s-4) 0;
  text-align: right;
  border: 1px solid;
}
.xc-alert--err {
  background: rgba(141,25,27,0.12);
  border-color: rgba(141,25,27,0.5);
  color: #ffd8d8;
}
.xc-alert--info {
  background: rgba(203,156,82,0.08);
  border-color: rgba(203,156,82,0.5);
  color: var(--xc-gold-hl);
}

/* Disclaimer bar (security clause - mandatory)
   Rinat 22.04.26: previous color got lost — bumped to readable paper tone. */
.xc-disclaimer {
  margin-top: var(--s-8);
  padding: var(--s-5) var(--s-6);
  background: linear-gradient(180deg, rgba(10,10,10,0.85), rgba(0,0,0,0.95));
  border-top: 1px solid rgba(242,196,106,0.32);
  border-bottom: 1px solid rgba(242,196,106,0.32);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.85;
  color: rgba(244,236,216,0.88);   /* paper tone, was --xc-dim (#6a5c48 — too low) */
  text-align: right;
  max-width: 900px;
  margin-inline: auto;
}
.xc-disclaimer strong { color: var(--xc-gold-hl); font-weight: 600; }

/* Footer */
.xc-footer {
  padding: var(--s-7) var(--s-4) var(--s-6);
  text-align: center;
  background: var(--xc-black);
  border-top: 1px solid rgba(203,156,82,0.18);
  position: relative;
  z-index: 5;
}
.xc-footer__pmi {
  display: inline-flex;
  align-items: center;
  gap: var(--s-4);
  opacity: 0.7;
  margin-bottom: var(--s-4);
}
.xc-footer__pmi img { max-width: 56px; filter: brightness(1.05); }
.xc-footer__pmi span {
  font-family: var(--font-latin);
  font-style: italic;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--xc-muted);
  text-transform: uppercase;
}
.xc-footer__contact {
  font-size: 0.85rem;
  color: var(--xc-muted);
  letter-spacing: 0.08em;
}
.xc-footer__contact a {
  color: var(--xc-gold);
  text-decoration: none;
  transition: color 0.2s;
}
.xc-footer__contact a:hover { color: var(--xc-gold-hl); }

/* -------- Subtle entry animation -------- */
@keyframes xc-rise {
  from { opacity: 0; transform: translateY(20px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.xc-rise { animation: xc-rise 1s cubic-bezier(.2,.7,.2,1) both; }
.xc-rise.d-1 { animation-delay: 0.1s; }
.xc-rise.d-2 { animation-delay: 0.25s; }
.xc-rise.d-3 { animation-delay: 0.4s; }
.xc-rise.d-4 { animation-delay: 0.55s; }
.xc-rise.d-5 { animation-delay: 0.7s; }

/* ================= ADMIN ================= */
.xc-admin {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(203,156,82,0.04) 0%, transparent 50%),
    var(--xc-black);
  padding: var(--s-6) var(--s-5);
}
.xc-admin__inner { max-width: 1400px; margin: 0 auto; }
.xc-admin__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
}
.xc-admin__brand { display: flex; align-items: center; gap: var(--s-4); }
.xc-admin__brand img { width: 96px; }

.xc-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: var(--s-4);
  margin-bottom: var(--s-6);
}
.xc-stat {
  padding: var(--s-5);
  background: linear-gradient(180deg, rgba(20,20,20,0.9), rgba(8,8,8,0.9));
  border: 1px solid rgba(203,156,82,0.22);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.xc-stat::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--xc-gold));
}
.xc-stat__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--xc-gold);
  line-height: 1;
  letter-spacing: 0.02em;
}
.xc-stat__num small {
  font-size: 0.95rem;
  color: var(--xc-dim);
  font-weight: 400;
}
.xc-stat__lbl {
  font-size: 0.7rem;
  color: var(--xc-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: var(--s-2);
}

.xc-panel {
  background: linear-gradient(180deg, rgba(14,14,14,0.95), rgba(8,8,8,0.95));
  border: 1px solid rgba(203,156,82,0.22);
  border-radius: 2px;
  padding: var(--s-6);
  margin-bottom: var(--s-6);
}
.xc-panel__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--xc-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 var(--s-4);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid rgba(203,156,82,0.25);
}

.xc-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.xc-table th, .xc-table td {
  padding: var(--s-3) var(--s-3);
  text-align: right;
  border-bottom: 1px solid rgba(203,156,82,0.1);
}
.xc-table th {
  color: var(--xc-gold);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(5,5,5,0.8);
}
.xc-table tbody tr:hover { background: rgba(203,156,82,0.035); }
.xc-status {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 1px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.xc-status--pending { background: rgba(203,156,82,0.08); color: var(--xc-gold); border: 1px solid rgba(203,156,82,0.35); }
.xc-status--registered { background: rgba(80,140,80,0.1); color: #b8e0b8; border: 1px solid rgba(80,140,80,0.5); }
.xc-status--declined { background: rgba(141,25,27,0.1); color: #e0b8b8; border: 1px solid rgba(141,25,27,0.5); }

/* ============================================================================
   CAMPAIGN IDENTITY (brand brief 21.04.26)
   — "מה ה-X מייצג ב-XCLUSIVE" tagline
   — CSM: "אקסקלוסיב מגדיר מחדש את הסטנדרט"
   — Values: רואה אותך · יוקרתי ונחשק · נבחרת (Chosen)
   ============================================================================ */

/* Campaign tagline — quieter, integrated under the logo stage */
.xc-campaign {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  letter-spacing: 0.06em;
  color: var(--xc-gold-hl);
  text-align: center;
  margin: var(--s-3) auto var(--s-4);
  opacity: 0.88;
}
.xc-campaign__x {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35em;
  line-height: 0.9;
  vertical-align: -0.06em;
  background: linear-gradient(180deg, #FFF3B0 0%, var(--xc-gold-hl) 35%, var(--xc-gold) 70%, var(--xc-gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 0.08em;
  text-shadow: 0 0 24px rgba(229,182,92,0.35);
}
.xc-campaign__word {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--xc-gold-hl);
}

/* Values row — reinforces club values below hero */
.xc-values {
  list-style: none;
  padding: 0;
  margin: var(--s-5) auto var(--s-4);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3) var(--s-5);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--xc-paper);
  max-width: 620px;
}
.xc-values li {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  opacity: 0.94;
}
.xc-values em {
  font-family: var(--font-latin);
  font-style: italic;
  color: var(--xc-gold-hl);
  letter-spacing: 0.12em;
  font-size: 0.92em;
}
.xc-values__mark {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--xc-gold);
  font-size: 1.05em;
  line-height: 1;
}

/* Manifesto sentence — values (Chosen / Personal / Desired) integrated as one
   complete sentence (Rinat 22.04.26: "values are internal — phrase them as a sentence") */
.xc-manifesto {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.85;
  letter-spacing: 0.02em;
  color: rgba(244,236,216,0.95);
  text-align: center;
  margin: var(--s-5) auto var(--s-4);
  max-width: 620px;
}
.xc-manifesto strong {
  color: var(--xc-gold-hl);
  font-weight: 600;
}

/* When/where line — days + dates + location, single elegant row */
.xc-when {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  color: rgba(244,236,216,0.92);
  text-align: center;
  letter-spacing: 0.04em;
  margin: var(--s-3) auto var(--s-4);
}
.xc-when__dates {
  display: inline-block;
  color: var(--xc-gold-hl);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.xc-when__nights {
  display: block;
  margin-top: 0.3em;
  color: var(--xc-muted);
  font-size: 0.86em;
  letter-spacing: 0.06em;
}

@media (max-width: 520px) {
  .xc-values { gap: var(--s-2) var(--s-4); font-size: 0.88rem; }
  .xc-campaign { font-size: 1.02rem; }
}

/* ============================================================================
   REGISTER PAGE — welcome intro (before stepper)
   ============================================================================ */
.xc-intro {
  max-width: 680px;
  margin: 0 auto var(--s-6);
  padding: var(--s-6) var(--s-6) var(--s-5);
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(242,196,106,0.08) 0%, transparent 65%),
    linear-gradient(180deg, rgba(14,14,14,0.78) 0%, rgba(5,5,5,0.88) 100%);
  border: 1px solid rgba(242,196,106,0.32);
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 48px rgba(242,196,106,0.08);
  position: relative;
}
.xc-intro::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(242,196,106,0.16);
  pointer-events: none;
  border-radius: 1px;
}
.xc-intro__hi {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--xc-paper);
  letter-spacing: 0.02em;
  margin: 0 0 var(--s-2);
}
.xc-intro__brand {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--xc-gold-hl);
  padding: 0 0.15em;
}
.xc-intro__kick {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 3.2vw, 1.9rem);
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, var(--xc-gold-hl) 0%, var(--xc-gold-rich) 55%, var(--xc-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 var(--s-2);
}
.xc-intro__when {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--xc-gold-hl);
  letter-spacing: 0.06em;
  margin: 0 0 var(--s-3);
}
.xc-intro__lead {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--xc-paper);
  margin: var(--s-3) auto;
  opacity: 0.94;
  max-width: 560px;
}
.xc-intro__lead strong {
  color: var(--xc-gold-hl);
  font-weight: 600;
}
.xc-intro__tease {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--xc-gold-hl);
  margin: var(--s-4) 0 var(--s-3);
  letter-spacing: 0.04em;
}
.xc-intro__tease em {
  font-family: var(--font-latin);
  font-style: italic;
  font-weight: 500;
  color: var(--xc-gold);
  letter-spacing: 0.06em;
}
.xc-intro__cta {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--xc-paper);
  margin: var(--s-3) 0 0;
  opacity: 0.9;
}
.xc-intro__deadline {
  display: inline-block;
  margin-top: var(--s-2);
  font-size: 0.88rem;
  color: var(--xc-muted);
  letter-spacing: 0.04em;
}
.xc-intro__deadline strong {
  color: var(--xc-gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0 0.2em;
}

/* Inline hints + error states on form inputs */
.xc-hint {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--xc-muted);
  letter-spacing: 0.06em;
  margin-inline-start: 0.4em;
  text-transform: none;
  opacity: 0.85;
}
.xc-input--err {
  border-color: rgba(217,70,72,0.75) !important;
  background: rgba(141,25,27,0.08) !important;
  box-shadow: 0 0 0 2px rgba(217,70,72,0.15) !important;
}
.xc-err {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: #ff8a8c;
  letter-spacing: 0.02em;
}

/* Gold asterisk marker + explanatory note (next to phone field) */
.xc-star {
  display: inline-block;
  color: var(--xc-gold-hl);
  font-weight: 700;
  font-size: 1em;
  text-shadow: 0 0 8px rgba(255,242,179,0.55);
  margin-inline: 0.15em;
  transform: translateY(-0.05em);
}
.xc-note {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--xc-gold-hl);
  opacity: 0.82;
  letter-spacing: 0.02em;
}
.xc-note .xc-star {
  color: var(--xc-gold-hl);
  margin-inline-end: 0.35em;
}

/* Action row — centered buttons with wrap so they never get cut off on mobile */
.xc-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--s-3) var(--s-4);
  margin-top: var(--s-6);
}
.xc-actions .xc-btn {
  min-width: 160px;
  flex: 0 1 auto;
}
@media (max-width: 520px) {
  .xc-actions .xc-btn {
    min-width: 0;
    width: 100%;
    max-width: 320px;
    padding-inline: 1.4rem;
  }
}

/* Inline disclaimer (dietary / allergy note) — warm gold frame, not scary */
.xc-disclaimer-inline {
  margin-top: var(--s-4);
  padding: var(--s-4) var(--s-5);
  background:
    linear-gradient(180deg, rgba(242,196,106,0.08) 0%, rgba(242,196,106,0.03) 100%);
  border-inline-start: 3px solid var(--xc-gold);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--xc-paper);
  text-align: right;
  opacity: 0.95;
}
.xc-disclaimer-inline strong {
  color: var(--xc-gold-hl);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Compact step header — shown only on steps 2-4 (Rinat 22.04.26) */
.xc-step-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  margin: 0 auto var(--s-4);
  padding: var(--s-3) var(--s-5);
  max-width: 620px;
  background: linear-gradient(180deg, rgba(14,14,14,0.85), rgba(0,0,0,0.92));
  border: 1px solid rgba(242,196,106,0.32);
  border-radius: 2px;
}
.xc-step-header__logo {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(242,196,106,0.32));
}
.xc-step-header__divider {
  display: inline-block;
  width: 1px;
  height: 22px;
  background: linear-gradient(180deg, transparent, var(--xc-gold), transparent);
}
.xc-step-header__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--xc-gold-hl);
}
@media (max-width: 480px) {
  .xc-step-header { padding: var(--s-2) var(--s-3); gap: var(--s-2); }
  .xc-step-header__logo { height: 28px; }
  .xc-step-header__title { font-size: 0.82rem; }
}

/* Required choice — gold star indicator + error state (e.g. unchecked דמי רצינות) */
.xc-choice--req {
  border-color: rgba(242,196,106,0.45);
}
.xc-choice--err {
  border-color: rgba(217,70,72,0.75) !important;
  background: rgba(141,25,27,0.10) !important;
  box-shadow: 0 0 0 2px rgba(217,70,72,0.12) !important;
  animation: xc-shake 0.4s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes xc-shake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-3px); }
  40%, 60% { transform: translateX(3px); }
}

/* ============================================================================
   GLOBAL HEADER BAR — support phone visible on every page
   ============================================================================ */
.xc-header-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.92) 0%, rgba(10,8,4,0.88) 100%);
  border-bottom: 1px solid rgba(242,196,106,0.35);
  box-shadow: 0 2px 22px rgba(0,0,0,0.55), 0 0 32px rgba(242,196,106,0.06);
  backdrop-filter: blur(8px) saturate(1.1);
  -webkit-backdrop-filter: blur(8px) saturate(1.1);
}
.xc-header-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.55rem var(--s-5);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.xc-header-bar__lbl {
  color: var(--xc-paper);
  opacity: 0.9;
  font-weight: 500;
}
.xc-header-bar__sep {
  color: var(--xc-gold);
  opacity: 0.6;
}
.xc-header-bar__phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.09em;
  color: var(--xc-black);
  background: linear-gradient(135deg,
    var(--xc-gold-hl) 0%, var(--xc-gold-rich) 45%, var(--xc-gold) 100%);
  padding: 0.24rem 0.85rem;
  border-radius: 2px;
  text-decoration: none;
  box-shadow:
    0 0 0 1px var(--xc-gold),
    0 0 18px rgba(242,196,106,0.35),
    inset 0 1px 0 rgba(255,248,210,0.45);
  transition: filter 0.2s, transform 0.2s;
}
.xc-header-bar__phone:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
@media (max-width: 480px) {
  .xc-header-bar__inner { font-size: 0.8rem; padding: 0.45rem var(--s-4); }
  .xc-header-bar__phone { font-size: 0.95rem; padding: 0.22rem 0.7rem; }
}

/* ============================================================================
   PHONE CALL-TO-CONTACT CARD (thanks / already / closed pages)
   ============================================================================ */
.xc-phone-card {
  max-width: 520px;
  margin: var(--s-6) auto var(--s-4);
  padding: var(--s-5) var(--s-6);
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(242,196,106,0.12) 0%, transparent 70%),
    linear-gradient(180deg, rgba(14,14,14,0.92) 0%, rgba(5,5,5,0.95) 100%);
  border: 1px solid rgba(242,196,106,0.45);
  border-radius: 2px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.55), 0 0 60px rgba(242,196,106,0.12);
  position: relative;
}
.xc-phone-card::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(242,196,106,0.2);
  pointer-events: none;
  border-radius: 1px;
}
.xc-phone-card__lbl {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--xc-gold-hl);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 var(--s-2);
}
.xc-phone-card__text {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.98rem;
  color: var(--xc-paper);
  margin: 0 0 var(--s-3);
  opacity: 0.92;
  line-height: 1.6;
}
.xc-phone-card__cta {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.7rem, 4.2vw, 2.3rem);
  letter-spacing: 0.12em;
  color: var(--xc-black);
  background: linear-gradient(135deg,
    var(--xc-gold-hl) 0%, var(--xc-gold-rich) 40%, var(--xc-gold) 75%, var(--xc-gold-deep) 100%);
  padding: 0.5rem 1.6rem;
  border-radius: 3px;
  text-decoration: none;
  box-shadow:
    0 0 0 1px var(--xc-gold),
    0 10px 28px rgba(0,0,0,0.55),
    0 0 48px rgba(242,196,106,0.35),
    inset 0 1px 0 rgba(255,248,210,0.55);
  transition: transform 0.25s, filter 0.25s, box-shadow 0.25s;
}
.xc-phone-card__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px var(--xc-gold-hl),
    0 14px 36px rgba(0,0,0,0.6),
    0 0 72px rgba(242,196,106,0.55),
    inset 0 1px 0 rgba(255,248,210,0.6);
}
