/* ============================================
   BREAD - Proof of Concept Website
   Dark theme with golden wheat accents
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --bg-primary: #06060c;
  --bg-secondary: #0c0c16;
  --bg-surface: #111120;
  --bg-card: #16162a;
  --border: #1e1e3a;
  --border-light: #2a2a4a;
  --gold-dark: #b8860b;
  --gold: #d4a017;
  --gold-light: #f4c430;
  --gold-bright: #ffd700;
  --gold-glow: rgba(244, 196, 48, 0.15);
  --text-primary: #eaeaf2;
  --text-secondary: #8888a8;
  --text-muted: #555570;
  --green: #4ade80;
  --green-bg: rgba(74, 222, 128, 0.1);
  --red: #f87171;
  --red-bg: rgba(248, 113, 113, 0.1);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 0 40px rgba(212, 160, 23, 0.15);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ---- Loading Screen ---- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.loader-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.loader-circle {
  animation: loader-draw 2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes loader-draw {
  0% { stroke-dashoffset: 283; transform: rotate(0deg); }
  50% { stroke-dashoffset: 70; }
  100% { stroke-dashoffset: 283; transform: rotate(360deg); }
}

.loader-emoji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  animation: loader-pulse 1.5s ease-in-out infinite;
}

@keyframes loader-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.15); }
}

.loader-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.loader-text {
  color: var(--text-secondary);
  font-size: 14px;
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(6, 6, 12, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}

.logo-icon {
  font-size: 24px;
}

.logo-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

/* Hamburger menu button (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-price {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.nav-price-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.nav-price-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--gold-light);
}

.nav-price-change {
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 6px;
}

.nav-price-change.up {
  color: var(--green);
  background: var(--green-bg);
}

.nav-price-change.down {
  color: var(--red);
  background: var(--red-bg);
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 60px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light), transparent);
  opacity: 0;
  animation: particle-float linear infinite;
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% {
    transform: translateY(-20vh) rotate(360deg);
    opacity: 0;
  }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--gold-glow);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.hero-title {
  margin-bottom: 32px;
}

.title-line {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.title-bread {
  display: block;
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-bright), var(--gold-light));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease-in-out infinite;
  letter-spacing: -2px;
  line-height: 1;
  filter: drop-shadow(0 0 40px rgba(212, 160, 23, 0.3));
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-value-container {
  margin-bottom: 32px;
}

.hero-value-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.hero-currency {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.2;
  padding-top: 8px;
}

.hero-value {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 0 0 60px rgba(244, 196, 48, 0.2);
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
}

.hero-change.up {
  color: var(--green);
  background: var(--green-bg);
}

.hero-change.down {
  color: var(--red);
  background: var(--red-bg);
}

.hero-unit {
  color: var(--text-muted);
  font-size: 13px;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0a0a0f;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.4);
}

.btn-secondary {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: var(--bg-card);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

.hero-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-light);
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
}

/* ---- Ticker ---- */
.ticker {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 40px;
  animation: ticker-scroll 60s linear infinite;
}

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

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
}

.ticker-flag {
  font-size: 16px;
}

.ticker-name {
  color: var(--text-secondary);
}

.ticker-price {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 600;
}

.ticker-change {
  font-size: 12px;
  font-weight: 600;
}

.ticker-change.up { color: var(--green); }
.ticker-change.down { color: var(--red); }

.ticker-divider {
  color: var(--border);
  flex-shrink: 0;
}

/* ---- Sections ---- */
.section {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gold-glow);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Globe Section ---- */
.globe-section {
  max-width: 100%;
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.globe-section .section-header {
  padding: 0 40px;
}

.globe-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.globe-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.globe {
  width: 100%;
  max-width: 800px;
  height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0 auto;
}

.globe canvas {
  border-radius: var(--radius-lg);
}

/* ---- Floating globe labels (HTML layer) ---- */
.globe-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  transform: translate(-50%, -100%);
}

.globe-label-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(17, 17, 32, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 160, 23, 0.4);
  border-radius: 10px;
  white-space: nowrap;
  pointer-events: auto;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.globe-label-card:hover {
  border-color: var(--gold-light);
  background: rgba(17, 17, 32, 0.97);
  transform: scale(1.08);
}

.globe-label-card.selected {
  border-color: var(--gold-light);
  background: rgba(30, 28, 50, 0.97);
  box-shadow: 0 0 14px rgba(244, 196, 48, 0.3);
}

.globe-label-flag {
  font-size: 16px;
  line-height: 1;
}

.globe-label-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.globe-label-price {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-light);
}

.globe-label-stem {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(212, 160, 23, 0.8), rgba(212, 160, 23, 0.25));
  border-radius: 1px;
  box-shadow: 0 0 6px rgba(212, 160, 23, 0.25);
}

/* ---- Detail panel below globe ---- */
.globe-info-panel {
  width: 100%;
  max-width: 500px;
  margin: 24px auto 0;
  background: rgba(17, 17, 32, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s ease,
              border-color 0.4s ease,
              box-shadow 0.4s ease,
              margin 0.4s ease;
}

.globe-info-panel.active {
  max-height: 400px;
  opacity: 1;
  pointer-events: auto;
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-gold);
  margin-top: 24px;
}

.panel-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.panel-close:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.08);
}

.info-panel-header {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.panel-flag {
  font-size: 28px;
}

.panel-country {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}

.info-panel-body {
  padding: 16px 20px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-size: 13px;
  color: var(--text-muted);
}

.info-value {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
}

.info-value.up { color: var(--green); }
.info-value.down { color: var(--red); }

.info-panel-footer {
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--border);
}

.info-panel-footer small {
  color: var(--text-muted);
  font-size: 11px;
}

/* ---- Chart Section ---- */
.chart-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  max-width: 100%;
  padding: 100px 0;
}

.chart-section .section-header {
  padding: 0 40px;
}

.chart-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

.chart-value-display {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chart-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.chart-current-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-light);
}

.chart-current-change {
  font-size: 14px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
}

.chart-current-change.up {
  color: var(--green);
  background: var(--green-bg);
}

.chart-current-change.down {
  color: var(--red);
  background: var(--red-bg);
}

.chart-controls {
  display: flex;
  gap: 4px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 4px;
}

.chart-range-btn {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.chart-range-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.chart-range-btn.active {
  color: var(--gold-light);
  background: rgba(212, 160, 23, 0.15);
}

.chart {
  height: 450px;
  padding: 0;
}

/* ---- Why BREAD Section ---- */
.why-section {
  padding-top: 120px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.why-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.why-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.why-quote {
  text-align: center;
  padding: 60px 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}

.why-quote::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold-dark), transparent, var(--gold-dark));
  z-index: -1;
  opacity: 0.5;
}

.why-quote blockquote {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-primary);
  max-width: 700px;
  margin: 0 auto 16px;
}

.why-quote cite {
  font-size: 14px;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

/* ---- Buy Section ---- */
.buy-section {
  text-align: center;
}

.buy-answer {
  max-width: 500px;
  margin: 0 auto;
  padding: 60px 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.buy-icon {
  font-size: 64px;
  margin-bottom: 20px;
  display: inline-block;
  animation: bread-bob 3s ease-in-out infinite;
}

@keyframes bread-bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

.buy-answer h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.buy-answer p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 8px;
}

.buy-detail {
  font-size: 14px !important;
  color: var(--text-muted) !important;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ---- Comparison Section ---- */
.comparison-section {
  padding-bottom: 60px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-surface);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table thead {
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  padding: 18px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.row-bread {
  background: var(--gold-glow);
}

.row-bread td {
  border-bottom-color: rgba(212, 160, 23, 0.1) !important;
}

.asset-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 14px;
}

.asset-badge.bread {
  background: rgba(212, 160, 23, 0.2);
  color: var(--gold-light);
}

.asset-badge.usd {
  background: rgba(74, 222, 128, 0.1);
  color: var(--green);
}

.asset-badge.gold {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
}

.asset-badge.btc {
  background: rgba(247, 147, 26, 0.1);
  color: #f7931a;
}

.vol-badge, .pp-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.vol-badge.low { background: var(--green-bg); color: var(--green); }
.vol-badge.med { background: rgba(250, 204, 21, 0.1); color: #facc15; }
.vol-badge.high { background: var(--red-bg); color: var(--red); }

.pp-badge.stable { background: var(--green-bg); color: var(--green); }
.pp-badge.declining { background: var(--red-bg); color: var(--red); }
.pp-badge.variable { background: rgba(250, 204, 21, 0.1); color: #facc15; }
.pp-badge.unpredictable { background: rgba(168, 85, 247, 0.1); color: #a855f7; }

.check {
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
}

.cross {
  color: var(--text-muted);
  font-size: 18px;
}

/* ---- CTA Section ---- */
.cta-section {
  text-align: center;
  padding: 120px 40px;
  max-width: 100%;
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-value {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 60px;
  background: var(--bg-surface);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
}

.cta-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
}

.cta-price {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Footer ---- */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 40px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .globe-wrapper {
    padding: 0 20px;
  }
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 32px;
  }

  .title-bread {
    font-size: 64px;
  }

  .hero-value {
    font-size: 56px;
  }

  .hero-currency {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(6, 6, 12, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 40px;
    gap: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .section {
    padding: 60px 20px;
  }

  .globe-section,
  .chart-section {
    padding: 60px 0;
  }

  .globe-section .section-header,
  .chart-section .section-header {
    padding: 0 20px;
  }

  .globe-wrapper {
    padding: 0 10px;
  }

  .globe {
    height: 400px;
  }

  .globe-label-name {
    display: none;
  }

  .globe-label-card {
    padding: 5px 10px;
    gap: 6px;
  }

  .globe-label-price {
    font-size: 12px;
  }

  .globe-label-stem {
    height: 55px;
  }

  .chart {
    height: 350px;
  }

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

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

  .hero-stats-row {
    gap: 20px;
  }

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

  .why-quote blockquote {
    font-size: 22px;
  }

  .comparison-table {
    font-size: 12px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 14px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-price {
    font-size: 42px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  html { font-size: 14px; }

  .title-bread {
    font-size: 48px;
  }

  .hero-value {
    font-size: 44px;
  }

  .section-title {
    font-size: 26px;
  }

  .hero-stats-row {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

  .chart-controls {
    flex-wrap: wrap;
  }
}
