/* DungeonsDragon.com — marketing + package brochure */
:root {
  --bg: #070a12;
  --bg-2: #0c1220;
  --panel: #121a2c;
  --panel-2: #182238;
  --gold: #d4a84b;
  --gold-2: #f0d78c;
  --sky: #6eb6ff;
  --violet: #9b7ad4;
  --ember: #e06a4c;
  --text: #f2ebe0;
  --muted: #9aabbf;
  --line: rgba(212, 168, 75, 0.28);
  --ok: #5dce8a;
  --danger: #ff7a7a;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --font-display: "Cinzel", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.site-body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(ellipse at 20% -10%, rgba(110, 182, 255, 0.12), transparent 45%),
    radial-gradient(ellipse at 90% 10%, rgba(155, 122, 212, 0.12), transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(212, 168, 75, 0.08), transparent 45%),
    var(--bg);
  min-height: 100vh;
  line-height: 1.55;
}

/* Full-viewport one-shot intro video */
.hero-video-layer {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 1;
  transition: opacity 1.1s ease;
}
.hero-video-layer.is-fading {
  opacity: 0;
  pointer-events: none;
}
.hero-video-layer.is-gone {
  display: none !important;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #05070e;
}
.hero-video-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 18, 0.35) 0%, rgba(7, 10, 18, 0.55) 45%, rgba(7, 10, 18, 0.82) 100%),
    radial-gradient(ellipse at 50% 40%, transparent 20%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}
.hero-video-skip {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  pointer-events: auto;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.45);
  color: #f0e8d8;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.hero-video-skip:hover {
  background: rgba(212, 168, 75, 0.35);
  border-color: rgba(212, 168, 75, 0.65);
}
/* Keep page content readable while video plays (slightly elevated z-index) */
body.site-hero-video-active .site-wrap {
  position: relative;
  z-index: 6;
}
body.site-hero-video-active .site-nav {
  background: rgba(7, 10, 18, 0.55);
}
body.site-hero-video-active .hero {
  /* hero text sits over the cinematic video */
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}
@media (prefers-reduced-motion: reduce) {
  .hero-video-layer {
    display: none !important;
  }
  body.site-hero-video-active .site-wrap {
    z-index: 1;
  }
}
img { max-width: 100%; display: block; }
a { color: var(--gold-2); text-decoration: none; }
a:hover { color: #fff; }

.site-stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,.7), transparent),
    radial-gradient(1px 1px at 30% 70%, rgba(255,255,255,.45), transparent),
    radial-gradient(1.5px 1.5px at 70% 30%, rgba(255,255,255,.55), transparent),
    radial-gradient(1px 1px at 85% 80%, rgba(255,255,255,.4), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,.3), transparent);
  opacity: 0.55;
}

.site-wrap { position: relative; z-index: 1; }

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(7, 10, 18, 0.82);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.75rem 1.15rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text);
}
.site-brand span { color: var(--gold); }
.site-brand-mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, #2a1f0a, #0d1a30);
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 1.1rem;
}
.site-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  margin-left: auto;
  font-size: 0.92rem;
}
.site-nav-links a { color: var(--muted); }
.site-nav-links a:hover { color: var(--gold-2); }
.site-nav .btn { margin-left: 0.25rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.25rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn:active { transform: translateY(0); }
.btn-gold {
  background: linear-gradient(180deg, #ffe9a8, #c9a04a 55%, #a67c2a);
  color: #1a1408;
  box-shadow: 0 8px 22px rgba(201, 160, 74, 0.28);
}
.btn-outline {
  background: transparent;
  color: var(--gold-2);
  border: 1px solid rgba(212,168,75,0.55);
}
.btn-violet {
  background: linear-gradient(180deg, #cbb6ff, #7c5cbc 55%, #56408a);
  color: #120e1c;
}
.btn-lg { padding: 0.9rem 1.55rem; font-size: 1.05rem; }
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.88rem; }

/* Layout */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3.5rem 1.15rem;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.25rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin: 0 0 0.65rem;
  letter-spacing: 0.02em;
}
.section-head p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

/* Hero */
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1.15rem 2rem;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold-2), #fff1c2, var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 1.12rem;
  color: var(--muted);
  margin: 0 0 1.4rem;
  max-width: 36rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.4rem; }
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 0.45rem;
}
.pill {
  font-size: 0.8rem;
  font-weight: 650;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
}

/* By the numbers */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.stat-card {
  text-align: center;
  padding: 1.25rem 0.85rem 1.15rem;
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(212,168,75,0.12), transparent 55%),
    var(--panel);
  border: 1px solid rgba(212,168,75,0.28);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--gold-2);
  line-height: 1.1;
  text-shadow: 0 0 24px rgba(212,168,75,0.25);
}
.stat-label {
  margin-top: 0.35rem;
  font-weight: 750;
  font-size: 0.98rem;
  color: var(--text);
}
.stat-sub {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.35;
}
.numbers-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

/* Dashboard tour gallery */
.tour-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.tour-group-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-2);
  margin: 1.75rem 0 0.5rem;
  text-align: center;
}
.tour-group-lead {
  text-align: center;
  color: var(--muted);
  max-width: 40rem;
  margin: 0 auto 1rem;
  font-size: 0.98rem;
}
.tour-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}
.tour-gallery-player {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 0.5rem;
}
.tour-tile {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(212,168,75,0.25);
  border-radius: 12px;
  overflow: hidden;
  background: #0a0e18;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.tour-tile:hover,
.tour-tile:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(212,168,75,0.65);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
  outline: none;
}
.tour-tile img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.tour-tile-cap {
  display: block;
  padding: 0.55rem 0.65rem 0.65rem;
  font-size: 0.78rem;
  color: var(--muted);
  background: linear-gradient(180deg, rgba(8,12,22,0.95), #0a0e18);
}
.tour-tile-cap strong {
  display: block;
  color: var(--gold-2);
  font-size: 0.82rem;
  margin-bottom: 0.1rem;
}

/* Tour lightbox */
.tour-lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.tour-lightbox.hidden,
.tour-lightbox[hidden] {
  display: none !important;
}
.tour-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 10, 0.88);
  backdrop-filter: blur(8px);
}
.tour-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.tour-lightbox-panel img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(212,168,75,0.35);
  background: #05070e;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
}
.tour-lightbox-caption {
  margin-top: 0.75rem;
  padding: 0 0.25rem;
  color: var(--text);
}
.tour-lightbox-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-2);
  margin-bottom: 0.25rem;
}
.tour-lightbox-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.tour-lightbox-x {
  position: absolute;
  top: -0.25rem;
  right: 0;
  z-index: 2;
  border: none;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  cursor: pointer;
}
.tour-lightbox-nav {
  position: absolute;
  top: 40%;
  z-index: 2;
  border: none;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 2rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
}
.tour-lightbox-nav.prev { left: -0.25rem; }
.tour-lightbox-nav.next { right: -0.25rem; }
.tour-lightbox-nav:hover,
.tour-lightbox-x:hover { background: rgba(212,168,75,0.35); }
body.tour-lightbox-open { overflow: hidden; }

@media (max-width: 960px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-gallery { grid-template-columns: repeat(2, 1fr); }
  .tour-gallery-player { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .tour-gallery,
  .tour-gallery-player { grid-template-columns: 1fr; }
  .tour-lightbox-nav.prev { left: 0.25rem; }
  .tour-lightbox-nav.next { right: 0.25rem; }
}
.hero-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212,168,75,0.25);
  min-height: 320px;
  background: #0a1020;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}
.hero-visual-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-size: 0.92rem;
}
.hero-visual-cap strong { display: block; color: var(--gold-2); }

/* Cards / grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.card {
  background: linear-gradient(165deg, var(--panel), var(--bg-2));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}
.card-body { padding: 1.1rem 1.15rem 1.25rem; }
.card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
}
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.card-media {
  aspect-ratio: 16/11;
  background: #0a0e18;
  overflow: hidden;
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.card:hover .card-media img { transform: scale(1.04); }
.card-media.portrait { aspect-ratio: 1/1; }
.card-media.portrait img { object-position: top center; }

.feature-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 0.75rem;
  background: rgba(212,168,75,0.12);
  border: 1px solid var(--line);
  font-size: 1.2rem;
}

/* Package */
.package-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 1.25rem;
  align-items: start;
}
.package-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.package-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.package-list .tick {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(93, 206, 138, 0.15);
  color: var(--ok);
  font-weight: 800;
  flex-shrink: 0;
}
.package-list strong { display: block; color: var(--text); }
.package-list span { color: var(--muted); font-size: 0.92rem; }

.price-card {
  padding: 1.5rem;
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(212,168,75,0.18), transparent 50%),
    linear-gradient(200deg, #1a2438, #0d121f);
  border: 1px solid rgba(212,168,75,0.4);
  box-shadow: var(--shadow);
  text-align: center;
}
.price-card .from { color: var(--muted); font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; }
.price-card .amount {
  font-family: var(--font-display);
  font-size: 3rem;
  margin: 0.2rem 0;
  color: var(--gold-2);
}
.price-card .amount small { font-size: 1.1rem; color: var(--muted); }
.price-card .note { color: var(--muted); font-size: 0.92rem; margin: 0.5rem 0 1.1rem; }
.price-includes {
  text-align: left;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  color: var(--muted);
}
.price-includes li {
  padding: 0.35rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.price-includes li::before {
  content: "✦ ";
  color: var(--gold);
}

/* How it works steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.2rem;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.07);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffe9a8, #c9a04a);
  color: #1a1408;
  font-weight: 800;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}
.step h3 { margin: 0 0 0.4rem; font-size: 1.05rem; font-family: var(--font-display); }
.step p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* Live world gate */
.world-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(212,168,75,0.35);
  box-shadow: var(--shadow);
  background: #0a1020;
}
.world-card-art {
  position: relative;
  min-height: 320px;
}
.world-card-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 320px;
}
.world-card-art .lock-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(212,168,75,0.45);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-2);
}
.world-card-body {
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.world-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0;
}
.world-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ok);
}
.world-status::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 10px var(--ok);
}
.gate-form {
  margin-top: 0.5rem;
  display: grid;
  gap: 0.65rem;
}
.gate-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.gate-form input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
  color: var(--text);
  font: inherit;
}
.gate-form input:focus {
  outline: 2px solid rgba(212,168,75,0.45);
  border-color: var(--gold);
}
.gate-error {
  color: var(--danger);
  font-size: 0.9rem;
  min-height: 1.2em;
}
.gate-ok {
  color: var(--ok);
  font-size: 0.95rem;
  font-weight: 650;
}

/* Characters */
.char-card .card-media { aspect-ratio: 1/1.05; }
.char-meta {
  display: flex; flex-wrap: wrap; gap: 0.35rem;
  margin: 0.55rem 0 0.4rem;
}
.chip {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(212,168,75,0.35);
  color: var(--gold-2);
  background: rgba(212,168,75,0.08);
}
.quote {
  font-style: italic;
  color: #d8cfc0;
  font-size: 0.92rem;
  margin-top: 0.4rem;
}

/* NPC / map scroller */
.scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 240px);
  gap: 0.9rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.scroll-row .card { scroll-snap-align: start; }
.npc-card .card-media { aspect-ratio: 3/4; }
.npc-card .card-media img { object-position: top center; }
.map-card .card-media { aspect-ratio: 16/10; }

/* Brochure strip */
.brochure {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.brochure-shot {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0a0e18;
}
.brochure-shot img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.brochure-shot figcaption {
  padding: 0.7rem 0.85rem;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Pay */
.pay-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: start;
}
.pay-details {
  background: #fff;
  color: #111;
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow);
}
.pay-details h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #111;
}
.pay-details dl {
  margin: 0;
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 0.45rem 0.75rem;
  font-size: 1.05rem;
}
.pay-details dt { font-weight: 700; color: #333; }
.pay-details dd { margin: 0; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-weight: 650; }
.pay-note {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid #ddd;
  font-size: 0.92rem;
  color: #444;
}
.pay-methods {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.35rem;
}
.pay-methods-label {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.pay-methods-or {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.paypal-buy {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.paypal-buy input[type="image"] {
  cursor: pointer;
  max-width: 100%;
  height: auto;
}

/* EFT modal */
.eft-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.eft-modal.hidden,
.eft-modal[hidden] {
  display: none !important;
}
.eft-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 16, 0.72);
  backdrop-filter: blur(6px);
}
.eft-modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  border-radius: 18px;
  background: linear-gradient(165deg, #1a2438, #0d121f);
  border: 1px solid rgba(212, 168, 75, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.eft-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.eft-modal-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-2);
}
.eft-modal-x {
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.15rem 0.4rem;
}
.eft-modal-x:hover { color: #fff; }
.eft-tabs {
  display: flex;
  gap: 0.35rem;
  padding: 0.75rem 1rem 0;
  flex-wrap: wrap;
}
.eft-tab {
  font: inherit;
  font-size: 0.88rem;
  font-weight: 650;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  color: var(--muted);
  cursor: pointer;
}
.eft-tab.active {
  background: linear-gradient(180deg, #ffe9a8, #c9a04a);
  color: #1a1408;
  border-color: rgba(255, 240, 180, 0.7);
}
.eft-tab-panel {
  padding: 0.85rem 1.15rem 0.5rem;
}
.eft-tab-panel.hidden,
.eft-tab-panel[hidden] {
  display: none !important;
}
.eft-lead {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.pay-details-in-modal {
  background: #fff;
  color: #111;
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
}
.pay-details-in-modal h4 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #111;
}
.eft-modal-foot {
  display: flex;
  justify-content: flex-end;
  padding: 0.85rem 1.15rem 1.15rem;
}
body.eft-modal-open {
  overflow: hidden;
}

/* Contact form */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1.25rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.contact-form {
  padding: 1.35rem 1.4rem 1.5rem;
  border-radius: 18px;
  background: linear-gradient(165deg, var(--panel), var(--bg-2));
  border: 1px solid rgba(212, 168, 75, 0.28);
  box-shadow: var(--shadow);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.contact-field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--muted);
}
.contact-field .optional {
  font-weight: 500;
  opacity: 0.75;
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font: inherit;
  font-weight: 500;
  resize: vertical;
}
.contact-field input:focus,
.contact-field textarea:focus {
  outline: 2px solid rgba(212, 168, 75, 0.45);
  border-color: var(--gold);
}
.contact-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.35rem;
}
.contact-status {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  min-height: 1.3em;
}
.contact-status.ok { color: var(--ok); }
.contact-status.err { color: var(--danger); }
.contact-list {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.contact-list li { margin: 0.35rem 0; }
.contact-aside {
  height: fit-content;
}
@media (max-width: 820px) {
  .contact-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 2rem;
  padding: 2rem 1.15rem 2.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer strong { color: var(--gold-2); }

/* Band */
.band {
  background: linear-gradient(90deg, rgba(24,34,56,0.9), rgba(18,20,40,0.95));
  border-block: 1px solid rgba(255,255,255,0.05);
}
.band .section { padding-block: 2.5rem; }

/* Table package breakdown */
.pkg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.pkg-table th, .pkg-table td {
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pkg-table th {
  color: var(--gold-2);
  font-family: var(--font-display);
  font-weight: 600;
}
.pkg-table td { color: var(--muted); }
.pkg-table td:first-child { color: var(--text); font-weight: 650; }
.table-wrap {
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  background: var(--panel);
}

@media (max-width: 960px) {
  .hero, .package-panel, .world-card, .pay-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .steps, .brochure { grid-template-columns: 1fr 1fr; }
  .site-nav-links { width: 100%; margin-left: 0; }
}
@media (max-width: 640px) {
  .grid-3, .grid-4, .steps, .brochure, .grid-2 { grid-template-columns: 1fr; }
  .hero { padding-top: 1.5rem; }
  .price-card .amount { font-size: 2.4rem; }
}
