:root {
  --bg: #110d19;
  --surface: #1d1529;
  --surface-2: #291d3a;
  --purple: #b79adb;
  --purple-light: #dbc9f1;
  --gold: #e3bc72;
  --text: #f7f3fb;
  --muted: #c9bfd3;
  --border: rgba(219, 201, 241, 0.18);
  --danger: #f0b7b7;
  --shadow: 0 20px 60px rgba(4, 2, 8, 0.34);
  --radius: 20px;
  --content: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0, rgba(137, 97, 180, 0.2), transparent 30rem),
    radial-gradient(circle at 90% 16%, rgba(227, 188, 114, 0.09), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: var(--purple-light);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #fff;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  background: #fff;
  color: #140d1d;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(17, 13, 25, 0.92);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 7px 16px rgba(0, 0, 0, 0.3));
}

.site-footer .brand-logo {
  width: 72px;
  height: 72px;
}

.brand span {
  color: var(--gold);
}

.primary-nav ul,
.footer-links {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
}

.primary-nav a {
  display: block;
  padding: 0.58rem 0.78rem;
  border-radius: 11px;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 500;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: var(--surface-2);
  color: var(--text);
}

.hero {
  padding: clamp(4.5rem, 9vw, 7.75rem) 0 clamp(4rem, 8vw, 6.5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--text);
  line-height: 1.2;
  text-wrap: balance;
}

h1 {
  max-width: 850px;
  margin-bottom: 1.2rem;
  font-size: clamp(2.35rem, 6vw, 4.7rem);
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 3.5vw, 2.65rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.14rem;
}

.lead {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  margin-top: 1.75rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  padding: 0.72rem 1.15rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--purple-light);
  color: #21152f;
  font-weight: 600;
  text-decoration: none;
}

.button:hover {
  background: #fff;
  color: #21152f;
}

.button-secondary {
  border-color: var(--border);
  background: transparent;
  color: var(--text);
}

.visual-stack {
  position: relative;
  display: grid;
  min-height: 310px;
  place-items: center;
}

.playing-card {
  position: absolute;
  display: grid;
  width: 155px;
  aspect-ratio: 0.7;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  background: linear-gradient(145deg, #f8f3ff, #c8b3e2);
  box-shadow: var(--shadow);
  color: #261833;
  font-size: 2.4rem;
  font-weight: 700;
}

.playing-card:first-child {
  transform: translateX(-42px) rotate(-12deg);
}

.playing-card:last-child {
  background: linear-gradient(145deg, #fff7e8, #e1ba70);
  color: #5a3610;
  transform: translateX(42px) rotate(12deg);
}

.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.page-banner-section {
  padding: 0 0 clamp(3.5rem, 7vw, 6rem);
}

.page-banner-shell {
  width: min(100%, 640px);
  margin-inline: auto;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(41, 29, 58, 0.96), rgba(29, 21, 41, 0.94));
  box-shadow: var(--shadow);
}

.page-banner-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 19px;
  object-fit: cover;
}

.section-alt {
  border-block: 1px solid var(--border);
  background: rgba(29, 21, 41, 0.72);
}

.section-heading {
  max-width: 730px;
  margin-bottom: 2rem;
}

.section-heading p,
.card p,
.prose p,
.prose li,
.notice,
.contact-box p {
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.card,
.prose-panel,
.contact-box,
.cta {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(41, 29, 58, 0.94), rgba(29, 21, 41, 0.92));
  box-shadow: var(--shadow);
}

.card,
.contact-box {
  padding: 1.55rem;
}

.icon-chip,
.step-number {
  display: inline-grid;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1rem;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 700;
}

.check-list {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-top: 0.55rem;
  padding-left: 1.65rem;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "✓";
  font-weight: 700;
}

.prose {
  max-width: 820px;
}

.prose h2 {
  margin-top: 2.8rem;
}

.prose h3 {
  margin-top: 1.8rem;
}

.prose ul,
.prose ol {
  padding-left: 1.35rem;
}

.prose li + li {
  margin-top: 0.5rem;
}

.prose-panel {
  padding: clamp(1.45rem, 4vw, 2.2rem);
}

.breadcrumb {
  padding-top: 1.35rem;
  font-size: 0.88rem;
}

.breadcrumb ol {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 0.45rem;
  color: var(--muted);
  content: "/";
}

.breadcrumb a {
  color: var(--muted);
}

.notice {
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  background: rgba(227, 188, 114, 0.08);
}

.promo-highlight {
  display: inline-block;
  margin: 0.25rem 0 1rem;
  color: var(--gold);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.contact-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li + li {
  margin-top: 0.8rem;
}

.cta {
  padding: clamp(2rem, 5vw, 3.25rem);
  background: linear-gradient(120deg, rgba(137, 97, 180, 0.3), rgba(41, 29, 58, 0.9));
}

.cta p {
  max-width: 720px;
  color: var(--muted);
}

.site-footer {
  padding: 2.6rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-copy {
  max-width: 570px;
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-links {
  gap: 0.5rem 1rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .header-inner {
    padding-block: 0.8rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .primary-nav {
    width: 100%;
    overflow-x: auto;
  }

  .primary-nav ul {
    width: max-content;
    flex-wrap: nowrap;
  }

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

  .visual-stack {
    min-height: 270px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  .hero {
    padding-top: 3.7rem;
  }

  .page-banner-shell {
    padding: 5px;
    border-radius: 19px;
  }

  .page-banner-image {
    border-radius: 14px;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .site-footer .brand-logo {
    width: 64px;
    height: 64px;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
