:root {
  --bg: #06070b;
  --bg-2: #0d1118;
  --panel: rgba(12, 16, 24, 0.82);
  --panel-strong: rgba(9, 13, 20, 0.92);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.76);
  --soft: rgba(255, 255, 255, 0.52);

  --light-bg: #f6f7fb;
  --light-card: #ffffff;
  --light-line: rgba(10, 14, 22, 0.08);
  --light-text: #0b0f16;
  --light-muted: rgba(11, 15, 22, 0.68);
  --light-soft: rgba(11, 15, 22, 0.44);

  --accent: #d52d74;
  --accent-2: #f04e92;
  --accent-soft: rgba(213, 45, 116, 0.14);
  --accent-line: rgba(213, 45, 116, 0.34);

  --radius-2xl: 38px;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;

  --shadow-xl: 0 34px 90px rgba(0, 0, 0, 0.38);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.22);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.12);
  --shadow-accent: 0 18px 38px rgba(213, 45, 116, 0.22);

  --max-width: 1240px;
  --section-space: clamp(72px, 9vw, 124px);
  --header-offset: 170px;
}

*,
*::before,
*::after {
  box-sizing: border-box !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-feature-settings: "cv11", "ss01";
  background: radial-gradient(circle at top right,
      rgba(213, 45, 116, 0.12),
      transparent 22%),
    radial-gradient(circle at left 20%,
      rgba(54, 79, 134, 0.14),
      transparent 18%),
    linear-gradient(180deg, #05070b 0%, #080b12 100%);
  color: var(--text);
  overflow-x: hidden;
  letter-spacing: -0.012em;
}

/*body.sy-live-locked,*/
body.sy-menu-open {
  overflow: hidden;
}

.sy-live-locked #pass {
  overflow-y: scroll;
  overscroll-behavior: contain;
  height: calc(100dvh + 20px);
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  padding: 0;
  border: 0;
  background: transparent;
}

select,
input,
textarea {
  appearance: none;
}

option {
  background: #0f131c;
  color: #fff;
}

h1,
h2,
h3,
h4,
p,
strong {
  margin: 0;
}

section[id] {
  scroll-margin-top: calc(0px - var(--header-offset)); /*calc(var(--header-offset) + 18px); */
}

.hidden {
  display: none !important;
}

.sy-site {
  min-height: 100vh;
}

.sy-main {
  position: relative;
}

.sy-shell {
  width: min(calc(100% - 20px), var(--max-width));
  margin: 0 auto;
}

.sy-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.sy-section {
  padding: var(--section-space) 0;
}

.sy-section--light {
  background: #ffffff;
  color: var(--light-text);
}

.sy-section--light .sy-section-kicker {
  color: var(--light-soft);
}

.sy-section--light .sy-section-head p {
  color: var(--light-muted);
}

.sy-section--light .sy-card {
  background: #fff;
  border-color: var(--light-line);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.04);
}

.sy-section-head {
  margin-bottom: 30px;
}

.sy-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
}

.sy-section-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

.sy-section-head h2 {
  font-size: clamp(34px, 7vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.sy-section-head p {
  margin-top: 14px;
  max-width: 760px;
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 1.6;
  color: var(--muted);
}

.sy-subkicker {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.sy-eyebrow,
.sy-card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.sy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease, background 0.22s ease, color 0.22s ease,
    opacity 0.22s ease;
}

.sy-button:hover {
  transform: translateY(-1px);
}

.sy-button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--shadow-accent);
}

.sy-button--ghost {
  color: #fff;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.sy-button--fit {
  width: 100%;
}

.sy-end-pass-btn {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--soft);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
}

.sy-end-pass-btn:hover {
  background: rgba(213, 45, 116, 0.1);
  border-color: rgba(213, 45, 116, 0.3);
  color: #fff;
}

.sy-field-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sy-field-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soft);
}

.sy-field-group input,
.sy-field-group select,
.sy-field-group textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease,
    background 0.22s ease, opacity 0.22s ease;
}

.sy-field-group textarea {
  min-height: 160px;
  padding: 16px;
  resize: vertical;
}

.sy-field-group input:focus,
.sy-field-group select:focus,
.sy-field-group textarea:focus {
  border-color: rgba(213, 45, 116, 0.78);
  box-shadow: 0 0 0 4px rgba(213, 45, 116, 0.12);
}

.sy-field-group input:disabled,
.sy-field-group select:disabled,
.sy-field-group textarea:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.sy-form-grid {
  display: grid;
  gap: 14px;
}

.sy-field-group--full {
  grid-column: 1 / -1;
}

.sy-honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.sy-check-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 16px;
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.sy-check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.sy-check-row input:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.sy-form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

/* HEADER */

.sy-header {
  position: /* fixed //scrollingheader */ static;
  inset: 0 0 auto 0;
  z-index: 140;
  padding-top: 10px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 600px) {
  .sy-header {
    position: absolute;
  }

  .sy-header.is-scrolled {
    position: fixed;
    transform: translateY(12px);
    z-index: 200;
  }

  .sy-header.is-scrolled .sy-header-shell {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    margin-right: 12px;
    margin-left: auto;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    background: rgba(213, 45, 116, 0.95);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .sy-header.is-scrolled .sy-ticker,
  .sy-header.is-scrolled .sy-brand,
  .sy-header.is-scrolled .sy-header-nav,
  .sy-header.is-scrolled .sy-lang-switch {
    display: none;
  }

  .sy-header.is-scrolled .sy-header-main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    height: 100%;
    grid-template-columns: none;
  }

  .sy-header.is-scrolled .sy-header-tools {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .sy-header.is-scrolled .sy-menu-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.15);
    background: transparent;
    border: none;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sy-hero {
    padding-top: var(--header-offset) /* //scrollingheader */;
  }
}

.sy-header-shell {
  width: min(calc(100% - 16px), var(--max-width));
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: rgba(8, 11, 17, 0.82);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

@keyframes tickerScrollLeft {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.sy-ticker {
  display: flex;
  overflow-x: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sy-ticker-track {
  display: flex;
  padding: 10px 0;
  gap: 40px;
  padding-right: 40px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-wrap: nowrap;
  animation-name: tickerScrollLeft;
  animation-duration: 32000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}



.sy-header-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 12px 12px;
}

.sy-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.sy-brand-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sy-brand-sub {
  font-size: 11px;
  color: var(--soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sy-header-nav {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.sy-header-nav::-webkit-scrollbar {
  display: none;
}

.sy-header-nav a {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.sy-header-nav a:hover,
.sy-header-nav a.is-active {
  color: #fff;
  border-color: rgba(213, 45, 116, 0.5);
  background: rgba(213, 45, 116, 0.12);
}

.sy-header-tools {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sy-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sy-lang-switch button {
  min-width: 34px;
  min-height: 34px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.sy-lang-switch button.is-active {
  color: #fff;
  border-color: rgba(213, 45, 116, 0.52);
  background: rgba(213, 45, 116, 0.12);
}

.sy-menu-button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
  padding: 0;
}

.sy-menu-button svg {
  width: 22px;
  height: 22px;
}

/* OVERLAY MENU */

.sy-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 220;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.sy-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sy-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 9, 0.9);
}

.sy-menu-panel {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 20px), 880px);
  min-height: min(86svh, 760px);
  margin: 12px auto;
  padding: 22px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 11, 17, 0.95);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sy-menu-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.sy-menu-brand {
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sy-menu-head p {
  margin-top: 10px;
  max-width: 420px;
  color: var(--muted);
  line-height: 1.58;
}

.sy-menu-close {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
}

.sy-menu-nav {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.sy-menu-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 68px;
  width: 100%;
  padding: 0 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: border-color 0.22s ease, background 0.22s ease,
    transform 0.22s ease;
}

.sy-menu-nav a:hover,
.sy-menu-nav a.is-active {
  transform: translateX(2px);
  border-color: rgba(213, 45, 116, 0.52);
  background: rgba(213, 45, 116, 0.1);
}

.sy-menu-foot {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sy-menu-foot p {
  color: var(--muted);
  line-height: 1.58;
}

/* LEFT RAIL */

.sy-left-sensor,
.sy-left-veil,
.sy-left-rail {
  display: none;
}

/* HERO */

.sy-hero {
  /* padding-top: calc(var(--header-offset) + 8px); //scrollingheader */
  padding-bottom: 20px;
}

.sy-hero-stage {
  position: relative;
  min-height: min(88svh, 860px);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: #0a0d14;
}

.sy-hero-slides {
  position: absolute;
  inset: 0;
}

.sy-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 1.4s ease;
}

.sy-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.sy-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg,
      rgba(4, 8, 14, 0.08) 0%,
      rgba(4, 8, 14, 0.18) 34%,
      rgba(4, 8, 14, 0.7) 100%),
    var(--slide-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.06) contrast(1.02) brightness(1.04);
}

.sy-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at center,
      rgba(27, 45, 91, 0.1),
      transparent 38%),
    linear-gradient(180deg,
      rgba(5, 9, 15, 0.1) 0%,
      rgba(5, 9, 15, 0.28) 48%,
      rgba(5, 9, 15, 0.84) 100%);
}

.sy-hero-slide-meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 56px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.sy-slide-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sy-hero-slide-meta strong {
  font-size: clamp(20px, 4.5vw, 28px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.sy-like-button {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 11, 17, 0.44);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.sy-like-button svg {
  width: 18px;
  height: 18px;
}

.sy-like-button span {
  font-weight: 700;
}

.sy-like-button.is-liked {
  border-color: rgba(213, 45, 116, 0.54);
  background: rgba(213, 45, 116, 0.16);
}

.sy-hero-inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 18px 96px;
}

.sy-hero-copy {
  max-width: 880px;
  text-align: center;
}

.sy-hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(42px, 10vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.sy-hero-copy p {
  margin: 18px auto 0;
  max-width: 760px;
  font-size: /* clamp(18px, 3.5vw, 30px) */ clamp(30px, 9vw, 60px);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 800;
}

.sy-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  align-items: stretch;
  justify-content: center;
}

.sy-hero-drawer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease;
}

.sy-hero-drawer.is-open {
  max-height: 420px;
  opacity: 1;
  margin-top: 18px;
}

.sy-hero-drawer-grid {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(8, 11, 17, 0.58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.sy-hero-status {
  margin-top: 12px;
  text-align: left;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.sy-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  gap: 10px;
}

.sy-hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease;
}

.sy-hero-dots button.is-active {
  width: 34px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

/* STEPS */

.sy-steps-grid {
  position: relative;
  display: grid;
  gap: 16px;
}

.sy-step-card {
  position: relative;
  padding: 24px 20px;
}

.sy-step-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.84;
}

.sy-steps-grid article:nth-child(2) .sy-step-number {
  background: rgba(45, 116, 213, 0.1);
  border-color: rgba(45, 116, 213, 0.2);
  color: #2d74d5;
}

.sy-steps-grid article:nth-child(2).sy-step-card::before {
  background: linear-gradient(90deg, #2d74d5, #4ecbf0);
}

.sy-steps-grid article:nth-child(3) .sy-step-number {
  background: rgba(116, 45, 213, 0.1);
  border-color: rgba(116, 45, 213, 0.2);
  color: #742dd5;
}

.sy-steps-grid article:nth-child(3).sy-step-card::before {
  background: linear-gradient(90deg, #742dd5, #b84ef0);
}

.sy-steps-grid article:nth-child(4) .sy-step-number {
  background: rgba(45, 213, 142, 0.1);
  border-color: rgba(45, 213, 142, 0.2);
  color: #2da175;
}

.sy-steps-grid article:nth-child(4).sy-step-card::before {
  background: linear-gradient(90deg, #2dd58e, #4ef0da);
}

.sy-step-number {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(213, 45, 116, 0.1);
  border: 1px solid rgba(213, 45, 116, 0.2);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sy-step-card h3 {
  margin-top: 18px;
  font-size: 24px;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--light-text);
}

.sy-step-card p {
  margin-top: 10px;
  color: var(--light-muted);
  line-height: 1.65;
}

/* PASS */

#refreshUsersButton {
  padding: 0.2em 0.4em;
  border: 1px solid var(--accent);
  border-radius: 3em;
  margin-bottom: 20px;
  cursor: pointer;
}

.sy-pass-layout {
  display: grid;
  gap: 18px;
}

.sy-pass-preview,
.sy-pass-card {
  padding: 18px;
}

.sy-pass-preview-media {
  position: relative;
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.sy-pass-preview-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg,
      rgba(5, 9, 15, 0.08),
      rgba(5, 9, 15, 0.46)),
    var(--pass-image);
  background-size: cover;
  background-position: center;
}

.sy-pass-preview-body {
  margin-top: 18px;
}

.sy-pass-preview-body h3 {
  margin-top: 12px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.sy-pass-address {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.sy-metric-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.sy-metric {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.sy-metric span,
.sy-stat-card span,
.sy-live-item span,
.sy-location-meta span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sy-metric span,
.sy-live-item span {
  color: var(--soft);
  margin-bottom: 6px;
}

.sy-metric strong,
.sy-stat-card strong,
.sy-live-item strong {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.sy-pass-copy,
.sy-pass-note,
.sy-live-end {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.62;
}

.desktopPreviewNote::before {
  content: ">";
  color: red;
  margin-right: 1ch;
}

.desktopPreviewNote {
  color: white;
}

.sy-device-note {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(213, 45, 116, 0.28);
  background: rgba(213, 45, 116, 0.08);
  margin-bottom: 18px;
}

.sy-device-note span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.sy-device-note p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.58;
}

.sy-pass-card.is-desktop-preview .sy-form-grid,
.sy-pass-card.is-desktop-preview .sy-check-row,
.sy-pass-card.is-desktop-preview .sy-form-actions .sy-button--ghost {
  opacity: 0.58;
}

.sy-pass-card.is-desktop-preview .sy-form-grid input,
.sy-pass-card.is-desktop-preview .sy-check-row input {
  cursor: not-allowed;
}

.sy-live-card h3 {
  margin-top: 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.sy-live-timer {
  margin: 20px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 76px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(213, 45, 116, 0.34);
  background: linear-gradient(135deg,
      rgba(213, 45, 116, 0.18),
      rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow-accent);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.sy-live-grid {
  display: grid;
  gap: 12px;
}

.sy-live-item {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.sy-live-item--full {
  grid-column: 1 / -1;
}

/* LOCATIONS */

.sy-country-switch {
  display: grid;
  gap: 16px;
}

.sy-country-card {
  position: relative;
  width: 100%;
  min-height: 188px;
  padding: 20px;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
  border: 1px solid transparent;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.sy-country-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg,
      rgba(255, 255, 255, 0.78),
      rgba(255, 255, 255, 0.94)),
    var(--country-image);
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.sy-country-card>* {
  position: relative;
  z-index: 1;
}

.sy-country-card:hover,
.sy-country-card.is-active,
.sy-location-card:hover,
.sy-location-card.is-active,
.sy-ranking-card:hover,
.sy-ranking-card.is-active,
.sy-story-card:hover {
  transform: translateY(-2px);
  border-color: rgba(213, 45, 116, 0.28);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
}

.sy-country-card-badge,
.sy-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(213, 45, 116, 0.1);
  border: 1px solid rgba(213, 45, 116, 0.18);
  color: var(--accent);
}

.sy-country-card-badge.is-upcoming,
.sy-status-pill.is-upcoming {
  background: rgba(11, 15, 22, 0.06);
  border-color: rgba(11, 15, 22, 0.1);
  color: var(--light-muted);
}

.sy-country-card h3,
.sy-location-copy h3 {
  margin-top: 14px;
  font-size: clamp(28px, 4.2vw, 38px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--light-text);
}

.sy-country-card p,
.sy-location-copy p {
  margin-top: 10px;
  color: var(--light-muted);
  line-height: 1.6;
}

.sy-country-card-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.22s ease;
}

.sy-country-card:not(.is-active) .sy-country-card-link {
  color: var(--light-soft);
}

.sy-location-overview {
  display: grid;
  gap: 18px;
  padding: 20px;
  margin-top: 18px;
}

.sy-filter-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-top: 18px;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.sy-filter-row::-webkit-scrollbar {
  display: none;
}

.sy-filter-row button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--light-line);
  background: #fff;
  color: var(--light-muted);
  cursor: pointer;
  font-weight: 700;
  transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.sy-filter-row button.is-active {
  color: var(--accent);
  border-color: rgba(213, 45, 116, 0.32);
  background: rgba(213, 45, 116, 0.08);
}

.sy-stat-grid {
  display: grid;
  gap: 12px;
}

.sy-stat-card {
  padding: 18px;
}

.sy-stat-card span {
  color: var(--light-soft);
  margin-bottom: 8px;
}

.sy-stat-card strong {
  color: var(--light-text);
  font-size: 32px;
}

.sy-location-block-head {
  margin: 28px 0 16px;
}

.sy-location-block-head h3 {
  font-size: clamp(26px, 4.5vw, 38px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--light-text);
}

.sy-location-grid {
  display: grid;
  gap: 16px;
}

.sy-location-card,
.sy-ranking-card {
  width: 100%;
  padding: 0;
  text-align: left;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.sy-location-media,
.sy-ranking-media,
.sy-story-media {
  position: relative;
  min-height: 220px;
  background: rgba(255, 255, 255, 0.06);
}

.sy-location-media::before,
.sy-ranking-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg,
      rgba(5, 9, 15, 0.06),
      rgba(5, 9, 15, 0.56)),
    var(--card-image);
  background-size: cover;
  background-position: center;
}

.sy-story-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg,
      rgba(5, 9, 15, 0.06),
      rgba(5, 9, 15, 0.36)),
    var(--story-image);
  background-size: cover;
  background-position: center;
}

.sy-location-badge-row {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.sy-location-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.86);
  color: var(--light-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sy-location-pill--dark {
  background: rgba(8, 11, 17, 0.72);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.sy-location-body,
.sy-ranking-body,
.sy-story-body {
  padding: 18px;
}

.sy-location-body h3,
.sy-ranking-body h4,
.sy-story-body h3,
.sy-contact-card h3 {
  margin-top: 12px;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.sy-location-body p,
.sy-ranking-body p {
  margin-top: 8px;
  color: var(--light-muted);
  line-height: 1.6;
}

.sy-location-meta {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.sy-location-meta div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f7f8fb;
  border: 1px solid var(--light-line);
  color: var(--light-text);
  font-size: 13px;
  font-weight: 700;
}

.sy-location-meta span {
  color: var(--light-soft);
}

.sy-location-empty {
  padding: 24px;
}

.sy-location-empty strong {
  display: block;
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--light-text);
}

.sy-location-empty p {
  margin-top: 10px;
  color: var(--light-muted);
  line-height: 1.6;
}

.sy-ranking-block {
  margin-top: 30px;
}

.sy-ranking-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 84%);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.sy-ranking-rail::-webkit-scrollbar {
  display: none;
}

.sy-ranking-card {
  scroll-snap-align: start;
}

.sy-ranking-media {
  min-height: 210px;
}

.sy-ranking-rank {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.86);
  color: var(--light-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sy-ranking-body p {
  margin-top: 8px;
}

.sy-ranking-body .sy-location-meta {
  margin-top: 14px;
}

/* MISSION */

.sy-story-grid {
  display: grid;
  gap: 16px;
}

.sy-story-media {
  min-height: 240px;
}

.sy-story-body p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.62;
}

.sy-story-body p+p {
  margin-top: 12px;
}

/* CONTACT */

.sy-contact-layout {
  display: grid;
  gap: 18px;
}

.sy-contact-stack {
  display: grid;
  gap: 16px;
}

.sy-contact-card,
.sy-contact-form-card {
  padding: 20px;
}

.sy-contact-card p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.sy-contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* FOOTER */

.sy-footer {
  padding: 28px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, #05070b 0%, #04060a 100%);
}

.sy-footer-shell {
  display: grid;
  gap: 24px;
}

.sy-footer-brand strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sy-footer-brand p {
  margin-top: 8px;
  color: var(--muted);
}

.sy-footer-links {
  display: grid;
  gap: 20px;
}

.sy-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sy-footer-col span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soft);
}

.sy-footer-col a,
.sy-footer-link,
.sy-footer-col p {
  width: fit-content;
  color: var(--muted);
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  line-height: 1.6;
}

.sy-footer-col a:hover,
.sy-footer-link:hover {
  color: #fff;
}

.sy-footer-copy {
  color: var(--soft);
  font-size: 13px;
}

/* TOAST */

.sy-toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(16px);
  z-index: 260;
  min-width: 220px;
  max-width: calc(100% - 24px);
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 13, 20, 0.94);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.sy-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* RESPONSIVE */

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

  .sy-hero-actions,
  .sy-form-actions {
    flex-direction: row;
    align-items: center;
  }

  .sy-hero-drawer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
  }

  .sy-form-grid,
  .sy-live-grid,
  .sy-metric-grid,
  .sy-country-switch,
  .sy-stat-grid,
  .sy-location-grid,
  .sy-footer-links,
  .sy-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .sy-header-shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .sy-header-main {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    padding: 14px 16px 14px;
  }

  .sy-header-nav {
    grid-column: auto;
    overflow: visible;
    justify-content: flex-end;
    padding-bottom: 0;
  }

  .sy-brand-title {
    font-size: 14px;
  }

  .sy-pass-layout {
    grid-template-columns: /*minmax(0, 1fr) minmax(0, 0.95fr)*/ auto;
    align-items: start;
  }

  .sy-location-overview {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: start;
  }

  .sy-contact-layout {
    grid-template-columns: 360px minmax(0, 1fr);
    align-items: start;
  }

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

  .sy-hero-stage {
    border-radius: var(--radius-2xl);
  }
}

@media (min-width: 1200px) {

  .sy-left-sensor,
  .sy-left-veil,
  .sy-left-rail {
    display: block;
  }

  .sy-left-sensor {
    position: fixed;
    inset: 0 auto 0 0;
    width: 18px;
    z-index: 100;
  }

  .sy-left-veil {
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(4, 7, 13, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
  }

  body.sy-rail-open .sy-left-veil {
    opacity: 1;
    pointer-events: auto;
  }

  .sy-left-rail {
    position: fixed;
    top: 50%;
    left: 18px;
    transform: translate(calc(-100% - 18px), -50%);
    z-index: 99;
    width: 248px;
    padding: 12px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 11, 17, 0.84);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0.02;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

  body.sy-rail-open .sy-left-rail {
    transform: translate(0, -50%);
    opacity: 1;
  }

  .sy-left-rail-nav {
    display: grid;
    gap: 6px;
  }

  .sy-left-link {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 14px;
    border-radius: 20px;
    border: 1px solid transparent;
    color: rgba(255, 255, 255, 0.78);
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
  }

  .sy-left-link span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .sy-left-link small {
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.42;
  }

  .sy-left-link:hover,
  .sy-left-link.is-active {
    color: #fff;
    border-color: rgba(213, 45, 116, 0.44);
    background: rgba(213, 45, 116, 0.1);
  }

  .sy-steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sy-steps-grid::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 74px;
    height: 2px;
    background: linear-gradient(90deg,
        rgba(213, 45, 116, 0.12),
        rgba(213, 45, 116, 0.44),
        rgba(213, 45, 116, 0.12));
  }

  .sy-step-card {
    z-index: 1;
  }

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

  .sy-ranking-rail {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-flow: row;
    overflow: visible;
  }

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

@media (max-width: 560px) {
  .sy-hero-copy h1 {
    font-size: 42px;
  }

  .sy-hero-copy p {
    font-size: 40px;
  }

  .sy-like-button {
    top: 12px;
    right: 12px;
  }

  .sy-hero-slide-meta {
    bottom: 52px;
  }

  .sy-menu-panel {
    padding: 18px;
    margin: 10px auto;
  }

  .sy-menu-nav a {
    min-height: 62px;
    padding: 0 16px;
  }
}

/* -------------------------------------------------------------------------- */
/* PASS SECTION — STEP BADGE, SELECTION, FORM, LIVE                           */
/* -------------------------------------------------------------------------- */

/* Shared step badge */
.sy-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  width: fit-content;
  box-shadow: 0 4px 14px rgba(213, 45, 116, 0.35);
}

/* ── Step 1: Selection ─────────────────────── */

.sy-selection-view {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  animation: syFadeIn 0.4s ease-out;
}

.sy-selection-head h3 {
  font-size: clamp(34px, 10vw, 48px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #fff;
  line-height: 0.95;
  margin-bottom: 8px;
}

.sy-selection-head p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  max-width: 280px;
}

.sy-search-field {
  position: relative;
  width: 100%;
}

.sy-search-field input {
  width: 100%;
  height: 64px;
  padding: 0 16px 0 54px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  color: #fff;
  font-size: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sy-search-field input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.sy-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: /*rgba(255, 255, 255, 0.35)*/ white;
  pointer-events: none;
  transition: color 0.2s ease;
  z-index: 1;
}

.sy-search-field input:focus+.sy-search-icon {
  color: #fff;
}

.sy-selection-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 80vh;
  overflow-y: auto;
  width: 100%;

  /*padding-right: 4px;*/
}

.sy-selection-list::-webkit-scrollbar {
  width: 3px;
}

.sy-selection-list::-weak-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.sy-selection-card {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  cursor: pointer;
}

.sy-selection-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.sy-selection-card:active {
  transform: scale(0.972);
  transition-duration: 0.12s;
}

/* Full-width image background */
.sy-selection-card-media {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.04);
  position: relative;
}

/* Gradient overlay for legibility */
.sy-selection-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(8, 10, 16, 0) 0%,
      rgba(8, 10, 16, 0.5) 60%,
      rgba(8, 10, 16, 0.96) 100%);
}

.sy-selection-card-content {
  padding: 0 18px 18px 18px;
  margin-top: -12px;
  position: relative;
  z-index: 1;
}

.sy-selection-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(213, 45, 116, 0.2);
  border: 1px solid rgba(213, 45, 116, 0.4);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f04e92;
  margin-bottom: 8px;
}

.sy-selection-card-content h4 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sy-selection-card-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}

/* GO button pinned to bottom-right of card */
.sy-go-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  height: 40px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(213, 45, 116, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sy-go-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(213, 45, 116, 0.6);
}

.sy-go-btn:active {
  transform: scale(0.96);
}

.sy-change-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}

.sy-change-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* WHO ELSE IS HERE Section */
.sy-whos-here {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sy-whos-here-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.sy-whos-here-head h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

.sy-user-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}

.sy-user-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sy-user-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
}

.sy-user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #333 0%, #111 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.sy-user-info {
  flex: 1;
  min-width: 0;
}

.sy-user-info strong {
  display: block;
  font-size: 15px;
  color: #fff;
}

.sy-user-info span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
  margin-top: 2px;
}

/* Utils */
.hidden { display: none !important; }
.greyed-out { color: #444 !important; }

@keyframes syFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes syCardIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes syShimmer {
  0% {
    background-position: -400px 0;
  }

  100% {
    background-position: 400px 0;
  }
}

/* Staggered card entrance */
.sy-selection-card {
  animation: syCardIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.sy-selection-card:nth-child(1) {
  animation-delay: 0.04s;
}

.sy-selection-card:nth-child(2) {
  animation-delay: 0.09s;
}

.sy-selection-card:nth-child(3) {
  animation-delay: 0.14s;
}

.sy-selection-card:nth-child(4) {
  animation-delay: 0.19s;
}

.sy-selection-card:nth-child(5) {
  animation-delay: 0.24s;
}

.sy-selection-card:nth-child(n+6) {
  animation-delay: 0.28s;
}

/* Shine sweep on hover */
.sy-selection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(105deg,
      transparent 40%,
      rgba(255, 255, 255, 0.06) 50%,
      transparent 60%);
  background-size: 200% 100%;
  background-position: 200% 0;
  transition: background-position 0.6s ease;
}

.sy-selection-card:hover::before {
  background-position: -200% 0;
}

/* Shimmer skeleton placeholder for empty cards */
.sy-selection-card-media[style*="url('')"],
.sy-selection-card-media:not([style]) {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.04) 0px,
      rgba(255, 255, 255, 0.09) 60px,
      rgba(255, 255, 255, 0.04) 120px);
  background-size: 400px 100%;
  animation: syShimmer 1.6s infinite linear;
}

@media (max-width: 600px) {
  .sy-selection-list {
    max-height: none;
    overflow: visible;
    max-width: fit-content;
  }

  .sy-selection-view,
  .sy-pass-form-view {
    padding-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
  }

  .sy-selection-card-media {
    height: 140px;
  }

  /* Centering titles and text */
  .sy-selection-head,
  .sy-form-hero,
  .sy-live-header {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sy-selection-title,
  .sy-form-title,
  .sy-selection-head h3 {
    text-align: center;
    width: 100%;
  }

  .sy-selection-head p,
  .sy-form-subtitle {
    margin: 0 auto;
    text-align: center;
  }

  /* Centering labels and fields */
  .sy-pf-field {
    align-items: center;
  }

  .sy-pf-field label {
    text-align: center;
    width: 100%;
  }

  .sy-pf-field input,
  .sy-pf-field select {
    text-align: center;
    width: 100%;
  }

  /* Centering badges and confirmation */
  .sy-step-badge {
    margin: 0 auto 16px auto !important;
  }

  .sy-bot-confirm {
    justify-content: center;
    width: 100%;
  }

  /* Centering hotspot bar at top of form */
  .sy-form-hotspot-bar {
    justify-content: center;
    width: 100%;
  }

  #menuButton {
    position: absolute;
    /*left: 50%;
    transform: translate(-50%);*/
    right: 8px;
  }
}

/* ── Step 2: Registration form ──────────────── */

.sy-pass-form-view {
  animation: syCardIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Mini hotspot bar at the top of the form */
.sy-form-hotspot-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
}

.sy-form-hotspot-img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.sy-form-hotspot-meta {
  flex: 1;
  min-width: 0;
}

.sy-form-hotspot-meta span {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sy-form-hotspot-meta small {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.sy-change-location-btn {
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
  backdrop-filter: blur(8px);
}

.sy-change-location-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Form hero text */
.sy-form-hero {
  margin-bottom: 32px;
}

.sy-selection-title,
.sy-form-title {
  font-size: clamp(34px, 10vw, 52px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 10px;
}

.sy-form-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.5;
}

/* Premium form fields */
.sy-premium-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sy-pf-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sy-pf-field label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.sy-pf-field input,
.sy-pf-field select {
  height: 64px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(10px);
  appearance: none;
  /* remove default arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
}

.altcha-checkbox input {
  border: 1px solid currentColor;
  border-radius: 2px;
}

.sy-pf-field select option {
  background-color: #0f0a14;
  color: #fff;
}

.sy-pf-field input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.sy-pf-field input:focus,
.sy-pf-field select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.sy-pf-field input:valid:not(:placeholder-shown),
.sy-pf-field select:valid:not([value=""]) {
  border-color: rgba(213, 45, 116, 0.5);
}

/* Bot confirmation */
.sy-bot-confirm {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  user-select: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.sy-bot-confirm:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.sy-bot-checkbox-wrap {
  position: relative;
  flex-shrink: 0;
}

.sy-bot-checkbox-wrap input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.sy-bot-checkbox-ui {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.sy-bot-checkbox-ui svg {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sy-bot-checkbox-wrap input:checked~.sy-bot-checkbox-ui {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(213, 45, 116, 0.4);
}

.sy-bot-checkbox-wrap input:checked~.sy-bot-checkbox-ui svg {
  opacity: 1;
  transform: scale(1);
}

.sy-bot-text span {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.sy-bot-text small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
  display: block;
}

/* Activate button */
.sy-activate-btn {
  height: 64px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border: none;
  border-radius: 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(213, 45, 116, 0.4);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
  margin-top: 4px;
}

.sy-activate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(213, 45, 116, 0.55);
}

.sy-activate-btn:active {
  transform: scale(0.97);
}

.sy-activate-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.sy-pf-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.sy-demo-link {
  display: block;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sy-demo-link:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ── Step 3: Live pass view ─────────────────── */

.sy-live-view {
  animation: syCardIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sy-live-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sy-live-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: livePulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes livePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
}

.sy-live-header span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #22c55e;
  flex: 1;
}

.sy-live-timer {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.sy-live-hotspot-info {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.sy-live-hotspot-info strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.sy-live-hotspot-info span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* Profile card */
.sy-live-profile {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(213, 45, 116, 0.07);
  border: 1px solid rgba(213, 45, 116, 0.25);
  border-radius: 20px;
}

.sy-live-profile-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(213, 45, 116, 0.35);
}

.sy-live-profile-name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.sy-live-profile-tags {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.sy-live-profile-feature {
  font-size: 13px;
  color: var(--accent-2);
  font-weight: 600;
}

/* Who else section */
.sy-alone-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
}

.sy-alone-msg p {
  font-size: 14px;
  line-height: 1.6;
}

.sy-user-feature {
  font-size: 11px;
  color: var(--accent-2) !important;
  font-weight: 600;
}

/* End pass button */
.sy-end-btn {
  height: 52px;
  width: 100%;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.sy-end-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.sy-selection-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px 0;
  margin-top: 8px;
  animation: syFadeIn 0.3s ease-out;
}

.sy-pagination-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
}

.sy-pagination-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.sy-pagination-btn:active:not(:disabled) {
  transform: scale(0.94);
}

.sy-pagination-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.sy-pagination-info {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  min-width: 80px;
  text-align: center;
}

.sy-pagination-info strong {
  color: #fff;
}

/* Centered 3-Column Footer Override */
.sy-footer-shell {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 32px !important;
  text-align: center !important;
}

.sy-footer-brand {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
}

.sy-footer-brand strong {
  display: block !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  letter-spacing: 0.2em !important;
}

.sy-footer-links {
  display: grid !important;
  gap: 32px !important;
  width: 100% !important;
  grid-template-columns: repeat(1, 1fr) !important;
}

@media (min-width: 601px) {
  .sy-footer-links {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .sy-hero {
    padding-top: 20px /* //scrollingheader */;
  }

  #selectionList.sy-selection-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-height: none;
  }
}

.sy-footer-col {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 12px !important;
}

.sy-footer-col a,
.sy-footer-link,
.sy-footer-col p {
  width: 100% !important;
  text-align: center !important;
}

.sy-footer-copy {
  text-align: center !important;
  margin-top: 10px !important;
}