:root {
  --primary: #0A221C;
  --secondary: #D4AF37;
  --accent: #E6C97A;
  --background: #F7F5F0;
  --surface: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #4A4D4C;
  --success: #2E7D32;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--background);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Utilities */
.bg-primary { background-color: var(--primary); }
.bg-background { background-color: var(--background); }
.bg-surface { background-color: var(--surface); }
.text-light { color: var(--background); }
.text-secondary { color: var(--secondary); }
.text-success { color: var(--success); }
.align-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.hidden { display: none !important; }

/* Buttons */
.btn-primary, .btn-ghost, .btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--primary);
}

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

.btn-ghost {
  background-color: transparent;
  color: var(--secondary);
}

.btn-ghost:hover {
  color: var(--accent);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
}

/* Header */
.site-header {
  background-color: var(--primary);
  border-bottom: 2px solid var(--secondary);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-name {
  font-family: var(--font-heading);
  color: var(--secondary);
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-list a {
  color: var(--background);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.nav-list a:hover, .nav-list a[aria-current="page"] {
  color: var(--secondary);
}

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.burger-line {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--secondary);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero - Centered Stage Directive */
.hero-section {
  position: relative;
  padding: 8rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 70vh;
  overflow: hidden;
}

.hero-section.visual-gradient-texture {
  background: linear-gradient(135deg, var(--primary) 0%, #153830 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.trust-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--secondary);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  color: var(--background);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

/* Sections Pacing */
.content-section, .split-cinematic-section, .editorial-strip, .promo-ops-calendar {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  color: inherit;
  margin-bottom: 1.5rem;
}

.section-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

/* Split Cinematic Layout */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.reverse-layout .split-grid {
  direction: rtl;
}

.reverse-layout .split-content {
  direction: ltr;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-list li::before {
  content: '•';
  color: var(--secondary);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  top: -5px;
}

.split-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Step Process */
.step-process {
  display: grid;
  gap: 2rem;
}

.step {
  position: relative;
  padding-left: 4rem;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--secondary);
  opacity: 0.5;
  line-height: 1;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Interactive Ticker */
.interactive-insight-ticker {
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.ticker-container {
  width: 100%;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}

.ticker-divider {
  margin: 0 2rem;
  color: var(--secondary);
  opacity: 0.5;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Stats Proof Strip */
.data-proof-strip {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

/* Editorial Table */
.data-table-wrapper {
  overflow-x: auto;
}

.insight-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background: var(--surface);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.insight-table th, .insight-table td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--background);
}

.insight-table th {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
}

.badge-success {
  background: rgba(46, 125, 50, 0.1);
  color: var(--success);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Promo Calendar */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.calendar-card {
  background: var(--surface);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.05);
  border-top: 4px solid var(--primary);
  transition: var(--transition);
}

.calendar-card.active {
  border-top-color: var(--secondary);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.calendar-date {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.calendar-event {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.calendar-details {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.status-text {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  padding: 0.5rem 0;
}

/* Cards */
.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--background);
  padding: 2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.05);
}

.myth-card {
  border-left: 3px solid var(--secondary);
}

.card-title {
  font-size: 1.25rem;
  color: var(--primary);
}

.card-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* FAQ Accordion (faq-top placement) */
.faq-quick-answers {
  padding: 4rem 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-item summary {
  padding: 1.5rem 0;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  color: var(--secondary);
  font-size: 1.5rem;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-content {
  padding-bottom: 1.5rem;
  color: var(--text-secondary);
}

/* Mockup Component */
.payment-mockup {
  background: #111;
  border-radius: var(--radius-md);
  padding: 2rem;
  font-family: monospace;
  color: #fff;
  border: 1px solid #333;
}

.mockup-header {
  border-bottom: 1px solid #333;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mockup-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
  background-color: var(--primary);
  color: var(--background);
  padding: 4rem 2rem 2rem;
  border-top: 4px solid var(--secondary);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 4rem;
}

.footer-brand .brand-name {
  display: block;
  margin-top: 1rem;
}

.age-restriction {
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.link-group h4, .footer-rg h4 {
  color: var(--secondary);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.link-group ul {
  list-style: none;
}

.link-group li {
  margin-bottom: 0.75rem;
}

.link-group a {
  color: var(--background);
  opacity: 0.8;
  font-size: 0.9rem;
}

.link-group a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-rg p {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.partner-logos img {
  height: 40px;
  width: auto;
  background: rgba(255,255,255,0.1);
  padding: 5px;
  border-radius: var(--radius-sm);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Auth Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 34, 28, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--surface);
  width: 100%;
  max-width: 450px;
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay[aria-hidden="false"] .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.modal-title {
  text-align: center;
  color: var(--primary);
  margin-bottom: 2rem;
}

.auth-form .form-group {
  margin-bottom: 1.5rem;
}

.auth-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.auth-form input, .auth-form select, .auth-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
}

.auth-form input:focus, .auth-form select:focus, .auth-form textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

/* Ticket Experience (ticket-all-at-once) */
.ticket-interface {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.selection-area, .summary-area {
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.1);
}

.ledger-title {
  font-family: var(--font-heading);
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.number-grids {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.number-grid {
  background: var(--background);
  padding: 1.5rem;
  border: 1px solid #E0DCD3;
}

.grid-header {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.grid-cells {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 0.5rem;
}

.number-cell {
  aspect-ratio: 1;
  background: var(--surface);
  border: 1px solid #ccc;
  color: var(--text-secondary);
  font-family: monospace;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.number-cell:hover {
  border-color: var(--secondary);
}

.number-cell.selected {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--secondary);
}

.receipt-style {
  background: #FDFCF9;
  border: 1px solid #E0DCD3;
  font-family: monospace;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  color: var(--text-primary);
}

.receipt-divider {
  border: 0;
  border-top: 1px dashed #ccc;
  margin: 1rem 0;
}

.receipt-total {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.95rem;
}

.radio-label input {
  display: none;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  margin-right: 1rem;
  position: relative;
}

.radio-label input:checked + .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
}

.terms-notice {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  text-align: center;
}

/* Legal Pages */
.legal-page .legal-header {
  padding: 6rem 0 3rem;
}

.legal-page .last-updated {
  color: var(--secondary);
  font-family: monospace;
  margin-top: 1rem;
}

.legal-content {
  padding: 4rem 0;
}

.text-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-intro {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 3rem;
  color: var(--primary);
}

.legal-content h2 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin: 3rem 0 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 0.5rem;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin: 2rem 0 1rem;
}

.legal-content p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.legal-content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  color: var(--text-secondary);
}

.legal-content li {
  margin-bottom: 0.75rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
}

.contact-form-wrapper {
  padding: 3rem;
  border: 1px solid rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .ticket-interface {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-actions .btn-primary, .header-actions .btn-ghost {
    display: none;
  }
  
  .burger-menu {
    display: block;
  }
  
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary);
    padding: 2rem;
    display: none;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  
  .main-nav.active {
    display: block;
  }
  
  .nav-list {
    flex-direction: column;
    text-align: center;
  }
  
  .split-grid, .grid-3-col, .calendar-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .grid-cells {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 360px) {
  .hero-section {
    padding: 6rem 1rem;
  }
  .container {
    padding: 0 1rem;
  }
  .contact-form-wrapper {
    padding: 1.5rem;
  }
}
