﻿:root {
  color-scheme: dark;
  --bg: #060607;
  --bg-soft: #0b0b0d;
  --bg-elev: #101014;
  --gold: #d7b35d;
  --gold-bright: #f2d37a;
  --gold-dark: #8a6a2a;
  --text: #f1eee6;
  --muted: #c0b8a5;
  --line: rgba(215, 179, 93, 0.2);
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  background: radial-gradient(circle at top, rgba(215, 179, 93, 0.08), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(215, 179, 93, 0.12), transparent 35%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

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

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: calc(100% * var(--scrollProgress, 0));
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  z-index: 50;
  box-shadow: 0 0 10px rgba(215, 179, 93, 0.7);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 28px 6vw 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.6;
  background: radial-gradient(circle, rgba(215, 179, 93, 0.6), transparent 70%);
}

.orb-1 {
  top: -120px;
  left: -100px;
  animation: float 10s ease-in-out infinite;
}

.orb-2 {
  bottom: -200px;
  right: -120px;
  animation: float 12s ease-in-out infinite reverse;
}

.grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.2;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Cinzel", "Times New Roman", serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.brand-mark {
  width: 100px;
 
}

.brand-name {
  font-weight: 600;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links a {
  position: relative;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  margin-top: 70px;
  align-items: center;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-left h1 {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.05;
  margin: 12px 0 18px;
  text-transform: uppercase;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin: 0 0 10px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 100%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: #120d03;
  font-weight: 600;
  box-shadow: 0 15px 30px rgba(215, 179, 93, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 40px rgba(215, 179, 93, 0.4);
}

.cta.small {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 600;
  transition: border 0.3s ease, color 0.3s ease;
}

.ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.pillars {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.pillar {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.monarch-card {
  background: linear-gradient(160deg, rgba(15, 15, 18, 0.9), rgba(6, 6, 7, 0.9));
  border: 1px solid rgba(215, 179, 93, 0.3);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.monarch-card__top {
  display: flex;
  gap: 20px;
  align-items: center;
}

.card-mark {
  width: 100px;
 
}

.card-title {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1.1rem;
  margin: 0;
  text-transform: uppercase;
}

.card-sub {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.monarch-card__body {
  margin: 24px 0;
  display: grid;
  gap: 12px;
}

.stat {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 8px;
}

.stat-label {
  color: var(--muted);
  font-size: 0.85rem;
}

.stat-value {
  font-weight: 600;
}

.monarch-card__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(215, 179, 93, 0.8);
  animation: pulse 2s infinite;
}

.scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--muted);
  opacity: 0.8;
  animation: float 4s ease-in-out infinite;
}

main {
  position: relative;
  z-index: 2;
}

.section {
  padding: 90px 6vw;
  position: relative;
}

.section > * {
  width: min(100%, var(--content-width));
  margin-left: auto;
  margin-right: auto;
}

.section:nth-child(even) {
  background: var(--bg-soft);
}

.section-head {
  margin-bottom: 40px;
}

.section-head p {
  max-width: 640px;
}

.section h2 {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.feature,
.card,
.step,
.contact-card {
  background: var(--bg-elev);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.feature h3,
.card h3,
.step h3,
.contact-card h3 {
  margin-top: 0;
  font-family: "Cinzel", "Times New Roman", serif;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.list-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.list-grid li {
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.list-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}

.step-number {
  font-size: 1.4rem;
  font-family: "Cinzel", "Times New Roman", serif;
  color: var(--gold);
}

.banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(215, 179, 93, 0.4);
  background: linear-gradient(135deg, rgba(215, 179, 93, 0.12), rgba(12, 12, 14, 0.9));
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.risk {
  text-align: center;
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer {
  padding: 50px 6vw;
  background: #040404;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

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

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(215, 179, 93, 0.8);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(215, 179, 93, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(215, 179, 93, 0);
  }
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-bottom: 70px;
  }
}

@media (min-width: 1000px) {
  .nav,
  .hero-content,
  .footer-inner {
    width: min(100%, var(--content-width));
    margin-left: auto;
    margin-right: auto;
  }

  .nav {
    padding: 12px 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(6, 6, 7, 0.7);
    backdrop-filter: blur(10px);
  }

  .hero-content {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    margin-top: 90px;
  }

  .hero-left h1 {
    font-size: clamp(3.2rem, 4vw, 4.8rem);
  }

  .lead {
    font-size: 1.2rem;
  }

  .monarch-card {
    width: min(430px, 100%);
    margin-top: 18px;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .hero-content {
    margin-top: 40px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.admin-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 6vw;
}

.admin-card {
  width: min(100%, 1100px);
  background: var(--bg-elev);
  border: 1px solid rgba(215, 179, 93, 0.2);
  border-radius: 22px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.admin-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.admin-title {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  margin: 0 0 12px;
}

.admin-sub {
  color: var(--muted);
  margin: 0;
}

.admin-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.admin-section {
  margin: 0 0 16px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1.4rem;
}

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

.label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--bg);
  color: var(--text);
  font-size: 0.95rem;
}

.input:focus {
  outline: 2px solid rgba(215, 179, 93, 0.5);
  border-color: rgba(215, 179, 93, 0.6);
}

.help {
  margin: 6px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.admin-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 22px;
}

.admin-panel {
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 10, 12, 0.8);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.form-grid--compact {
  gap: 12px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 10, 12, 0.8);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
  margin-bottom: 22px;
}

.filter-form {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  align-items: center;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-search {
  min-width: 260px;
  flex: 1 1 auto;
}

.filter-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}

.input--compact {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.85rem;
}

.verify-form {
  margin: 0;
}

.verify-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--muted);
}

.verify-toggle input {
  display: none;
}

.verify-slider {
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  transition: background 0.2s ease, border 0.2s ease;
}

.verify-slider::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--muted);
  top: 2px;
  left: 3px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.verify-toggle input:checked + .verify-slider {
  background: rgba(215, 179, 93, 0.25);
  border-color: rgba(215, 179, 93, 0.6);
}

.verify-toggle input:checked + .verify-slider::after {
  transform: translateX(18px);
  background: var(--gold);
}

.verify-label {
  min-width: 90px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(215, 179, 93, 0.4);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(15, 15, 18, 0.9);
  transition: transform 0.2s ease, border 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 179, 93, 0.7);
}

.btn-danger {
  border-color: rgba(200, 90, 90, 0.6);
  color: #f2dede;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 80;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.75);
  backdrop-filter: blur(6px);
  border: none;
  cursor: pointer;
}

.modal-card {
  position: relative;
  width: min(100%, 560px);
  background: var(--bg-elev);
  border-radius: 20px;
  border: 1px solid rgba(215, 179, 93, 0.25);
  padding: 28px;
  box-shadow: var(--shadow);
  z-index: 1;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.modal-close {
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 1.3rem;
  background: rgba(12, 12, 16, 0.9);
}

@media (max-width: 720px) {
  .filter-bar {
    align-items: stretch;
  }

  .filter-form {
    width: 100%;
    flex-wrap: wrap;
  }

  .filter-search {
    min-width: 0;
  }

  .filter-group {
    width: 100%;
    justify-content: space-between;
  }

  .filter-form .input--compact {
    width: 100%;
  }

  .filter-bar .btn,
  .filter-form .cta.small {
    width: 100%;
    justify-content: center;
  }
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.link {
  color: var(--gold);
}

.alert {
  padding: 16px;
  border-radius: 14px;
  background: rgba(215, 179, 93, 0.08);
  border: 1px solid rgba(215, 179, 93, 0.3);
  margin-bottom: 18px;
}

.alert p {
  margin: 0;
}

.alert-error {
  background: rgba(200, 90, 90, 0.12);
  border-color: rgba(200, 90, 90, 0.5);
}

.alert-success {
  background: linear-gradient(135deg, rgba(215, 179, 93, 0.14), rgba(12, 12, 14, 0.9));
  border-color: rgba(215, 179, 93, 0.45);
  box-shadow: 0 16px 30px rgba(215, 179, 93, 0.15);
}

.success-panel {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(215, 179, 93, 0.35);
  background: linear-gradient(135deg, rgba(15, 15, 18, 0.95), rgba(8, 8, 10, 0.95));
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.55);
}

.success-title {
  font-family: "Cinzel", "Times New Roman", serif;
  margin: 6px 0 10px;
  font-size: 1.6rem;
}

.success-text {
  margin: 0;
  color: var(--muted);
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.referral-summary {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(215, 179, 93, 0.2);
  background: rgba(8, 8, 10, 0.6);
  margin-bottom: 20px;
}

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

.referral-page {
  background: var(--bg);
  position: relative;
  overflow-x: hidden;
}

.referral-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
  background: radial-gradient(circle at 20% 10%, rgba(215, 179, 93, 0.18), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(215, 179, 93, 0.12), transparent 45%);
}

.referral-splash {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 80px 6vw 110px;
  display: grid;
  gap: 70px;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.splash-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 42px;
  align-items: center;
}

.splash-copy h1 {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(2.6rem, 4.4vw, 4.2rem);
  margin: 12px 0 18px;
  text-transform: uppercase;
}

.splash-tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.splash-tagline span {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.splash-metrics {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.referral-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin: 0 0 4px;
}

.referral-value {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.splash-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.splash-media {
  display: flex;
  justify-content: center;
}

.splash-cards {
  display: grid;
  gap: 18px;
}

.splash-card {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(215, 179, 93, 0.28);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.6);
  background: #0b0b0e;
}

.splash-card img {
  width: 100%;
  height: auto;
  display: block;
}

.splash-card--tall {
  transform: translateX(16px);
}

.splash-about {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.splash-about h2,
.splash-gallery h2 {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin: 0 0 14px;
}

.splash-pillars {
  display: grid;
  gap: 18px;
}

.splash-pillar {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, rgba(14, 14, 18, 0.9), rgba(8, 8, 10, 0.9));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.4);
}

.splash-pillar h3 {
  margin-top: 0;
  font-family: "Cinzel", "Times New Roman", serif;
}

.splash-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

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

.splash-shot {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(215, 179, 93, 0.3);
  background: #0b0b0e;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
}

.splash-shot img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  display: block;
}

.splash-shot--offset {
  transform: translateX(16px);
}

.signup-panel {
  display: flex;
  justify-content: center;
}

.signup-card {
  width: min(100%, 900px);
  background: var(--bg-elev);
  border: 1px solid rgba(215, 179, 93, 0.25);
  border-radius: 22px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.signup-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

@media (max-width: 720px) {
  .admin-card {
    padding: 24px;
  }

  .admin-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .splash-about,
  .splash-gallery {
    grid-template-columns: 1fr;
  }

  .splash-gallery__grid {
    grid-template-columns: 1fr;
  }

  .splash-shot img {
    height: auto;
    object-fit: contain;
  }

  .splash-card--tall,
  .splash-shot--offset {
    transform: none;
  }

  .signup-card {
    padding: 28px;
  }
}

@media (max-width: 720px) {
  .signup-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Referral landing refresh */
.split-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-shot {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(215, 179, 93, 0.3);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.6);
  background: #0b0b0e;
  max-width: 420px;
}

.hero-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.about-strip {
  display: grid;
  gap: 28px;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.about-card {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, rgba(14, 14, 18, 0.9), rgba(8, 8, 10, 0.9));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.4);
}

.about-card h3 {
  margin-top: 0;
  font-family: "Cinzel", "Times New Roman", serif;
}

.preview-strip {
  display: grid;
  gap: 24px;
}

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

.preview-shot {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(215, 179, 93, 0.3);
  background: #0b0b0e;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
}

.preview-shot img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
}

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

  .preview-shot img {
    height: auto;
    object-fit: contain;
  }
}

/* Guide page */
body.guide-page {
  background-image: linear-gradient(rgba(5, 6, 8, 0.88), rgba(5, 6, 8, 0.88)),
    url("assets/home.jpeg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #050608;
  min-height: 100vh;
}

.guide-hero {
  padding: 26px 6vw 10px;
  position: relative;
  z-index: 2;
}

.guide-main {
  padding: 40px 6vw 90px;
  position: relative;
  z-index: 2;
}
.guide-page .footer {
  position: relative;
  z-index: 2;
}

.guide-shell {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  display: grid;
  gap: 36px;
  align-items: start;
  justify-items: center;
  text-align: center;
}

.guide-intro,
.guide-content {
  width: min(100%, 860px);
  text-align: center;
}

.guide-intro h1 {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  margin: 10px 0 16px;
  text-transform: uppercase;
}

.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  justify-content: center;
}

.guide-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(215, 179, 93, 0.35);
  background: rgba(12, 12, 16, 0.7);
  color: var(--text);
  font-weight: 600;
}

.guide-content {
  display: grid;
  gap: 24px;
}

.guide-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
  justify-items: center;
}

.guide-step {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(12, 12, 16, 0.92), rgba(8, 8, 10, 0.9));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.45);
  text-align: center;
  width: min(100%, 820px);
}

.guide-step h2 {
  margin: 0 0 12px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1.4rem;
}

.guide-step p {
  margin: 8px 0;
  color: var(--muted);
}

.guide-meta {
  margin: 6px 0;
  color: var(--text);
  font-weight: 600;
}

.guide-meta span {
  color: var(--muted);
  font-weight: 400;
  margin-right: 8px;
}

.guide-note-inline {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(215, 179, 93, 0.1);
  border: 1px solid rgba(215, 179, 93, 0.35);
  color: var(--text);
  font-weight: 600;
}

.highlight-step {
  border-color: rgba(215, 179, 93, 0.5);
  background: linear-gradient(135deg, rgba(18, 18, 22, 0.96), rgba(10, 10, 12, 0.95));
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.6);
}

.risk-banner {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 6, 8, 0.9);
  text-align: center;
}

.risk-banner h2 {
  margin: 0 0 10px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1.4rem;
}

.risk-banner p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 720px) {
  .guide-page .nav-links {
    display: flex;
    width: auto;
    gap: 16px;
  }
}
