:root {
  --primary: #A44231;
  --primary-hover: #8C3728;
  --secondary: #4A5D4E;
  --secondary-hover: #3D4D40;
  --accent: #E5A937;
  --background: #F7F4F0;
  --surface: #2C2523;
  --textPrimary: #2C2523;
  --textSecondary: #5C534E;
  --white: #FFFFFF;
  --border-color: #E2DDD5;
  --heading-font: 'DM Serif Display', serif;
  --body-font: 'Inter', sans-serif;
  --base-font-size: 16px;
  --line-height: 1.6;
  --container-width: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(44, 37, 35, 0.08);
  --shadow-md: 0 4px 16px rgba(44, 37, 35, 0.12);
  --shadow-lg: 0 12px 32px rgba(44, 37, 35, 0.15);
}

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

body {
  font-family: var(--body-font);
  font-size: var(--base-font-size);
  line-height: var(--line-height);
  color: var(--textPrimary);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
}

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

p {
  margin-bottom: 1.5rem;
  color: var(--textSecondary);
}

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

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

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

ul,
ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--textSecondary);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.max-w-800 {
  max-width: 800px;
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--white) !important;
}

.bg-white {
  background-color: var(--white);
}

.bg-sandstone {
  background-color: var(--background);
}

.bg-terracotta {
  background-color: var(--primary);
}

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

.mb-6 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.text-sm {
  font-size: 0.875rem;
}

.p-6 {
  padding: 1.5rem;
}

.rounded {
  border-radius: var(--radius-md);
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 1rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

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

.btn-primary:hover:not(:disabled) {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

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

.btn-secondary:hover:not(:disabled) {
  background-color: rgba(44, 37, 35, 0.05);
}

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

.btn-full {
  width: 100%;
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Header & Nav */
.site-header {
  background-color: var(--surface);
  color: var(--white);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 0;
  transition: background-color var(--transition-normal);
}

.site-header.sticky {
  position: fixed;
  background-color: rgba(44, 37, 35, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.main-nav {
  display: none;
}

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

.nav-list a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  position: relative;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--white);
}

.nav-list a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
}

.desktop-auth {
  display: none;
  gap: 1rem;
}

.desktop-auth .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.desktop-auth .btn-secondary:hover {
  border-color: var(--white);
  background-color: transparent;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 200;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition-fast);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--surface);
  z-index: 150;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-overlay.open {
  transform: translateX(0);
}

.mobile-menu-content {
  width: 100%;
  padding: 2rem;
  text-align: center;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.mobile-nav-list li {
  margin-bottom: 1.5rem;
}

.mobile-nav-list a {
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--white);
}

.mobile-auth {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-auth .btn-secondary {
  color: var(--white);
  border-color: var(--white);
}

@media (min-width: 1024px) {

  .mobile-menu-toggle,
  .mobile-menu-overlay {
    display: none;
  }

  .main-nav,
  .desktop-auth {
    display: flex;
  }
}

/* Layout Archetypes & Sections */
#main-content {
  min-height: calc(100vh - 400px);
}

.strata-block {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-body {
  font-size: 1.125rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

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

@media (min-width: 768px) {
  .split-layout {
    grid-template-columns: 1fr 1fr;
  }

  .split-layout.reverse-layout .split-text {
    order: 2;
  }

  .split-layout.reverse-layout .split-visual {
    order: 1;
  }
}

.split-text .section-heading {
  text-align: left;
  font-size: 2.5rem;
}

.grid-2-col,
.grid-3-col {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2-col {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* Heavy Institutional Styling */
.heavy-list {
  list-style: none;
  padding: 0;
}

.heavy-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.heavy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--primary);
}

.trust-card {
  background-color: var(--white);
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.trust-card h3 {
  font-size: 1.5rem;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

/* Hero Dynamic: Editorial Stack + Framed Media */
.hero-editorial-stack {
  background-color: var(--primary);
  color: var(--white);
  padding-top: 120px;
}

.hero-content-wrapper {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr 1fr;
    padding: 6rem 1.5rem;
  }
}

.hero-text-column {
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-actions .btn-primary {
  background-color: var(--accent);
  color: var(--textPrimary);
}

.hero-actions .btn-primary:hover {
  background-color: #d49b32;
}

.framed-media-panel {
  position: relative;
  background-color: var(--surface);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.jackpot-overlay-ribbon {
  position: absolute;
  bottom: -1rem;
  right: 2rem;
  background-color: var(--accent);
  color: var(--textPrimary);
  padding: 1rem 2rem;
  box-shadow: var(--shadow-md);
}

.ribbon-label {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.ribbon-value {
  display: block;
  font-family: var(--heading-font);
  font-size: 2.5rem;
  line-height: 1;
}

.hero-ticker-row {
  background-color: var(--surface);
  color: var(--white);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.ticker-item {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 2rem;
}

.ticker-separator {
  width: 4px;
  height: 4px;
  background-color: var(--accent);
  border-radius: 50%;
  align-self: center;
}

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

  100% {
    transform: translateX(-100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-content {
    animation: none;
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
  }

  .ticker-item {
    padding: 0.5rem 1rem;
  }
}

/* Internal Hero */
.hero-internal {
  padding: 140px 0 4rem;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Interactive Insight Ticker (Matrix) */
.interactive-insight-ticker {
  border: 1px solid var(--border-color);
  background-color: var(--white);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .interactive-insight-ticker {
    flex-direction: row;
  }
}

.matrix-controls {
  display: flex;
  flex-direction: column;
  border-right: none;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--background);
}

@media (min-width: 768px) {
  .matrix-controls {
    width: 250px;
    border-right: 1px solid var(--border-color);
    border-bottom: none;
  }
}

.matrix-btn {
  padding: 1.5rem 1rem;
  text-align: left;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color);
  font-family: var(--heading-font);
  font-size: 1.125rem;
  color: var(--textSecondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.matrix-btn:last-child {
  border-bottom: none;
}

.matrix-btn:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.matrix-btn.active {
  background-color: var(--white);
  color: var(--primary);
  border-left: 4px solid var(--primary);
}

.matrix-content-area {
  flex-grow: 1;
  padding: 2rem;
  position: relative;
  min-height: 200px;
}

@media (min-width: 768px) {
  .matrix-content-area {
    padding: 3rem;
  }
}

.matrix-panel {
  display: none;
  animation: fadeIn var(--transition-normal);
}

.matrix-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Insight Spotlight */
.insight-spotlight {
  background-color: var(--surface);
  color: var(--white);
  padding: 2rem;
  margin-top: 2rem;
  border-left: 4px solid var(--accent);
}

.insight-spotlight .spotlight-title {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.insight-spotlight p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* Narrative Cards */
.narrative-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  position: relative;
  padding: 2rem;
  padding-top: 3rem;
}

.narrative-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: var(--heading-font);
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
}

/* Promo Data Pane */
.promo-list li {
  margin-bottom: 1rem;
}

.data-proof-pane {
  background-color: var(--surface);
  color: var(--white);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.data-proof-pane .pane-title {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.time-block {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
}

.time-block .num {
  font-family: var(--heading-font);
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Infrastructure Diagram */
.infrastructure-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .infrastructure-diagram {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.diagram-step {
  background-color: var(--white);
  padding: 2rem;
  border: 1px solid var(--border-color);
  text-align: center;
  width: 100%;
  max-width: 300px;
  position: relative;
  z-index: 2;
}

.diagram-arrow {
  width: 2px;
  height: 40px;
  background-color: var(--primary);
  margin: 1rem 0;
}

@media (min-width: 768px) {
  .diagram-arrow {
    width: 40px;
    height: 2px;
    margin: 3rem 1rem 0;
  }
}

/* Timeline */
.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: var(--border-color);
}

.timeline-node {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-node:last-child {
  margin-bottom: 0;
}

.node-marker {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-size: 1.125rem;
  flex-shrink: 0;
  z-index: 2;
}

.node-content {
  margin-left: 2rem;
  padding-top: 1rem;
}

.node-content h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question {
  font-family: var(--heading-font);
  font-size: 1.25rem;
  color: var(--textPrimary);
}

.faq-icon {
  width: 20px;
  height: 2px;
  background-color: var(--primary);
  position: relative;
  transition: var(--transition-fast);
}

.faq-icon::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: var(--primary);
  transform: rotate(90deg);
  transition: var(--transition-fast);
}

.faq-trigger[aria-expanded="true"] .faq-icon::after {
  transform: rotate(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-answer p {
  padding-bottom: 1.5rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--textPrimary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  background-color: var(--background);
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--textPrimary);
  border-radius: 0;
  transition: border-color var(--transition-fast);
}

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

/* Legal Document Structure */
.legal-document {
  font-size: 1rem;
}

.legal-document h2 {
  font-size: 2rem;
  margin-top: 3rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.legal-document .legal-intro {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--textPrimary);
  margin-bottom: 2rem;
}

.text-link {
  text-decoration: underline;
}

/* Ticket Entry Page (Progressive Stepper) */
.ticket-layout-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 120px 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .ticket-layout-container {
    grid-template-columns: 2fr 1fr;
  }
}

.draw-validation-strip {
  background-color: var(--surface);
  color: var(--white);
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 4px solid var(--accent);
}

.draw-id,
.draw-status {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

.draw-jackpot {
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--accent);
  display: block;
}

.step-indicator {
  display: flex;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 2rem;
}

.step {
  flex: 1;
  padding: 1rem 0;
  text-align: center;
  font-weight: 500;
  color: var(--textSecondary);
  position: relative;
}

.step.active {
  color: var(--primary);
}

.step.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

.step-content {
  display: none;
  background-color: var(--white);
  padding: 2rem;
  border: 1px solid var(--border-color);
}

.step-content.active {
  display: block;
  animation: fadeIn var(--transition-normal);
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 480px) {
  .number-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.num-btn {
  aspect-ratio: 1;
  background-color: var(--background);
  border: 1px solid var(--border-color);
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--textPrimary);
  cursor: pointer;
  transition: all 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.num-btn:hover {
  border-color: var(--secondary);
}

.num-btn.selected {
  background-color: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  transform: scale(0.95);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.step-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.multiplier-controls h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.toggle-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.toggle-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border: 1px solid transparent;
}

.toggle-label:hover {
  background-color: var(--background);
}

.draws-group select {
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  font-family: var(--body-font);
  margin-top: 0.5rem;
}

/* Ticket Summary Aside */
.audit-summary-pane {
  background-color: var(--background);
  border: 1px solid var(--border-color);
  position: sticky;
  top: 100px;
}

.audit-summary-pane .pane-title {
  background-color: var(--surface);
  color: var(--white);
  margin: 0;
  padding: 1rem 1.5rem;
  font-size: 1.25rem;
}

.summary-lines {
  padding: 1.5rem;
  min-height: 100px;
  max-height: 300px;
  overflow-y: auto;
}

.summary-line-item {
  background-color: var(--white);
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  font-family: monospace;
  font-size: 0.875rem;
}

.summary-line-item:last-child {
  margin-bottom: 0;
}

.empty-state {
  text-align: center;
  color: var(--textSecondary);
  font-style: italic;
}

.calculation-pane {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  background-color: var(--white);
}

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

.calc-row.highlight {
  color: var(--secondary);
  font-weight: 500;
}

.calc-row.total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--border-color);
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--heading-font);
}

.checkout-module {
  padding: 1.5rem;
  background-color: var(--surface);
}

.checkout-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  text-align: center;
  margin-bottom: 1rem;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 37, 35, 0.8);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background-color: var(--white);
  width: 100%;
  max-width: 450px;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

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

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

.modal-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Footer Unified Structure */
.site-footer {
  background-color: var(--surface);
  color: var(--white);
  padding: 4rem 0 2rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 2fr;
  }
}

.footer-logo-text {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 1rem;
}

.footer-address {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-heading {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-link-list a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-link-list a:hover {
  color: var(--accent);
}

.compliance-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.partner-badge {
  height: 40px;
  width: auto;
  color: bisque;
  background: #cdb9b9;
  padding: 5px;
  border-radius: 10px;
}

.partner-badge:hover {
  filter: grayscale(0%) brightness(100%);
  opacity: 1;
}

.footer-copyright {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 1.9rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
  }

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

  .ribbon-label {
    display: block;
    font-size: 0.575rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
  }

  .ribbon-value {
    display: block;
    font-family: var(--heading-font);
    font-size: 1rem;
    line-height: 1;
  }

  .hero-content-wrapper {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }

  .strata-block {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
  }

  .split-text .section-heading {
    text-align: left;
    font-size: 1.7rem;
  }

  .section-body {
    font-size: 0.8rem;
  }

  .feature-list {
    font-size: 12px;
  }

  .split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0rem;
    align-items: center;
  }

  .section-heading {
    font-size: 1.7rem;
    margin-bottom: 1rem;
  }

  .insight-spotlight p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 12px;
  }

  .insight-spotlight .spotlight-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .faq-question {
    font-family: var(--heading-font);
    font-size: 0.8rem;
    color: var(--textPrimary);
  }

  .faq-answer p {
    font-size: 10px;
  }

  .logo-text {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    letter-spacing: 0.5px;
  }

  .hero-editorial-stack {
    background-color: var(--primary);
    color: var(--white);
    padding-top: 30px;
  }
}