/* ============================================================
   CHOICEPULSEWAY — Exclusive Private Game Lounge
   ============================================================ */

:root {
  --bg: #090806;
  --bg-2: #17120D;
  --surface: #211A13;
  --deep: #2A2017;
  --text: #F5EFE3;
  --muted: #B9AD9A;
  --gold: #D4AF37;
  --gold-bright: #F2D675;
  --gold-deep: #8C6A20;
  --champagne: #E8D3A2;
  --footer-bg: #1E1730;
  --gold-grad: linear-gradient(135deg, #8C6A20, #F2D675 35%, #B88A24 60%, #F2D675);
  --serif: "Playfair Display", "Georgia", serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.21, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Layered luxury background: radial glows + hairline grid + grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 85% -10%, rgba(212, 175, 55, 0.07), transparent 60%),
    radial-gradient(900px 600px at -10% 40%, rgba(140, 106, 32, 0.08), transparent 55%),
    radial-gradient(1000px 800px at 50% 115%, rgba(212, 175, 55, 0.05), transparent 60%),
    var(--bg);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    repeating-linear-gradient(90deg, rgba(212, 175, 55, 0.03) 0 1px, transparent 1px 140px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 3px);
}

img { max-width: 100%; display: block; }

a { color: var(--champagne); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--gold-bright); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.lead { color: var(--muted); font-size: 1.06rem; max-width: 62ch; }

.gold-word {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.section-head { margin-bottom: clamp(36px, 5vw, 64px); }
.section-head .eyebrow { margin-bottom: 16px; }

/* ---------- Decorative separator: double line + diamond ---------- */
.separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(720px, 80%);
  margin: 0 auto;
}

.separator::before,
.separator::after {
  content: "";
  flex: 1;
  height: 3px;
  background:
    linear-gradient(var(--gold-deep), var(--gold-deep)) 0 0 / 100% 1px no-repeat,
    linear-gradient(rgba(212, 175, 55, 0.35), rgba(212, 175, 55, 0.35)) 0 100% / 100% 1px no-repeat;
}

.separator .diamond {
  width: 10px;
  height: 10px;
  background: var(--gold-grad);
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(242, 214, 117, 0.55);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 42px;
  cursor: pointer;
  border: 0;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), filter 0.35s var(--ease);
}

.btn-gold {
  background: var(--gold-grad);
  color: #1B1408;
  box-shadow:
    inset 0 0 0 1px rgba(255, 246, 214, 0.55),
    0 12px 32px -12px rgba(212, 175, 55, 0.45);
}

.btn-gold:hover {
  filter: brightness(1.12);
  transform: translateY(-3px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 246, 214, 0.7),
    0 18px 42px -12px rgba(242, 214, 117, 0.55);
  color: #1B1408;
}

.btn-outline {
  background: rgba(23, 18, 13, 0.55);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.6);
}

.btn-outline:hover {
  box-shadow: inset 0 0 0 1px var(--gold-bright), 0 10px 30px -14px rgba(212, 175, 55, 0.5);
  color: var(--gold-bright);
  transform: translateY(-3px);
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.link-more svg { transition: transform 0.35s var(--ease); }
.link-more:hover svg { transform: translateX(5px); }

/* ---------- Offline membership seal ---------- */
.seal {
  position: relative;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  padding: 18px;
  background: radial-gradient(circle at 32% 28%, #33291A, #17110A 72%);
  box-shadow:
    inset 0 2px 10px rgba(0, 0, 0, 0.7),
    0 0 44px -8px rgba(212, 175, 55, 0.4);
}

.seal::before,
.seal::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.seal::before { inset: 0; border: 2px solid var(--gold); }
.seal::after { inset: 9px; border: 1px solid rgba(232, 211, 162, 0.55); }

.seal .seal-star {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--gold-grad);
}

.seal strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
  text-transform: uppercase;
}

.seal span {
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--champagne);
  line-height: 1.8;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(9, 8, 6, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: background 0.4s var(--ease);
}

.site-header.scrolled { background: rgba(9, 8, 6, 0.92); }

/* thin diagonal gold accent instead of a straight border */
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 7px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.75) 18%, rgba(242, 214, 117, 0.9) 50%, rgba(212, 175, 55, 0.75) 82%, transparent);
  clip-path: polygon(0 6px, 34% 6px, 37% 1px, 63% 1px, 66% 6px, 100% 6px, 100% 7px, 0 7px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.brand { display: flex; align-items: center; gap: 14px; }

.brand img { width: 42px; height: 42px; }

.brand-name {
  font-family: var(--serif);
  font-size: 1.28rem;
  letter-spacing: 0.06em;
  color: var(--text);
}

.brand-name em { font-style: normal; color: var(--gold); }

.main-nav ul {
  display: flex;
  gap: clamp(18px, 3vw, 40px);
  list-style: none;
}

.main-nav a {
  position: relative;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold-grad);
  transition: width 0.35s var(--ease);
}

.main-nav a:hover,
.main-nav a.active { color: var(--gold-bright); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

/* burger — three slanted lines */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.45);
  cursor: pointer;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  transform: skewX(-22deg);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}

.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--footer-bg);
  padding: clamp(90px, 11vw, 150px) 0 40px;
  margin-top: clamp(48px, 7vw, 100px);
  clip-path: polygon(0 clamp(28px, 4vw, 64px), 100% 0, 100% 100%, 0 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}

.footer-brand img { width: 46px; height: 46px; margin-bottom: 16px; }

.footer-brand .brand-name { display: block; margin-bottom: 12px; }

.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 34ch; }

.footer-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-nav ul { list-style: none; display: grid; gap: 12px; }
.footer-nav a { font-size: 0.92rem; color: var(--muted); }
.footer-nav a:hover { color: var(--gold-bright); }

.footer-contacts ul { list-style: none; display: grid; gap: 14px; }

.footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-contacts svg { flex: none; margin-top: 4px; }
.footer-contacts a { color: var(--text); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 28px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(185, 173, 154, 0.7);
}

.footer-bottom .domain { color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  position: relative;
  z-index: 2;
}

/* giant clipped gold circles behind hero */
.hero::before {
  content: "";
  position: absolute;
  top: -22vh;
  right: -14vw;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 0 24px rgba(212, 175, 55, 0.03), 0 0 90px -30px rgba(212, 175, 55, 0.25);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30vh;
  left: -18vw;
  width: 46vw;
  height: 46vw;
  border: 1px solid rgba(232, 211, 162, 0.12);
  border-radius: 50%;
}

.hero-index {
  position: absolute;
  top: 120px;
  left: 4%;
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  color: rgba(212, 175, 55, 0.55);
  writing-mode: vertical-rl;
}

.hero-content .eyebrow { margin-bottom: 22px; }

.hero-content h1 { margin-bottom: 26px; }

.hero-content .lead { margin-bottom: 40px; }

.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

/* vertical gold divider between text and visual */
.hero-divider {
  position: absolute;
  left: 52%;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.6) 30%, rgba(242, 214, 117, 0.8) 50%, rgba(212, 175, 55, 0.6) 70%, transparent);
}

.hero-visual { position: relative; display: flex; justify-content: center; }

/* arch-framed image with double gold frame */
.arch-frame {
  position: relative;
  width: min(400px, 82%);
  padding: 14px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 999px 999px 6px 6px;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.9), 0 0 60px -24px rgba(212, 175, 55, 0.35);
}

.arch-frame::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(232, 211, 162, 0.35);
  border-radius: 999px 999px 4px 4px;
  pointer-events: none;
}

.arch-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 999px 999px 4px 4px;
  background: var(--deep);
}

.hero-visual .seal {
  position: absolute;
  bottom: 4%;
  left: -6%;
  z-index: 3;
}

/* ---------- Intro editorial block with big gold frame ---------- */
.intro-frame {
  position: relative;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
  padding: clamp(44px, 6vw, 80px) clamp(28px, 6vw, 90px);
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: linear-gradient(160deg, rgba(33, 26, 19, 0.85), rgba(23, 18, 13, 0.6));
}

.intro-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(232, 211, 162, 0.25);
  pointer-events: none;
}

.intro-frame::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--bg);
  border: 1px solid var(--gold);
}

.intro-frame h2 { margin: 18px 0 20px; }
.intro-frame .lead { margin-inline: auto; }

/* ---------- Themed atmosphere plaque (slanted corners, thick border) ---------- */
.plaque-wrap {
  clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
  background: var(--gold-grad);
  padding: 3px;
  max-width: 980px;
  margin-inline: auto;
}

.plaque {
  clip-path: polygon(27px 0, 100% 0, 100% calc(100% - 27px), calc(100% - 27px) 100%, 0 100%, 0 27px);
  background:
    radial-gradient(600px 200px at 50% -40%, rgba(212, 175, 55, 0.16), transparent 70%),
    var(--bg-2);
  padding: clamp(36px, 5vw, 60px) clamp(28px, 5vw, 64px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.plaque h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 8px; }
.plaque .plaque-sub {
  color: var(--gold-bright);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.plaque p { color: var(--muted); }
.plaque p strong { color: var(--text); }

.plaque-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px rgba(212, 175, 55, 0.08), 0 0 34px -10px rgba(212, 175, 55, 0.45);
}

/* ---------- Luxury cards (staggered) ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}

.cards-grid.stagger > :nth-child(2) { transform: translateY(34px); }
.cards-grid.stagger > :nth-child(3) { transform: translateY(68px); }

.lux-card {
  position: relative;
  background: linear-gradient(165deg, var(--surface), var(--bg-2));
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 40px 32px 36px;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

/* inner hairline frame */
.lux-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(232, 211, 162, 0.16);
  pointer-events: none;
  transition: border-color 0.45s var(--ease);
}

/* gold corner ornament */
.lux-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 46px;
  background:
    linear-gradient(225deg, var(--gold) 0 2px, transparent 2px) 0 0 / 100% 100%,
    linear-gradient(225deg, rgba(242, 214, 117, 0.9), rgba(140, 106, 32, 0.9));
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.85;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}

.lux-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-bright);
  box-shadow: 0 26px 54px -26px rgba(212, 175, 55, 0.35);
}

.lux-card:hover::before { border-color: rgba(242, 214, 117, 0.4); }
.lux-card:hover::after { transform: translate(4px, -4px); opacity: 1; }

.card-num {
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}

.lux-card h3 { margin-bottom: 14px; }
.lux-card p { color: var(--muted); font-size: 0.95rem; }

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  transform: rotate(45deg);
}

.card-icon svg { transform: rotate(-45deg); }

/* ---------- Benefits vertical list ---------- */
.benefits-list {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
}

.benefit-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  align-items: start;
}

.benefit-item:first-child { border-top: 1px solid rgba(212, 175, 55, 0.2); }

.benefit-item .num {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  line-height: 1.1;
}

.benefit-item h3 { font-size: 1.25rem; margin-bottom: 6px; }
.benefit-item p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(212, 175, 55, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.stat {
  background: var(--bg-2);
  text-align: center;
  padding: 44px 18px;
  position: relative;
}

.stat .value {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat .label {
  margin-top: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Packages ---------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: start;
}

.package {
  position: relative;
  background: linear-gradient(170deg, var(--surface), var(--bg-2));
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 44px 34px 38px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}

.package:hover { transform: translateY(-8px); border-color: var(--gold-bright); box-shadow: 0 28px 60px -28px rgba(212, 175, 55, 0.4); }

.package .pkg-num {
  font-family: var(--serif);
  letter-spacing: 0.32em;
  font-size: 0.85rem;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.package h3 { font-size: 1.7rem; margin-bottom: 10px; }
.package .pkg-desc { color: var(--muted); font-size: 0.92rem; margin-bottom: 22px; }

.pkg-price {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold-bright);
  margin-bottom: 6px;
}

.pkg-price small { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.pkg-divider {
  height: 3px;
  margin: 22px 0;
  background:
    linear-gradient(var(--gold-deep), var(--gold-deep)) 0 0 / 100% 1px no-repeat,
    linear-gradient(rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.3)) 0 100% / 100% 1px no-repeat;
}

.package ul { list-style: none; display: grid; gap: 12px; margin-bottom: 30px; }

.package li {
  position: relative;
  padding-left: 26px;
  font-size: 0.92rem;
  color: var(--muted);
}

.package li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: var(--gold-grad);
}

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

/* featured package */
.package.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.08), 0 34px 80px -32px rgba(242, 214, 117, 0.45);
  padding-top: 58px;
}

.package.featured::before,
.package.featured::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border: 2px solid var(--gold-bright);
  pointer-events: none;
}

.package.featured::before { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.package.featured::after { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }

.pkg-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-grad);
  color: #1B1408;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 9px 22px;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .package.featured { transform: translateY(-24px); }
  .package.featured:hover { transform: translateY(-32px); }
}

/* ---------- Comparison table (editorial) ---------- */
.compare {
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(23, 18, 13, 0.6);
  padding: clamp(24px, 4vw, 48px);
  overflow-x: auto;
}

.compare table { width: 100%; border-collapse: collapse; min-width: 640px; }

.compare th, .compare td {
  padding: 20px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  vertical-align: middle;
}

.compare thead th {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--gold-bright);
  border-bottom: 2px solid var(--gold-deep);
}

.compare thead th:first-child {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.compare tbody th {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.compare td { color: var(--muted); font-size: 0.95rem; }

.compare td .big {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--text);
}

.compare th.featured-col, .compare td.featured-col {
  background: rgba(212, 175, 55, 0.07);
  box-shadow: inset 1px 0 0 var(--gold), inset -1px 0 0 var(--gold);
}

.compare thead th.featured-col { box-shadow: inset 1px 0 0 var(--gold), inset -1px 0 0 var(--gold), inset 0 2px 0 var(--gold); }
.compare tbody tr:last-child td.featured-col { box-shadow: inset 1px 0 0 var(--gold), inset -1px 0 0 var(--gold), inset 0 -2px 0 var(--gold); }

.compare .yes { color: var(--gold-bright); }
.compare svg { vertical-align: -3px; }

/* ---------- Game blocks ---------- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(22px, 3vw, 40px);
}

.game-card-wrap {
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
  padding: 2px;
  background: linear-gradient(135deg, var(--accent, #D4AF37), rgba(255, 255, 255, 0.06) 60%);
  transition: transform 0.45s var(--ease), filter 0.45s var(--ease);
}

.game-card-wrap:hover { transform: translateY(-6px); filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.55)); }

.game-card {
  clip-path: polygon(21px 0, 100% 0, 100% calc(100% - 21px), calc(100% - 21px) 100%, 0 100%, 0 21px);
  background: linear-gradient(170deg, var(--surface), var(--bg-2));
  padding: 38px 34px;
  height: 100%;
}

.game-card .game-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.game-card .card-icon { margin-bottom: 0; border-color: var(--accent, var(--gold)); }
.game-card h3 { font-size: 1.45rem; }
.game-card h3 span { display: block; font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent, var(--gold)); margin-top: 6px; }

.game-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 18px; }

.game-card h4 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  margin: 16px 0 10px;
}

.game-card ul { list-style: none; display: grid; gap: 8px; }

.game-card li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: var(--muted);
}

.game-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: var(--accent, var(--gold));
}

/* per-game accents */
.accent-gold { --accent: #D4AF37; }
.accent-champagne { --accent: #E8D3A2; }
.accent-bright { --accent: #F2D675; }
.accent-deep { --accent: #B88A24; }
.accent-bronze { --accent: #C08A3E; }
.accent-ivory { --accent: #EFE3C8; }

/* ---------- Anchor menu (game page) ---------- */
.anchor-menu {
  position: sticky;
  top: 92px;
  z-index: 40;
  background: rgba(23, 18, 13, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 14px 10px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.anchor-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
  list-style: none;
}

.anchor-menu a {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border: 1px solid transparent;
}

.anchor-menu a:hover { color: var(--gold-bright); border-color: rgba(212, 175, 55, 0.5); }

/* ---------- Steps (How it works) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 34px); counter-reset: step; }

.step {
  position: relative;
  padding: 34px 26px;
  background: rgba(33, 26, 19, 0.55);
  border-top: 2px solid var(--gold-deep);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.step:hover { border-top-color: var(--gold-bright); transform: translateY(-6px); }

.step .num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  display: block;
  margin-bottom: 14px;
}

.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.9rem; }

/* ---------- Visual showcase ---------- */
.showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.showcase-visual { position: relative; }

.showcase-visual .main-img {
  width: 88%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: var(--deep);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
  box-shadow: 26px 26px 0 -8px rgba(212, 175, 55, 0.12);
}

.showcase-visual .sub-img {
  position: absolute;
  right: 0;
  bottom: -46px;
  width: 46%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(232, 211, 162, 0.55);
  border-radius: 50% 50% 6px 6px;
  background: var(--deep);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.8);
}

.showcase-panel {
  position: relative;
  background: linear-gradient(165deg, var(--surface), var(--bg-2));
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: clamp(32px, 4vw, 52px);
  margin-left: clamp(0px, -4vw, -60px);
  z-index: 2;
}

.showcase-panel::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(232, 211, 162, 0.18);
  pointer-events: none;
}

.showcase-panel h2 { margin: 14px 0 16px; }
.showcase-panel p { color: var(--muted); margin-bottom: 26px; }

/* magazine grid for visual examples */
.mag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 32px);
}

.mag-grid figure { position: relative; }

.mag-grid figure:nth-child(2) { transform: translateY(28px); }

.mag-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: var(--deep);
}

.mag-grid figure:nth-child(3n + 2) img { border-radius: 999px 999px 4px 4px; aspect-ratio: 3 / 4.2; }

.mag-grid figcaption {
  margin-top: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Forms ---------- */
.form-wrap {
  max-width: 760px;
  margin-inline: auto;
  background: linear-gradient(165deg, var(--surface), var(--bg-2));
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: clamp(32px, 5vw, 56px);
  position: relative;
}

.form-wrap::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(232, 211, 162, 0.16);
  pointer-events: none;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-grid .full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: rgba(9, 8, 6, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 14px 16px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.field textarea { min-height: 130px; resize: vertical; }

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.field .error {
  display: none;
  margin-top: 6px;
  font-size: 0.76rem;
  color: #E3A08F;
  letter-spacing: 0.04em;
}

.field.invalid input,
.field.invalid textarea { border-color: #B0604A; }
.field.invalid .error { display: block; }

.form-wrap .btn { margin-top: 26px; }

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(9, 8, 6, 0.82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.modal.open { display: flex; }

.modal-box {
  max-width: 480px;
  width: 100%;
  text-align: center;
  background: linear-gradient(165deg, var(--surface), var(--bg-2));
  border: 1px solid var(--gold);
  padding: 52px 40px 44px;
  position: relative;
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.1), 0 40px 90px -30px rgba(0, 0, 0, 0.9);
  animation: modalIn 0.5s var(--ease);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(26px) scale(0.97); }
  to { opacity: 1; transform: none; }
}

.modal-box h3 { color: var(--gold-bright); margin: 18px 0 10px; }
.modal-box p { color: var(--muted); font-size: 0.95rem; margin-bottom: 28px; }

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}

.modal-close:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

/* ---------- Offline warning block ---------- */
.offline-warning {
  max-width: 900px;
  margin-inline: auto;
  border: 2px solid var(--gold-deep);
  background:
    radial-gradient(500px 160px at 50% 0, rgba(212, 175, 55, 0.1), transparent 70%),
    var(--bg-2);
  padding: clamp(30px, 4vw, 48px) clamp(26px, 5vw, 56px);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.offline-warning svg { flex: none; margin-top: 4px; }
.offline-warning h3 { color: var(--gold-bright); font-size: 1.15rem; letter-spacing: 0.06em; margin-bottom: 8px; }
.offline-warning p { color: var(--muted); font-size: 0.95rem; }
.offline-warning strong { color: var(--text); }

/* ---------- CTA invitation ---------- */
.cta-section { text-align: center; }

.cta-box {
  position: relative;
  max-width: 880px;
  margin-inline: auto;
  padding: clamp(50px, 7vw, 90px) clamp(26px, 6vw, 90px);
  border: 1px solid rgba(212, 175, 55, 0.5);
  background:
    radial-gradient(700px 260px at 50% -60px, rgba(212, 175, 55, 0.14), transparent 70%),
    linear-gradient(165deg, var(--surface), var(--bg-2));
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(232, 211, 162, 0.22);
  pointer-events: none;
}

.cta-box h2 { margin: 18px 0 18px; }
.cta-box .lead { margin: 0 auto 38px; }
.cta-box .hero-actions { justify-content: center; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 190px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -30vh;
  left: 50%;
  transform: translateX(-50%);
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero .eyebrow { justify-content: center; }
.page-hero .eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.page-hero h1 { margin: 20px 0 22px; }
.page-hero .lead { margin: 0 auto 34px; }
.page-hero .seal { margin: 40px auto 0; }

/* ---------- Legal pages ---------- */
.legal-body { max-width: 800px; margin-inline: auto; }
.legal-body h2 { font-size: 1.5rem; margin: 40px 0 14px; color: var(--gold-bright); }
.legal-body p { color: var(--muted); margin-bottom: 16px; font-size: 0.97rem; }
.legal-body ul { margin: 0 0 16px 22px; color: var(--muted); font-size: 0.97rem; display: grid; gap: 8px; }
.legal-body a { color: var(--gold); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}

.contact-card {
  background: linear-gradient(165deg, var(--surface), var(--bg-2));
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 34px 30px;
  margin-bottom: 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.contact-card:hover { border-color: var(--gold-bright); transform: translateX(6px); }

.contact-card svg { flex: none; margin-top: 3px; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--muted); font-size: 0.93rem; }
.contact-card a:hover { color: var(--gold-bright); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in-view { opacity: 1; transform: none; }

.reveal-line {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease);
}

.reveal-line.in-view { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.justify-center { justify-content: center; }
.mt-30 { margin-top: 30px; }
.mt-60 { margin-top: 60px; }
.mt-90 { margin-top: 90px; }
.mx-auto { margin-inline: auto; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-divider { display: none; }
  .hero-visual { margin-top: 20px; }
  .hero-visual .seal { left: auto; right: 0; bottom: -30px; }
  .cards-grid, .packages-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid.stagger > * { transform: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .showcase { grid-template-columns: 1fr; }
  .showcase-panel { margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .burger { display: flex; }

  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    background: rgba(9, 8, 6, 0.97);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    padding: 30px 6%;
    transform: translateY(-130%);
    transition: transform 0.45s var(--ease);
  }

  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; gap: 20px; }
  .main-nav a { font-size: 0.9rem; }

  .cards-grid, .packages-grid, .games-grid, .form-grid, .mag-grid { grid-template-columns: 1fr; }
  .mag-grid figure:nth-child(2) { transform: none; }
  .steps, .stats-grid { grid-template-columns: 1fr; }
  .plaque { grid-template-columns: 1fr; text-align: center; }
  .plaque-icon { margin-inline: auto; }
  .benefit-item { grid-template-columns: 48px 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .offline-warning { flex-direction: column; }
  .hero-index { display: none; }
  .seal { width: 140px; height: 140px; }
  .anchor-menu { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

