* { box-sizing: border-box; }

:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --cyan: #06b6d4;
  --slate: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #f8fafc;
}

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  color: var(--slate);
  background: white;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 32px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-title { color: var(--cyan); font-weight: 950; font-size: 24px; }
.brand-subtitle { color: var(--orange); font-size: 12px; font-weight: 700; margin-top: 4px; }

.nav { display: flex; gap: 8px; }
.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #475569;
  font-weight: 700;
  font-size: 14px;
}
.nav a.active, .nav a:hover { color: white; background: var(--slate); }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 13px 20px;
  border: 0;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary { background: white; color: var(--slate); border: 1px solid var(--line); }

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7ed, #ffffff 45%, #ecfeff);
}

.blur {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.35;
}
.blur-orange { left: -100px; top: 120px; background: var(--orange); }
.blur-cyan { right: -120px; bottom: 80px; background: var(--cyan); }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding: 90px 0;
}

.eyebrow {
  margin: 0;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 950;
}

h1 {
  margin: 18px 0 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.lead {
  margin-top: 24px;
  font-size: 21px;
  line-height: 1.6;
  color: var(--muted);
}

.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.stats div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.stats strong { display: block; font-size: 28px; }
.stats span { display: block; color: var(--muted); font-size: 14px; margin-top: 4px; }

.phone-card {
  padding: 16px;
  border-radius: 34px;
  background: var(--slate);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.25);
}

.screen { padding: 22px; border-radius: 28px; background: white; }

.screen-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.logo-small { display: block; color: var(--cyan); }

.screen-top span, .screen-top em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.screen-top em {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  font-weight: 700;
}

.game-list { display: grid; gap: 14px; }

.game {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 22px;
  border-radius: 22px;
  color: white;
}

.game h3 { margin: 0; font-size: 22px; }
.game p { margin: 6px 0 0; opacity: 0.88; }

.game a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: white;
  color: var(--slate);
  font-weight: 900;
  font-size: 14px;
}

.game-dark { background: #0f172a; }
.game-cyan { background: #0891b2; }
.game-orange { background: #f97316; }

.screen-caption {
  text-align: center;
  color: var(--muted);
  font-weight: 700;
  margin: 20px 0 0;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0;
}

.section-title {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-title h2, .dark-section h2, .contact h2 {
  margin: 14px 0 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-title p:not(.eyebrow), .contact p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cards.four { grid-template-columns: repeat(4, 1fr); }

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: 0 15px 50px rgba(15, 23, 42, 0.06);
}

.card span {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #fff7ed;
  font-size: 24px;
}

.card h3 { margin: 20px 0 0; font-size: 21px; }
.card p { color: var(--muted); line-height: 1.6; }

.game-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.big-game-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border-radius: 30px;
  color: white;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.12);
}

.big-game-card p {
  margin: 0 0 10px;
  opacity: 0.82;
  font-weight: 800;
}

.big-game-card h3 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.big-game-card span {
  margin-top: 14px;
  line-height: 1.55;
  opacity: 0.9;
}

.sports { padding-top: 20px; }

.sport-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.sport-grid span {
  padding: 12px 18px;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid var(--line);
  font-weight: 800;
  color: #334155;
}

.dark-section {
  background: var(--slate);
  color: white;
  padding: 90px 0;
}

.dark-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 60px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  font-weight: 800;
}

.steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 999px;
  background: var(--orange);
}

.contact {
  background: var(--bg);
  padding: 90px 0;
}

.contact-box {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 50px;
  align-items: start;
  padding: 46px;
  border-radius: 34px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 20px 70px rgba(15, 23, 42, 0.06);
}

form { display: grid; gap: 12px; }

input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  background: white;
}

textarea { min-height: 120px; resize: vertical; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer strong { color: var(--cyan); }

@media (max-width: 900px) {
  .site-header { flex-wrap: wrap; padding: 16px 20px; }
  .nav { order: 3; width: 100%; overflow-x: auto; }
  .hero-grid, .dark-grid, .contact-box { grid-template-columns: 1fr; }
  .stats, .cards, .cards.four, .game-cards { grid-template-columns: 1fr; }
  .hero-grid { padding: 60px 0; }
  .footer { flex-direction: column; }
}

/* Fusion vitrine + connexion */
.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-grid-with-login {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
}

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

.hero-grid-with-login {
  grid-template-columns: minmax(0, 1fr);
}

.login-card {
  position: relative;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
  overflow: hidden;
}

.login-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -70px;
  top: -70px;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.15);
}

.login-card h2 {
  position: relative;
  margin: 12px 0 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.login-intro {
  position: relative;
  color: var(--muted);
  line-height: 1.55;
  margin: 14px 0 20px;
}

.message {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fdecea;
  border: 1px solid #f5b5b5;
  color: #b3261e;
  font-weight: 700;
  line-height: 1.4;
}

.login-form label {
  display: block;
  margin: 4px 0 -4px;
  font-weight: 800;
  color: #334155;
  font-size: 14px;
}

.login-form input {
  border-radius: 14px;
}

.login-form input:focus,
.contact input:focus,
.contact textarea:focus,
.contact select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.14);
}

.login-submit {
  width: 100%;
  margin-top: 8px;
}

.login-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 800;
}

.login-links a:first-child { color: var(--orange-dark); }
.login-links a:last-child { color: #0891b2; }
.login-links a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .header-actions { width: 100%; }
  .header-actions .btn { flex: 1; }
  .hero-grid-with-login { grid-template-columns: 1fr; }
  .login-card { order: -1; }
}

@media (max-width: 520px) {
  .container,
  .section {
    width: min(100% - 24px, 1180px);
  }

  .site-header { gap: 12px; }
  .brand-title { font-size: 21px; }
  .btn { padding: 12px 15px; }
  .login-card { padding: 22px; border-radius: 24px; }
  .stats { grid-template-columns: 1fr; }
  .stats.stats--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Landing PlayNco 2026 */
:root {
  --pn-ink: #102033;
  --pn-muted: #5d6f82;
  --pn-soft: #f3f8f7;
  --pn-line: #dce8e6;
  --pn-green: #18a46f;
  --pn-green-dark: #0d7d55;
  --pn-blue: #147ad6;
  --pn-blue-dark: #0d4f95;
  --pn-card: #ffffff;
  --pn-shadow: 0 20px 60px rgba(16, 32, 51, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--pn-ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(24, 164, 111, 0.10), transparent 32%),
    radial-gradient(circle at 92% 8%, rgba(20, 122, 214, 0.10), transparent 28%),
    linear-gradient(180deg, #f8fcfb 0%, #ffffff 46%, #f5fbfa 100%);
  font-family: 'Nunito', sans-serif;
}

.container,
.section {
  width: min(1120px, calc(100% - 40px));
}

.site-header {
  padding: 14px clamp(18px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(220, 232, 230, 0.86);
  box-shadow: 0 8px 30px rgba(16, 32, 51, 0.05);
}

.brand {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pn-green), var(--pn-blue));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 26px rgba(20, 122, 214, 0.18);
}

.brand-title {
  display: block;
  color: var(--pn-ink);
  font-size: 1.25rem;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-subtitle {
  display: block;
  margin-top: 2px;
  color: var(--pn-muted);
  font-size: 0.76rem;
  font-weight: 750;
}

.nav {
  gap: 4px;
}

.nav a {
  color: #405366;
  border-radius: 10px;
  font-size: 1.08rem;
  font-weight: 850;
}

.nav a.active,
.nav a:hover {
  color: var(--pn-blue-dark);
  background: rgba(20, 122, 214, 0.08);
}

.btn {
  min-height: 46px;
  border-radius: 12px;
  padding: 0 18px;
  box-shadow: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--pn-green), var(--pn-blue));
  color: #fff;
  box-shadow: 0 14px 30px rgba(20, 122, 214, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--pn-green-dark), var(--pn-blue-dark));
}

.btn-secondary {
  background: #fff;
  border: 1px solid var(--pn-line);
  color: var(--pn-ink);
}

.hero {
  background: transparent;
}

.hero-grid {
  min-height: calc(100dvh - 76px);
  padding: clamp(42px, 8vw, 96px) 0;
  gap: clamp(28px, 5vw, 70px);
}

.hero-grid-with-login {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 420px);
}

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

.eyebrow {
  color: var(--pn-green-dark);
  letter-spacing: 0.10em;
  font-size: 0.78rem;
}

h1 {
  max-width: 12ch;
  margin: 16px 0 0;
  color: var(--pn-ink);
  font-size: clamp(2.75rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 670px;
  margin: 24px 0 0;
  color: var(--pn-muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.62;
}

.actions {
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row a,
.trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(24, 164, 111, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #315064;
  font-size: 0.9rem;
  font-weight: 800;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.trust-row a:hover {
  transform: translateY(-1px);
}

.trust-row a.is-active {
  border-color: rgba(255, 122, 60, 0.42);
  background: linear-gradient(135deg, var(--pn-orange), var(--pn-gold));
  color: var(--pn-ink);
}

.login-card {
  padding: clamp(24px, 3vw, 34px);
  border-radius: 22px;
  border: 1px solid rgba(220, 232, 230, 0.92);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--pn-shadow);
}

.login-card::before {
  display: none;
}

.login-card h2 {
  color: var(--pn-ink);
  letter-spacing: 0;
}

.login-intro {
  color: var(--pn-muted);
}

.message {
  border-radius: 12px;
}

.login-form label {
  color: #2a3f51;
}

input,
textarea,
select {
  border-color: var(--pn-line);
  border-radius: 12px;
  background: #fbfefd;
}

.login-form input:focus,
.contact input:focus,
.contact textarea:focus,
.contact select:focus {
  border-color: var(--pn-blue);
  box-shadow: 0 0 0 4px rgba(20, 122, 214, 0.12);
}

.login-links a:first-child {
  color: var(--pn-green-dark);
}

.login-links a:last-child {
  color: var(--pn-blue-dark);
}

.section {
  padding: clamp(58px, 8vw, 100px) 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-title h2,
.reassurance h2 {
  margin: 12px 0 0;
  color: var(--pn-ink);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cards.cards--six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.card {
  min-height: 235px;
  padding: 28px;
  border-color: var(--pn-line);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(16, 32, 51, 0.07);
}

.card-icon,
.card span.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(24, 164, 111, 0.13), rgba(20, 122, 214, 0.13));
  color: var(--pn-blue-dark);
  font-size: 0.88rem;
  font-weight: 950;
}

.card-head {
  display: grid;
  gap: 16px;
  align-content: start;
}

.card h3 {
  margin: 0;
  color: var(--pn-ink);
  font-size: 1.28rem;
}

.card p {
  margin: 18px 0 0;
  color: var(--pn-muted);
}

.cards.cards--six .card {
  min-height: 0;
  padding: 20px 16px;
}

.cards.cards--six .card h3 {
  font-size: 1rem;
}

.cards.cards--six .card p {
  font-size: 0.95rem;
  line-height: 1.55;
}

.steps-section {
  padding-top: 40px;
}

.steps {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 54px minmax(0, 0.65fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--pn-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 32, 51, 0.05);
}

.steps li::before {
  content: counter(step);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--pn-soft);
  color: var(--pn-green-dark);
  font-weight: 950;
}

.steps strong {
  color: var(--pn-ink);
  font-size: 1.05rem;
}

.steps span {
  color: var(--pn-muted);
  line-height: 1.5;
}

.reassurance {
  padding: 0 0 clamp(58px, 8vw, 96px);
}

.reassurance-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(24, 164, 111, 0.94), rgba(20, 122, 214, 0.92));
  color: #fff;
  box-shadow: 0 24px 70px rgba(20, 122, 214, 0.18);
}

.reassurance h2 {
  margin: 0;
  color: #fff;
}

.reassurance p {
  max-width: 680px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.reassurance .btn-primary {
  background: #fff;
  color: var(--pn-blue-dark);
  box-shadow: none;
}

.footer {
  align-items: center;
  border-color: var(--pn-line);
  background: #fff;
}

.footer strong {
  color: var(--pn-ink);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer a {
  color: var(--pn-muted);
  font-weight: 750;
}

.footer a:hover {
  color: var(--pn-blue-dark);
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
  }

  .nav {
    order: 4;
    width: 100%;
    padding-bottom: 2px;
  }

  .hero-grid-with-login {
    grid-template-columns: 1fr;
  }

  .login-card {
    order: 0;
  }

  h1 {
    max-width: 13ch;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .cards.cards--six {
    grid-template-columns: 1fr;
  }

  .steps li {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .steps li span {
    grid-column: 2;
  }

  .reassurance-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container,
  .section {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    padding: 14px 12px;
  }

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

  .header-actions {
    width: 100%;
  }

  .header-actions .btn {
    flex: 1 1 0;
  }

  .hero-grid {
    min-height: auto;
    padding: 36px 0 58px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.5rem);
  }

  .actions .btn {
    width: 100%;
  }

  .trust-row span {
    flex: 1 1 100%;
    text-align: center;
  }

  .login-card {
    padding: 22px;
  }

  .card {
    min-height: 0;
  }

  .footer {
    padding: 26px 20px;
  }
}

/* PlayNco immersive worlds update */
:root {
  --pn-orange: #ff7a3c;
  --pn-gold: #ffd34a;
  --pn-cyan: #00b8b5;
  --pn-teal: #016f7b;
  --pn-ink: #14313a;
  --pn-muted: #51656b;
  --pn-soft: #fff7e6;
  --pn-line: rgba(1, 111, 123, 0.16);
  --pn-shadow: 0 20px 58px rgba(1, 111, 123, 0.16);
}

body {
  color: var(--pn-ink);
  background:
    radial-gradient(circle at top left, rgba(255, 211, 74, 0.34) 0, rgba(255, 122, 60, 0.20) 24%, transparent 48%),
    radial-gradient(circle at 92% 4%, rgba(0, 184, 181, 0.20), transparent 30%),
    linear-gradient(180deg, #fffaf0 0%, #ffffff 44%, #eefbf9 100%);
}

.site-header {
  background: rgba(255, 255, 255, 0.90);
  border-bottom-color: rgba(1, 111, 123, 0.13);
}

.brand-logo {
  width: 76px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(1, 111, 123, 0.14));
}

.brand-title {
  color: var(--pn-teal);
}

.brand-subtitle {
  color: var(--pn-orange);
}

.nav a.active,
.nav a:hover {
  color: var(--pn-teal);
  background: rgba(0, 184, 181, 0.10);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pn-orange), var(--pn-gold));
  color: var(--pn-ink);
  box-shadow: 0 14px 30px rgba(255, 122, 60, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f1662f, #ffc72e);
}

.btn-secondary {
  border-color: rgba(1, 111, 123, 0.18);
}

.hero {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.34), rgba(255,255,255,0.86)),
    radial-gradient(circle at 12% 18%, rgba(255, 122, 60, 0.16), transparent 28%),
    radial-gradient(circle at 80% 14%, rgba(0, 184, 181, 0.18), transparent 30%);
}

.eyebrow {
  color: var(--pn-teal);
}

h1 {
  max-width: 13ch;
}

.lead {
  color: var(--pn-muted);
}

.trust-row span {
  border-color: rgba(0, 184, 181, 0.20);
  background: rgba(255, 255, 255, 0.78);
  color: var(--pn-teal);
}

.hero-worlds {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 26px;
}

.hero-worlds img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(1, 111, 123, 0.18);
  box-shadow: 0 14px 28px rgba(20, 49, 58, 0.12);
}

.login-card {
  border-color: rgba(1, 111, 123, 0.14);
  box-shadow: 0 22px 56px rgba(1, 111, 123, 0.18);
}

.login-card h2 {
  color: var(--pn-teal);
}

.login-form input:focus,
.contact input:focus,
.contact textarea:focus,
.contact select:focus {
  border-color: var(--pn-cyan);
  box-shadow: 0 0 0 4px rgba(0, 184, 181, 0.14);
}

.login-links a:first-child {
  color: #b8860b;
}

.login-links a:last-child {
  color: var(--pn-teal);
}

.worlds-section {
  padding-top: clamp(42px, 6vw, 76px);
}

.section-title p:not(.eyebrow) {
  color: var(--pn-muted);
  font-size: 1.06rem;
  line-height: 1.6;
}

.showcase-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  gap: 18px;
  align-items: center;
}

.showcase-track {
  position: relative;
  height: clamp(500px, 62vw, 660px);
  overflow: hidden;
  perspective: 1200px;
}

.showcase-slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(72vw, 370px);
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(1, 111, 123, 0.14);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(20, 49, 58, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.7);
  transition: transform 0.46s ease, opacity 0.46s ease, filter 0.46s ease;
  z-index: 1;
  filter: saturate(0.7) brightness(0.78);
}

.showcase-slide.is-visible {
  opacity: 1;
}

.showcase-slide.is-active {
  pointer-events: auto;
  filter: none;
}

.showcase-slide[data-position="0"] {
  transform: translateX(-50%) scale(1);
  z-index: 10;
}

.showcase-slide[data-position="-1"] {
  transform: translateX(calc(-50% - clamp(120px, 18vw, 230px))) scale(0.86) rotateY(7deg);
  z-index: 8;
  opacity: 0.78;
}

.showcase-slide[data-position="1"] {
  transform: translateX(calc(-50% + clamp(120px, 18vw, 230px))) scale(0.86) rotateY(-7deg);
  z-index: 8;
  opacity: 0.78;
}

.showcase-slide[data-position="-2"] {
  transform: translateX(calc(-50% - clamp(220px, 31vw, 390px))) scale(0.72) rotateY(12deg);
  z-index: 6;
  opacity: 0.48;
}

.showcase-slide[data-position="2"] {
  transform: translateX(calc(-50% + clamp(220px, 31vw, 390px))) scale(0.72) rotateY(-12deg);
  z-index: 6;
  opacity: 0.48;
}

.showcase-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #f7fbfa;
}

.showcase-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 72px 22px 22px;
  background: linear-gradient(180deg, transparent, rgba(20, 49, 58, 0.88));
  color: #fff;
}

.showcase-caption h3 {
  margin: 0;
  color: #fff;
  font-size: 1.26rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.showcase-caption p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}

.showcase-arrow {
  position: relative;
  z-index: 20;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(1, 111, 123, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--pn-teal);
  font-size: 2rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(20, 49, 58, 0.10);
}

.showcase-arrow:hover {
  background: var(--pn-teal);
  color: #fff;
}

.card {
  border-color: rgba(1, 111, 123, 0.14);
}

.pricing-section {
  padding-top: clamp(42px, 6vw, 78px);
}

.pricing-block {
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
  padding: clamp(16px, 2.4vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 30px;
  background:
    radial-gradient(circle at 9% 0%, rgba(255, 211, 74, 0.38), transparent 30%),
    radial-gradient(circle at 92% 5%, rgba(0, 184, 181, 0.30), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 251, 249, 0.92));
  box-shadow: 0 30px 90px rgba(1, 111, 123, 0.18);
}

.pricing-block::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(1, 111, 123, 0.08);
  border-radius: 24px;
  pointer-events: none;
}

.pricing-mini-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex: 0 0 auto;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff;
  color: var(--pn-teal);
  font-weight: 900;
  font-size: 0.82rem;
  box-shadow: 0 10px 24px rgba(20, 49, 58, 0.08);
}

.pricing-toggle {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.70);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(20, 49, 58, 0.10);
}

.pricing-toggle__btn {
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--pn-muted);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
}

.pricing-toggle__btn.is-active {
  background: linear-gradient(135deg, var(--pn-orange), var(--pn-gold));
  color: var(--pn-ink);
  box-shadow: 0 8px 18px rgba(255, 122, 60, 0.16);
}

.pricing-toggle__btn:focus-visible {
  outline: 3px solid rgba(0, 184, 181, 0.28);
  outline-offset: 2px;
}

.pricing-promise {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 12px 15px;
  border: 1px solid rgba(1, 111, 123, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.pricing-promise strong {
  color: var(--pn-teal);
  font-size: clamp(1.05rem, 2vw, 1.38rem);
}

.pricing-duration {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.68rem;
  margin: 0 0.12rem;
  border: 2px solid var(--pn-orange);
  border-radius: 999px;
  background: #fff7e8;
  color: var(--pn-ink);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.pricing-promise span {
  color: var(--pn-muted);
  line-height: 1.5;
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.pricing-grid[hidden] {
  display: none !important;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-content: start;
  height: 100%;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(1, 111, 123, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(20, 49, 58, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--pn-cyan), var(--pn-teal));
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 62px rgba(20, 49, 58, 0.15);
}

.pricing-card--highlight {
  border-color: rgba(255, 122, 60, 0.50);
  background:
    linear-gradient(180deg, rgba(255, 247, 230, 0.98), rgba(255, 255, 255, 0.96));
  box-shadow: 0 28px 76px rgba(255, 122, 60, 0.24);
  transform: scale(1.025);
}

.pricing-card--highlight .pricing-ribbon {
  position: static;
  align-self: center;
  margin-bottom: 0;
}

.pricing-card--highlight .pricing-card__top {
  padding-right: 0;
}

.pricing-card--highlight::before {
  height: 10px;
  background: linear-gradient(90deg, var(--pn-orange), var(--pn-gold));
}

.pricing-card--highlight:hover {
  transform: translateY(-4px) scale(1.025);
}

.pricing-card--elite::before {
  height: 10px;
  background: linear-gradient(90deg, #14313a, var(--pn-orange), var(--pn-gold));
}

.pricing-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--pn-ink);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
}

.pricing-card__top {
  display: grid;
  gap: 6px;
  padding-right: 70px;
}

.pricing-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.pricing-card__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(0, 184, 181, 0.16), rgba(255, 211, 74, 0.26));
  color: var(--pn-teal);
  font-weight: 950;
}

.pricing-card h4 {
  margin: 0;
  color: var(--pn-teal);
  font-size: 1.42rem;
  line-height: 1;
}

.pricing-card p {
  min-height: 42px;
  margin: 0;
  color: var(--pn-muted);
  line-height: 1.45;
}

.pricing-from {
  display: grid;
  gap: 2px;
  padding: 13px 15px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 211, 74, 0.34), transparent 40%),
    linear-gradient(135deg, rgba(0, 184, 181, 0.12), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(1, 111, 123, 0.10);
}

.pricing-from span {
  color: var(--pn-teal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-from strong {
  color: var(--pn-ink);
  font-size: clamp(1.85rem, 3.3vw, 2.55rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.pricing-old-price {
  color: var(--pn-muted);
  font-size: 1rem;
  font-style: normal;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  opacity: 0.9;
}

.pricing-from small {
  color: var(--pn-teal);
  font-size: 0.82rem;
  font-weight: 800;
}

.pricing-card ul {
  display: grid;
  gap: 4px;
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(1, 111, 123, 0.10);
}

.pricing-card li strong {
  flex: 0 0 auto;
  color: var(--pn-ink);
  font-size: 1rem;
}

.pricing-card li span {
  color: var(--pn-muted);
  font-size: 0.84rem;
  line-height: 1.3;
  text-align: right;
}

.pricing-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pn-orange), var(--pn-gold));
  color: var(--pn-ink);
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(255, 122, 60, 0.18);
}

.pricing-card:not(.pricing-card--highlight) .pricing-cta {
  background: #fff;
  border: 1px solid rgba(1, 111, 123, 0.16);
  color: var(--pn-teal);
  box-shadow: none;
}

.pricing-card--elite .pricing-cta {
  background: linear-gradient(135deg, var(--pn-orange), var(--pn-gold));
  color: var(--pn-ink);
  border: 0;
  box-shadow: 0 14px 30px rgba(255, 122, 60, 0.20);
}

.pricing-cta:hover {
  transform: translateY(-1px);
}

.player-club-block {
  justify-items: start;
}

.player-club-cta {
  position: relative;
  z-index: 1;
}

.card-icon,
.card span.card-icon {
  background: linear-gradient(135deg, rgba(255, 122, 60, 0.16), rgba(0, 184, 181, 0.14));
  color: var(--pn-teal);
}

.steps li::before {
  background: linear-gradient(135deg, var(--pn-orange), var(--pn-gold));
  color: var(--pn-ink);
}

.reassurance-box {
  background: radial-gradient(circle at top left, var(--pn-gold), var(--pn-orange) 34%, var(--pn-cyan) 76%, var(--pn-teal));
}

.reassurance .btn-primary {
  color: var(--pn-teal);
}

.footer strong {
  color: var(--pn-teal);
}

.footer a:hover {
  color: var(--pn-teal);
}

@media (max-width: 980px) {
  .showcase-carousel {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-promise {
    grid-template-columns: 1fr;
  }

  .pricing-card--highlight {
    transform: none;
  }

  .pricing-card--highlight:hover {
    transform: translateY(-4px);
  }

  .pricing-card p {
    min-height: 0;
  }

  .showcase-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .showcase-arrow--prev {
    left: 8px;
  }

  .showcase-arrow--next {
    right: 8px;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: sticky;
    top: 0;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }

  .site-header .nav {
    display: none;
  }

  .site-header .brand {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .site-header .header-actions {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
  }

  .site-header .header-actions .btn {
    width: auto;
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .brand-logo {
    width: 48px;
  }

  .hero-worlds {
    grid-template-columns: 1fr;
  }

  .showcase-track {
    height: 500px;
  }

  .showcase-caption {
    padding: 64px 18px 18px;
  }

  .showcase-caption p {
    font-size: 0.92rem;
  }

  .pricing-toggle {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-toggle__btn {
    min-height: 42px;
    padding-inline: 8px;
    font-size: 0.82rem;
  }

  .pricing-grid {
    grid-auto-flow: column;
    grid-auto-columns: minmax(84%, 84%);
    grid-template-columns: none;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-card {
    padding: 16px;
    min-width: 0;
    scroll-snap-align: start;
  }

  .pricing-card__top {
    padding-right: 0;
  }

  .pricing-ribbon {
    position: static;
    width: fit-content;
    order: -1;
  }

  .pricing-card li {
    display: grid;
    gap: 2px;
  }

  .pricing-card li span {
    text-align: left;
  }
}

.login-page-main {
  min-height: calc(100dvh - 78px);
  display: grid;
  place-items: center;
  width: min(100% - 32px, 460px);
  margin: 0 auto;
  padding: clamp(36px, 8vw, 82px) 0;
}

.login-page .login-card {
  width: 100%;
}

.login-page .login-card h1 {
  max-width: none;
  margin: 12px 0 0;
  color: var(--pn-teal);
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1;
}

.login-page .site-header .nav {
  display: none;
}

@media (min-width: 901px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

.hero-grid,
.hero-grid-with-login {
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.74fr) !important;
  align-items: start;
  align-content: center;
}

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

.hero-showcase {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 14px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.38)),
    radial-gradient(circle at 20% 0%, rgba(255, 211, 74, 0.26), transparent 40%),
    radial-gradient(circle at 90% 24%, rgba(0, 184, 181, 0.22), transparent 38%);
  border: 1px solid rgba(1, 111, 123, 0.14);
  box-shadow: 0 28px 70px rgba(20, 49, 58, 0.16);
}

.hero-showcase img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: clamp(118px, 12vw, 170px);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(20, 49, 58, 0.15);
}

.hero-showcase__main {
  aspect-ratio: auto;
}

.hero-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.hero-showcase__grid img {
  aspect-ratio: auto;
}

.hero-showcase__caption {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(20, 49, 58, 0.86);
  color: #fff;
}

.hero-showcase__caption strong {
  font-size: 1rem;
}

.hero-showcase__caption span {
  color: rgba(255,255,255,0.78);
  line-height: 1.45;
}

@media (max-width: 980px) {
  .hero-grid,
  .hero-grid-with-login {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .hero-showcase {
    max-width: 720px;
  }
}

/* PlayNco shared design alignment */
:root {
  --logo-orange: #df8b2f;
  --logo-orange-bright: #f6642a;
  --logo-burgundy: #8f2852;
  --logo-teal: #4d8d91;
  --logo-turquoise: #0db3af;
  --logo-mint: #56bc93;
  --logo-indigo: #312565;
  --logo-blue: #28578f;
  --logo-sky: #95d4e0;
  --pn-orange: var(--logo-orange);
  --pn-gold: var(--logo-orange-bright);
  --pn-cyan: var(--logo-turquoise);
  --pn-teal: var(--logo-blue);
  --pn-ink: #234b72;
  --pn-muted: #64879b;
  --pn-soft: rgba(255, 255, 255, 0.72);
  --pn-line: rgba(40, 87, 143, 0.16);
  --pn-shadow: 0 20px 58px rgba(40, 87, 143, 0.16);
}

body {
  color: var(--pn-ink);
  background:
    radial-gradient(120% 120% at 8% 12%, rgba(223, 139, 47, 0.80) 0, rgba(223, 139, 47, 0.42) 18%, rgba(223, 139, 47, 0) 44%),
    radial-gradient(110% 100% at 34% 0%, rgba(246, 100, 42, 0.72) 0, rgba(246, 100, 42, 0.32) 18%, rgba(246, 100, 42, 0) 46%),
    radial-gradient(105% 110% at 88% 10%, rgba(143, 40, 82, 0.70) 0, rgba(143, 40, 82, 0.30) 20%, rgba(143, 40, 82, 0) 48%),
    radial-gradient(100% 120% at 12% 54%, rgba(77, 141, 145, 0.72) 0, rgba(77, 141, 145, 0.28) 20%, rgba(77, 141, 145, 0) 48%),
    radial-gradient(95% 110% at 50% 42%, rgba(13, 179, 175, 0.76) 0, rgba(13, 179, 175, 0.34) 16%, rgba(13, 179, 175, 0) 42%),
    radial-gradient(105% 110% at 86% 50%, rgba(86, 188, 147, 0.72) 0, rgba(86, 188, 147, 0.30) 18%, rgba(86, 188, 147, 0) 46%),
    radial-gradient(120% 120% at 12% 92%, rgba(49, 37, 101, 0.68) 0, rgba(49, 37, 101, 0.26) 18%, rgba(49, 37, 101, 0) 46%),
    radial-gradient(100% 110% at 52% 100%, rgba(40, 87, 143, 0.80) 0, rgba(40, 87, 143, 0.34) 18%, rgba(40, 87, 143, 0) 48%),
    radial-gradient(110% 110% at 92% 88%, rgba(149, 212, 224, 0.90) 0, rgba(149, 212, 224, 0.40) 18%, rgba(149, 212, 224, 0) 46%),
    linear-gradient(135deg, #eed9c5 0%, #d9ece7 20%, #d7e4f1 44%, #e7d9e3 68%, #dff2f7 100%);
}

.site-header {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(40, 87, 143, 0.14);
}

.brand-logo {
  width: 76px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(40, 87, 143, 0.16));
}

.btn-primary {
  background: linear-gradient(135deg, var(--logo-orange), var(--logo-orange-bright));
  color: #fff;
  box-shadow: 0 14px 30px rgba(223, 139, 47, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #c87d26, #ee5722);
}

.header-actions .label-short {
  display: none;
}

.mobile-nav-menu {
  display: none;
  position: relative;
}

.mobile-nav-summary {
  list-style: none;
}

.mobile-nav-summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-summary::marker {
  content: "";
}

.mobile-nav-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  gap: 8px;
  width: min(280px, calc(100vw - 24px));
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 251, 0.96));
  border: 1px solid rgba(40, 87, 143, 0.14);
  box-shadow: 0 24px 60px rgba(40, 87, 143, 0.18);
  z-index: 12;
}

.mobile-nav-panel a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(40, 87, 143, 0.10);
  color: var(--logo-blue);
  font-size: 0.96rem;
  font-weight: 800;
}

.mobile-nav-menu[open] .mobile-nav-summary {
  background: rgba(149, 212, 224, 0.24);
  color: var(--logo-blue);
}

/* Defensive cleanup for legacy cached mobile drawer markup. */
.header-menu-toggle,
.mobile-menu,
.mobile-menu-backdrop {
  display: none !important;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--logo-blue), var(--logo-teal));
  border-color: transparent;
  color: #fff;
}

.nav a.active,
.nav a:hover {
  color: var(--logo-blue);
  background: rgba(149, 212, 224, 0.20);
}

.eyebrow {
  color: var(--logo-burgundy);
}

.trust-row a,
.trust-row span {
  border-color: rgba(40, 87, 143, 0.16);
  background: rgba(255, 255, 255, 0.78);
  color: var(--logo-blue);
}

.trust-row a.is-active {
  border-color: rgba(223, 139, 47, 0.36);
  background: linear-gradient(135deg, var(--logo-orange), var(--logo-orange-bright));
  color: #fff;
}

.login-card {
  border-color: rgba(40, 87, 143, 0.14);
  box-shadow: 0 22px 56px rgba(40, 87, 143, 0.18);
}

.login-card h1,
.login-card h2,
.login-page .login-card h1 {
  color: var(--logo-blue);
}

.login-form input:focus,
.contact input:focus,
.contact textarea:focus,
.contact select:focus {
  border-color: var(--logo-turquoise);
  box-shadow: 0 0 0 4px rgba(13, 179, 175, 0.14);
}

.message {
  background: rgba(143, 40, 82, 0.10);
  border: 1px solid rgba(143, 40, 82, 0.20);
  color: var(--logo-burgundy);
}

.login-links a:first-child {
  color: var(--logo-orange);
}

.login-links a:last-child {
  color: var(--logo-blue);
}

.hero-showcase {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.38)),
    radial-gradient(circle at 20% 0%, rgba(223, 139, 47, 0.22), transparent 40%),
    radial-gradient(circle at 90% 24%, rgba(149, 212, 224, 0.22), transparent 38%);
  border: 1px solid rgba(40, 87, 143, 0.14);
  box-shadow: 0 28px 70px rgba(40, 87, 143, 0.16);
}

.showcase-slide {
  border: 1px solid rgba(40, 87, 143, 0.14);
  box-shadow: 0 22px 58px rgba(40, 87, 143, 0.18);
}

.showcase-arrow {
  border: 1px solid rgba(40, 87, 143, 0.16);
  color: var(--logo-blue);
}

.showcase-arrow:hover {
  background: var(--logo-blue);
  color: #fff;
}

.card-icon,
.card span.card-icon {
  background: linear-gradient(135deg, rgba(223, 139, 47, 0.16), rgba(149, 212, 224, 0.20));
  color: var(--logo-blue);
}

.steps li::before {
  background: linear-gradient(135deg, var(--logo-orange), var(--logo-orange-bright));
  color: #fff;
}

.reassurance-box {
  background: radial-gradient(circle at top left, var(--logo-orange), var(--logo-orange-bright) 28%, var(--logo-turquoise) 62%, var(--logo-blue));
}

.reassurance .btn-primary {
  background: #fff;
  color: var(--logo-blue);
}

.pricing-toggle__btn.is-active,
.pricing-cta,
.pricing-card--elite .pricing-cta {
  background: linear-gradient(135deg, var(--logo-orange), var(--logo-orange-bright));
  color: #fff;
}

.pricing-card:not(.pricing-card--highlight) .pricing-cta {
  background: linear-gradient(135deg, var(--logo-blue), var(--logo-teal));
  border: 0;
  color: #fff;
}

.footer strong,
.footer a:hover {
  color: var(--logo-blue);
}

/* PlayNco charter pass */
body {
  font-family: 'Nunito', sans-serif;
}

.hero,
.contact {
  background: transparent;
}

.site-header {
  gap: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(255, 255, 255, 0.82);
  border-bottom-color: rgba(40, 87, 143, 0.12);
  backdrop-filter: blur(18px);
  overflow: visible;
}

.nav a {
  padding: 9px 14px;
  font-size: 17px;
  font-weight: 800;
}

.header-actions .btn {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 15px;
  line-height: 1;
}

.brand {
  display: block;
  flex: 0 0 96px;
  width: 96px;
  height: 14px;
  position: relative;
  overflow: visible;
  z-index: 2;
  padding: 2px 0 0 10px;
}

.brand-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(108px, 9vw, 132px);
  transform: translate(-14px, -18px);
  filter: drop-shadow(0 14px 26px rgba(40, 87, 143, 0.18));
}

.hero-showcase,
.login-card,
.contact-box,
.card,
.pricing-block,
.pricing-card,
.showcase-slide {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 252, 252, 0.82));
  border: 1px solid rgba(40, 87, 143, 0.12);
  box-shadow: 0 24px 60px rgba(40, 87, 143, 0.14);
  backdrop-filter: blur(14px);
}

.hero-showcase {
  padding: 16px;
}

.hero-showcase__caption {
  background: rgba(35, 75, 114, 0.88);
}

.showcase-arrow {
  background: rgba(255, 255, 255, 0.84);
}

.contact-box,
.pricing-block {
  box-shadow: 0 28px 72px rgba(40, 87, 143, 0.16);
}

.card span,
.card-icon,
.card span.card-icon,
.pricing-card__icon {
  background: linear-gradient(135deg, rgba(223, 139, 47, 0.18), rgba(13, 179, 175, 0.18));
  color: var(--logo-blue);
}

.trust-row a,
.trust-row span {
  background: rgba(255, 255, 255, 0.82);
}

.trust-row a:hover {
  background: rgba(149, 212, 224, 0.24);
  color: var(--logo-blue);
}

.login-form input,
.contact input,
.contact textarea,
.contact select {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(40, 87, 143, 0.16);
}

.pricing-card--highlight {
  background: linear-gradient(180deg, rgba(255, 248, 239, 0.96), rgba(255, 255, 255, 0.9));
  box-shadow: 0 30px 78px rgba(223, 139, 47, 0.18);
}

.footer {
  border-top-color: rgba(40, 87, 143, 0.12);
  background: rgba(255, 255, 255, 0.24);
}

@media (max-width: 900px) {
  .site-header {
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
    justify-content: flex-start;
  }

  .brand {
    flex-basis: 72px;
    width: 72px;
    height: 10px;
    padding-left: 4px;
  }

  .brand-logo {
    width: 86px;
    transform: translate(-10px, -15px);
  }

  .site-header .nav {
    display: none;
  }

  .site-header .header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .site-header .header-actions .btn {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.9rem;
    line-height: 1;
  }

  .site-header .header-login-btn {
    display: none;
  }

  .mobile-nav-menu {
    display: block;
  }
}

/* index2 club focus */
.stats--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats small {
  display: block;
  margin-top: 10px;
  color: var(--pn-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-note {
  max-width: 720px;
  margin: 24px 0 0;
  color: #35526a;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 700;
}

.contact-section {
  padding-top: 24px;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
}

.contact-copy h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.contact-copy p {
  color: var(--pn-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.contact-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-checklist span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(40, 87, 143, 0.14);
  color: #35526a;
  font-size: 0.94rem;
  font-weight: 800;
}

.contact-vision {
  margin-top: 24px;
  font-weight: 800;
}

.contact-panel {
  padding: clamp(22px, 4vw, 32px);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 252, 252, 0.84));
  border: 1px solid rgba(40, 87, 143, 0.12);
  box-shadow: 0 24px 60px rgba(40, 87, 143, 0.14);
  backdrop-filter: blur(14px);
}

.form-message {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.form-message--success {
  color: #0f5e4d;
  background: rgba(13, 179, 175, 0.12);
  border: 1px solid rgba(13, 179, 175, 0.2);
}

.form-message--error {
  color: #8d3556;
  background: rgba(143, 40, 82, 0.12);
  border: 1px solid rgba(143, 40, 82, 0.2);
}

.lead-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form span {
  color: #325066;
  font-size: 0.92rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(40, 87, 143, 0.16);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--pn-ink);
  background: rgba(255, 255, 255, 0.94);
}

.lead-form textarea {
  min-height: 132px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--logo-turquoise);
  box-shadow: 0 0 0 4px rgba(13, 179, 175, 0.14);
}

.btn-submit {
  width: 100%;
}

.form-footnote {
  margin: 0;
  color: var(--pn-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 980px) {
  .stats--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 560px) {
  .stats.stats--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .site-header .brand {
    flex-basis: 64px;
    width: 64px;
    height: 24px;
    padding-left: 0;
  }

  .site-header .brand-logo {
    width: 72px;
    transform: translate(-6px, -8px);
  }

  .hero-grid {
    padding: 30px 0 40px;
    gap: 18px;
  }

  .lead {
    margin-top: 18px;
  }

  .actions {
    margin-top: 22px;
  }

  .trust-row {
    margin-top: 20px;
    gap: 8px;
  }

  .hero-showcase {
    padding: 10px;
    gap: 10px;
    border-radius: 20px;
  }

  .hero-showcase img {
    border-radius: 14px;
  }

  .hero-showcase__grid {
    gap: 10px;
  }

  .hero-showcase__caption {
    padding: 10px 12px;
    border-radius: 14px;
  }

  .hero-note {
    font-size: 0.96rem;
  }

  .cards {
    gap: 12px;
  }

  .card {
    padding: 16px;
    border-radius: 16px;
  }

  .card-head {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px 12px;
    align-items: center;
  }

  .card h3 {
    font-size: 1.02rem;
    line-height: 1.12;
  }

  .card-icon,
  .card span.card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 0.8rem;
  }

  .card p {
    margin: 0;
  }

  .steps li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px 12px;
    padding: 16px;
    align-items: start;
  }

  .steps li::before {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .steps strong {
    align-self: center;
  }

  .steps li span {
    grid-column: 1 / -1;
    margin-top: 2px;
  }

  .contact-shell {
    gap: 16px;
  }

  .contact-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .form-message {
    margin-bottom: 12px;
    padding: 12px 14px;
  }

  .lead-form {
    gap: 12px;
  }

  .form-grid {
    gap: 10px;
  }

  .lead-form label {
    gap: 6px;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    padding: 12px 13px;
    border-radius: 12px;
  }

  .lead-form textarea {
    min-height: 116px;
  }
}

/* Badge palette */
.card,
.pricing-card {
  --badge-bg: var(--logo-orange);
  --badge-fg: #fff;
}

.card:nth-child(9n + 1),
.pricing-card:nth-child(9n + 1) {
  --badge-bg: var(--logo-orange);
  --badge-fg: #fff;
}

.card:nth-child(9n + 2),
.pricing-card:nth-child(9n + 2) {
  --badge-bg: var(--logo-orange-bright);
  --badge-fg: #fff;
}

.card:nth-child(9n + 3),
.pricing-card:nth-child(9n + 3) {
  --badge-bg: var(--logo-burgundy);
  --badge-fg: #fff;
}

.card:nth-child(9n + 4),
.pricing-card:nth-child(9n + 4) {
  --badge-bg: var(--logo-teal);
  --badge-fg: #fff;
}

.card:nth-child(9n + 5),
.pricing-card:nth-child(9n + 5) {
  --badge-bg: var(--logo-turquoise);
  --badge-fg: #fff;
}

.card:nth-child(9n + 6),
.pricing-card:nth-child(9n + 6) {
  --badge-bg: var(--logo-mint);
  --badge-fg: #fff;
}

.card:nth-child(9n + 7),
.pricing-card:nth-child(9n + 7) {
  --badge-bg: var(--logo-indigo);
  --badge-fg: #fff;
}

.card:nth-child(9n + 8),
.pricing-card:nth-child(9n + 8) {
  --badge-bg: var(--logo-blue);
  --badge-fg: #fff;
}

.card:nth-child(9n + 9),
.pricing-card:nth-child(9n + 9) {
  --badge-bg: var(--logo-sky);
  --badge-fg: var(--logo-blue);
}

.card-icon,
.card span.card-icon,
.pricing-card__icon {
  background: var(--badge-bg);
  color: var(--badge-fg);
}
