/* [XEO-INJECTION-START: 3_UI_TOKEN_COLOR_STANDARDS] */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --bg-dark: #0A0A0A;
  --bg-card: rgba(22, 26, 33, 0.75);
  --accent-gold: #D4AF37;
  --accent-gold-glow: rgba(212, 175, 55, 0.15);
  --text-muted: #A3A3A3;
  --text-light: #F5F5F5;
  --border-color: rgba(255, 255, 255, 0.08);
}
/* [XEO-INJECTION-END: 3_UI_TOKEN_COLOR_STANDARDS] */

/* [XEO-INJECTION-START: 4_INTERACTION_ASSETS] */
::selection {
  background-color: #D4AF37;
  color: #000000;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, #D4AF37, transparent);
  z-index: 10000;
  opacity: 0.8;
}
/* [XEO-INJECTION-END: 4_INTERACTION_ASSETS] */

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

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 60px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-header {
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-light);
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
}

.brand-logo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-gold);
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 24px;
  transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent-gold);
}

/* Glassmorphism Cards */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 12px 40px var(--accent-gold-glow);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  padding: 80px 0 60px 0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Forms & UI Controls */
.btn {
  background: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 12px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn:hover {
  background: var(--accent-gold);
  color: #000000;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-primary {
  background: var(--accent-gold);
  color: #000000;
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent-gold);
}

/* Step Wizard */
.wizard-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.wizard-steps::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-color);
  z-index: 1;
}

.step-node {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
  z-index: 2;
  transition: all 0.3s ease;
}

.step-node.active {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold-glow);
}

.step-node.completed {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #000000;
}

/* Fact Tables */
.fact-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 14px;
}

.fact-table th, .fact-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.fact-table th {
  color: var(--accent-gold);
  font-weight: 600;
}

/* Footer Disclaimer styling */
.disclaimer-box {
  background: rgba(212, 175, 55, 0.03);
  border-left: 3px solid var(--accent-gold);
  padding: 20px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}

.disclaimer-box p {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}
