/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #050810;
  --bg-elevated: #0B1026;
  --surface: #0f1525;
  --surface-hover: #141d33;
  --border: rgba(212, 175, 55, 0.12);
  --border-glow: rgba(212, 175, 55, 0.3);

  --gold: #D4AF37;
  --gold-light: #F2D06B;
  --gold-dark: #B8942E;
  --gold-dim: rgba(212, 175, 55, 0.1);

  --profit: #4ade80;
  --profit-dim: rgba(74, 222, 128, 0.1);

  --text: #FFFFFF;
  --text-dim: #9999AA;
  --text-muted: #555566;

  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) var(--bg);
}

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

/* ===== CANVAS PARTICLES ===== */
.gold-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ===== STARS BACKGROUND ===== */
.bg-stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ===== HORIZON GLOW ===== */
.bg-horizon-glow {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 400px;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 100%, rgba(61, 46, 30, 0.25), transparent 70%);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(5, 8, 16, 0.95);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

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

.nav-logo {
  display: flex;
  align-items: center;
}

/* ===== MIDNIGHT SESSION LOGO ===== */
.ms-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.ms-logo:hover {
  transform: scale(1.05);
}

.ms-midnight {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 6px;
  text-transform: uppercase;
  transition: filter 0.3s ease;
}

.ms-logo:hover .ms-midnight {
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.ms-session-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.ms-line {
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  opacity: 0.6;
}

.ms-session-wrap .ms-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.ms-session {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 10px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.nav-cta:hover {
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.nav-cta:hover svg {
  color: var(--gold);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  gap: 64px;
  align-items: center;
}

.hero-left {
  flex: 1;
  min-width: 0;
}

.hero-right {
  flex-shrink: 0;
  width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 8px 16px;
  background: var(--gold-dim);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 4px;
  width: fit-content;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px var(--gold);
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--gold); }
  50% { opacity: 0.4; box-shadow: 0 0 2px var(--gold); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.hero-title .line {
  display: block;
}

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

.hero-desc {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-actions {
  margin-bottom: 0;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 18px 36px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-gold:hover::before {
  opacity: 1;
}

.btn-gold svg,
.btn-gold span,
.btn-gold .btn-arrow {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease, transform 0.3s ease;
}

.btn-gold svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover svg,
.btn-gold:hover span {
  color: var(--bg);
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-gold:hover .btn-arrow {
  transform: translateX(4px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.hero-trust svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

/* ===== TRADING CARD ===== */
.trading-card {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  position: relative;
}

.trading-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.trading-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.trading-pair {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.pair-icon {
  color: var(--gold);
}

.trading-price {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
}

.trading-chart {
  margin-bottom: 20px;
}

.chart-svg {
  width: 100%;
  height: auto;
}

.trading-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.trading-profit {
  display: flex;
  flex-direction: column;
}

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

.profit-value {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--profit);
}

.trading-change {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--profit);
}

/* Floating badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  animation: floatBadge 3s ease-in-out infinite;
}

.badge-icon {
  font-size: 14px;
}

.badge-1 {
  top: -24px;
  right: -16px;
  color: var(--profit);
  border-color: rgba(74, 222, 128, 0.3);
  animation-delay: 0s;
}

.badge-2 {
  bottom: 100px;
  left: -16px;
  color: var(--gold);
  border-color: rgba(212, 175, 55, 0.3);
  animation-delay: 1.5s;
}

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

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  width: 100%;
}

.stat-pill {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}

.stat-num .gold {
  font-size: 20px;
}

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

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

/* ===== MARQUEE ===== */
.marquee-section {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 16px 0;
  background: var(--surface);
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
  padding: 0 16px;
}

.marquee-content span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

.marquee-sep {
  color: var(--gold) !important;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 6px 14px;
  background: var(--gold-dim);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 4px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 500px;
  line-height: 1.7;
}

/* ===== RESULTS ===== */
.results {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.results-showcase {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}

.result-main {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.result-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.result-main-visual {
  position: relative;
}

.result-image {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.result-image-small {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.result-date-badge {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding: 4px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: inline-block;
}

.result-main-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
}

.gold-tag {
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.result-main-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.result-main-info p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

.result-meta {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.result-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
}

.result-meta svg {
  color: var(--gold);
}

.result-secondary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.result-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.result-secondary-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.result-date {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.result-amount {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 700;
  color: var(--profit);
}

.result-period {
  font-size: 13px;
  color: var(--text-dim);
}

/* ===== FEATURES ===== */
.features-layout {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-block {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  cursor: default;
}

.feature-block:first-child {
  border-radius: 16px 16px 0 0;
}

.feature-block:last-child {
  border-radius: 0 0 16px 16px;
}

.feature-block:hover {
  background: var(--surface-hover);
  border-color: var(--border-glow);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
}

.feature-block:hover .feature-number {
  opacity: 1;
}

.feature-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.feature-content p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 500px;
}

.feature-visual {
  display: flex;
  justify-content: flex-end;
}

.feature-icon-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.feature-block:hover .feature-icon-wrap {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.feature-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

/* ===== CALCULATOR ===== */
.calculator {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.calc-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.calc-widget::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent);
}

.calc-widget-inner {
  padding: 40px;
}

.calc-input-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.calc-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.calc-currency {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
}

.calc-value {
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  margin-bottom: 12px;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  border: 3px solid var(--bg);
  transition: transform 0.2s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  border: 3px solid var(--bg);
}

.calc-slider-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.calc-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}

.calc-output {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.calc-output-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-output-row.highlight {
  padding: 16px 20px;
  background: var(--profit-dim);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: 10px;
}

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

.calc-output-value {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.calc-profit {
  color: var(--profit) !important;
  font-size: 20px !important;
}

.calc-rate {
  color: var(--gold) !important;
}

.calc-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 16px;
}

.calc-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tc-scroll {
  height: 420px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.tc-scroll::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, var(--surface));
  pointer-events: none;
  z-index: 2;
}

.tc-scroll-img {
  width: 100%;
  display: block;
  animation: scrollVertical 20s linear infinite;
}

@keyframes scrollVertical {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.tc-label {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.tc-name {
  font-size: 14px;
  font-weight: 600;
}

.tc-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
}

.tc-verified svg {
  color: var(--gold);
}

/* ===== ABOUT ===== */
.about {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  align-items: center;
}

.about-photo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.about-photo-wrap {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.about-photo {
  width: 280px;
  height: 280px;
  object-fit: cover;
  object-position: center 45%;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: block;
}

.about-identity {
  padding: 0 4px;
}

.about-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  padding: 6px 14px;
  background: var(--gold-dim);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 4px;
}

.about-badge svg {
  color: var(--gold);
}

.about-content {
  padding-top: 16px;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.about-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
}

.about-stat-val {
  display: block;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.about-stat-lbl {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.about-bio p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 12px;
}

.about-quote {
  background: var(--surface);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== URGENCY ===== */
.urgency-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.urgency-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.urgency-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.08), transparent 60%);
  pointer-events: none;
}

.urgency-content {
  position: relative;
  z-index: 1;
}

.urgency-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.urgency-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.urgency-number {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  transition: transform 0.3s ease;
}

.urgency-number.flash {
  animation: urgencyFlash 0.5s ease;
}

@keyframes urgencyFlash {
  0%, 100% {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
  }
  30%, 70% {
    background: none;
    -webkit-text-fill-color: #ef4444;
    color: #ef4444;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
  }
}

.urgency-total {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--text-muted);
}

.urgency-progress {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 3px;
  margin-bottom: 24px;
  overflow: hidden;
}

.urgency-progress-fill {
  height: 100%;
  width: 98%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  animation: barFill 1.5s ease-out;
}

@keyframes barFill {
  from { width: 0; }
  to { width: 98%; }
}

.urgency-warning {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.btn-large {
  font-size: 16px;
  padding: 20px 40px;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  padding: 48px 0;
}

.footer-line {
  height: 1px;
  background: var(--border);
  margin-bottom: 40px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.footer p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 8px;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 11px !important;
  letter-spacing: 1px;
}

.footer-credit {
  font-family: var(--font-body);
  font-size: 12px !important;
  color: var(--text-dim) !important;
  margin-top: 16px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.footer-credit .footer-heart {
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-credit .footer-heart:hover {
  transform: scale(1.3);
}

.footer-credit-logo {
  height: 18px;
  width: auto;
  vertical-align: middle;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-credit-logo:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.4));
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ===== RESPONSIVE ===== */

/* Tablet landscape & below */
@media (max-width: 1024px) {
  .hero-inner {
    flex-direction: column;
    gap: 48px;
    text-align: center;
    padding: 0 32px;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-desc {
    max-width: 100%;
  }
  .hero-right {
    width: 100%;
    max-width: 480px;
  }
  .results-showcase {
    grid-template-columns: 1fr;
  }
  .result-main {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .calc-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    align-items: center;
  }
  .about-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .hero {
    padding: 100px 0 60px;
  }
  .hero-inner {
    padding: 0 20px;
  }
  .section {
    padding: 80px 0;
  }
  .section-header {
    margin-bottom: 48px;
  }
  .section-sub {
    font-size: 15px;
  }
  .feature-block {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px;
  }
  .feature-number {
    font-size: 24px;
  }
  .feature-visual {
    display: none;
  }
  .feature-content p {
    max-width: 100%;
  }
  .testimonials-track {
    grid-template-columns: 1fr;
  }
  .urgency-card {
    padding: 40px 24px;
  }
  .urgency-number {
    font-size: 60px;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
  .stat-divider {
    display: none;
  }
  .about-photo {
    width: 240px;
    height: 240px;
  }
  .btn-gold {
    padding: 14px 28px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
  .calc-widget-inner {
    padding: 24px;
  }
  .calc-value {
    font-size: 36px;
  }
  .ms-midnight {
    font-size: 16px;
    letter-spacing: 4px;
  }
  .ms-session {
    font-size: 9px;
    letter-spacing: 3px;
  }
  .ms-line {
    width: 16px;
  }
  .nav-cta {
    font-size: 12px;
    padding: 8px 16px;
  }
  .result-main-info h3 {
    font-size: 20px;
  }
  .result-amount {
    font-size: 28px;
  }
  .hero-eyebrow {
    font-size: 10px;
    padding: 6px 12px;
  }
  .hero-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Mobile small */
@media (max-width: 480px) {
  .hero {
    padding: 80px 0 40px;
  }
  .hero-inner {
    padding: 0 16px;
    gap: 32px;
  }
  .section {
    padding: 60px 0;
  }
  .section-header {
    margin-bottom: 32px;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-desc {
    font-size: 14px;
  }
  .trading-card {
    padding: 16px;
  }
  .profit-value {
    font-size: 18px;
  }
  .trading-price {
    font-size: 16px;
  }
  .floating-badge {
    display: none;
  }
  .stat-num {
    font-size: 20px;
  }
  .stat-label {
    font-size: 11px;
  }
  .hero-stats {
    gap: 12px;
  }
  .about-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .about-stat-val {
    font-size: 20px !important;
  }
  .about-stat-lbl {
    font-size: 11px !important;
  }
  .about-photo {
    width: 200px;
    height: 200px;
  }
  .about-name {
    font-size: 18px;
  }
  .about-quote {
    font-size: 14px !important;
    padding: 16px !important;
  }
  .urgency-number {
    font-size: 48px;
  }
  .urgency-total {
    font-size: 16px;
  }
  .urgency-card {
    padding: 32px 20px;
  }
  .calc-value {
    font-size: 32px;
  }
  .ms-midnight {
    font-size: 14px;
    letter-spacing: 3px;
  }
  .ms-session {
    font-size: 8px;
    letter-spacing: 2px;
  }
  .ms-line {
    width: 12px;
  }
  .nav-cta span {
    display: none;
  }
  .nav-cta {
    padding: 8px;
  }
  .footer-credit {
    font-size: 11px !important;
  }
  .footer-credit-logo {
    height: 14px;
  }
}
