/* ============================================
   Land Landing Page - CSS
   ============================================ */

/* Design Tokens */
:root {
  /* Colors */
  --color-bg-main: #1A1A1A;
  --color-bg-surface: #141414;
  --color-bg-card: #1E1E1E;
  --color-bg-elevated: #252525;
  --color-gold: #FFDE92;
  --color-gold-dim: rgba(255, 222, 146, 0.6);
  --color-gold-glow: rgba(255, 222, 146, 0.15);
  --color-gold-pulse: rgba(255, 222, 146, 0.02);
  --color-text: #FFFFFF;
  --color-text-muted: #888888;
  --color-text-dim: #666666;
  --color-line: #333333;
  --color-line-dim: #222222;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 3rem;
  --font-size-4xl: 4rem;
  --font-size-hero: clamp(3rem, 10vw, 7rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-section: clamp(4rem, 10vh, 8rem);

  /* Animation */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 64px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Tabular figures for numbers */
.tabular {
  font-variant-numeric: tabular-nums;
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* Selection color */
::selection {
  background: var(--color-gold);
  color: var(--color-bg-main);
}

/* ============================================
   Progress Bar
   ============================================ */
.progress-bar {
  position: fixed;
  left: var(--space-xl);
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.progress-bar.visible {
  opacity: 1;
}

.progress-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
}

.progress-dash {
  font-size: var(--font-size-lg);
  color: var(--color-text-dim);
  transition: color var(--transition-base), font-size var(--transition-base);
  line-height: 1;
}

.progress-label {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-gold);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity var(--transition-base), transform var(--transition-base), font-size var(--transition-base);
  white-space: nowrap;
}

.progress-item.active .progress-dash {
  color: var(--color-gold);
  font-size: var(--font-size-xl);
}

.progress-item.active .progress-label {
  opacity: 1;
  transform: translateX(0);
  font-size: var(--font-size-base);
}

.progress-item:hover .progress-dash {
  color: var(--color-text-muted);
}

.progress-item.active:hover .progress-dash {
  color: var(--color-gold);
}

/* Hide on mobile */
@media (max-width: 768px) {
  .progress-bar {
    display: none;
  }
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, var(--color-bg-main), transparent);
  padding: var(--space-md) var(--space-xl);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  pointer-events: none;
}

.nav.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--font-size-sm);
  transition: color var(--transition-fast);
}

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

.nav-cta {
  background: var(--color-gold);
  color: var(--color-bg-main);
  border: none;
  padding: var(--space-sm) var(--space-lg);
  border-radius: 6px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--color-gold-glow);
}

/* ============================================
   Hero Section - The Breathing Counter
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-xl);
}

.hero-pulse {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-gold-pulse) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-pulse {
    animation: none;
    opacity: 0.7;
  }
}

.hero-content {
  text-align: center;
  z-index: 1;
  max-width: 900px;
  padding: 0 var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hero-tagline-main {
  font-size: var(--font-size-3xl);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.hero-tagline-highlight {
  color: var(--color-gold);
  margin-top: var(--space-md);
}

.hero-cta {
  margin-top: var(--space-2xl);
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: var(--space-md) var(--space-xl);
  border-radius: 6px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.hero-cta:hover {
  background: var(--color-gold);
  color: var(--color-bg-main);
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-3xl);
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-text-dim);
  animation: bounce 2s ease-in-out infinite;
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-hint {
    animation: none;
  }
}

/* ============================================
   Timeline - 24/7 Visualization
   ============================================ */
.timeline {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-section) var(--space-xl);
}

.timeline-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.timeline-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.timeline-container {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.timeline-hours {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  margin-left: 180px;
}

.timeline-hour {
  font-size: var(--font-size-xs);
  color: var(--color-text-dim);
  font-variant-numeric: tabular-nums;
}

.timeline-row {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.timeline-row-label {
  width: 160px;
  flex-shrink: 0;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-align: right;
}

.timeline-bar {
  flex: 1;
  height: 24px;
  background: var(--color-bg-surface);
  border-radius: 6px;
  display: flex;
  overflow: hidden;
  position: relative;
}

.timeline-segment {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-label {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-bg-main);
  white-space: nowrap;
}

.timeline-closed {
  background: #4a1c1c;
}

.timeline-open {
  background: var(--color-gold);
}

.timeline-bar-land {
  background: var(--color-gold);
  box-shadow: 0 0 20px var(--color-gold-glow);
}

.timeline-land-active {
  width: 100%;
  background: var(--color-gold);
}

.timeline-legend {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  flex-wrap: wrap;
}

.timeline-legend-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.timeline-legend-swatch {
  width: 24px;
  height: 12px;
  border-radius: 3px;
}

.timeline-legend-closed .timeline-legend-swatch {
  background: #4a1c1c;
}

.timeline-legend-traditional .timeline-legend-swatch {
  background: var(--color-gold);
}

.timeline-legend-land .timeline-legend-swatch {
  background: var(--color-gold);
}

/* ============================================
   Borrow - Collateral Canvas
   ============================================ */
.borrow {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-section) var(--space-xl);
  background: var(--color-bg-surface);
}

.borrow-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.borrow-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.borrow-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3xl);
}

.borrow-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
}

.borrow-section-title {
  font-size: var(--font-size-sm);
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

/* Portfolio */
.borrow-portfolio {
  background: var(--color-bg-card);
  padding: var(--space-xl);
  border-radius: 12px;
  border: 1px solid var(--color-line-dim);
}

.borrow-holdings {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.holding {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-md);
  background: var(--color-bg-surface);
  border-radius: 8px;
}

.holding-ticker {
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--color-text);
  background: var(--color-bg-elevated);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 4px;
}

.holding-shares {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.holding-value {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

.borrow-total {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-line-dim);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.borrow-total-value {
  font-weight: 700;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

/* Arrow */
.borrow-arrow {
  flex-shrink: 0;
}

.borrow-arrow svg {
  width: 48px;
  height: 48px;
  color: var(--color-gold);
}

/* Result Card */
.borrow-result-card {
  background: var(--color-bg-card);
  padding: var(--space-2xl);
  border-radius: 12px;
  border: 1px solid var(--color-gold-dim);
  text-align: center;
  box-shadow: 0 0 40px var(--color-gold-glow);
}

.borrow-result-amount {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--color-gold);
  font-variant-numeric: tabular-nums;
  margin: var(--space-lg) 0 var(--space-sm);
}

.borrow-result-rate {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
}

/* ============================================
   Top Up & Withdraw - Bank Connection
   ============================================ */
.topup {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-section) var(--space-xl);
  background: var(--color-bg-main);
  overflow: hidden;
}

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

.topup-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.topup-subtitle {
  color: var(--color-text-muted);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-4xl);
}

.topup-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-4xl);
}

.topup-bank,
.topup-land {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.topup-icon-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  background: var(--color-bg-card);
  border: 2px solid var(--color-line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.topup-icon-wrapper svg {
  width: 48px;
  height: 48px;
  color: var(--color-text-muted);
}

.topup-icon-land {
  border-color: var(--color-gold);
  box-shadow: 0 0 30px var(--color-gold-glow);
}

.topup-land-logo {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--color-gold);
}

.topup-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}

.topup-connection {
  width: 200px;
  position: relative;
}

.topup-dots {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.topup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-line);
  animation: dotFlow 2s ease-in-out infinite;
  animation-delay: calc(var(--dot-index) * 0.2s);
}

@keyframes dotFlow {
  0%, 100% {
    background: var(--color-line);
    transform: scale(1);
  }
  50% {
    background: var(--color-gold);
    transform: scale(1.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .topup-dot {
    animation: none;
  }
  .topup-dot:nth-child(3) {
    background: var(--color-gold);
  }
}

.topup-sepa-badge {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-gold-dim);
  border-radius: 20px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: var(--space-3xl);
}

/* ============================================
   Instant Transfers - Friend Transfer
   ============================================ */
.transfers {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-section) var(--space-xl);
  background: var(--color-bg-surface);
}

.transfers-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.transfers-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.transfers-subtitle {
  color: var(--color-text-muted);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-4xl);
}

.transfers-demo {
  margin-bottom: var(--space-4xl);
}

.transfers-phone {
  width: 280px;
  height: 400px;
  margin: 0 auto;
  background: var(--color-bg-card);
  border: 2px solid var(--color-line);
  border-radius: 32px;
  padding: var(--space-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.transfers-phone-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
}

.transfers-recipient {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.transfers-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-bg-elevated);
  border: 2px solid var(--color-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--color-gold);
}

.transfers-recipient-name {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  font-weight: 500;
}

.transfers-amount-input {
  display: flex;
  align-items: baseline;
  gap: 0.1em;
}

.transfers-amount-currency {
  font-size: var(--font-size-2xl);
  font-weight: 300;
  color: var(--color-text-muted);
}

.transfers-amount-value {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

.transfers-send-btn {
  width: 100%;
  padding: var(--space-md) var(--space-xl);
  background: var(--color-gold);
  color: var(--color-bg-main);
  border: none;
  border-radius: 12px;
  font-size: var(--font-size-lg);
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-base);
  position: relative;
  overflow: hidden;
}

.transfers-send-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--color-gold-glow);
}

.transfers-send-text {
  transition: opacity var(--transition-base);
}

.transfers-send-check {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.transfers-send-btn.sent {
  background: #22c55e;
}

.transfers-send-btn.sent .transfers-send-text {
  opacity: 0;
}

.transfers-send-btn.sent .transfers-send-check {
  opacity: 1;
}

/* ============================================
   Savings - Live Yield
   ============================================ */
.savings {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-section) var(--space-xl);
  background: var(--color-bg-main);
  position: relative;
  overflow: hidden;
}

.savings-container {
  text-align: center;
  z-index: 1;
}

.savings-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3xl);
}

.savings-display {
  margin-bottom: var(--space-xl);
}

.savings-counter-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1em;
}

.savings-currency {
  font-size: calc(var(--font-size-hero) * 0.5);
  font-weight: 300;
  color: var(--color-text-muted);
  font-variant-numeric: tabular-nums;
}

.savings-counter {
  font-size: var(--font-size-hero);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--color-text);
}

.savings-yield {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.savings-yield-arrow {
  font-size: var(--font-size-2xl);
  color: var(--color-gold);
  animation: floatUp 2s ease-in-out infinite;
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-5px);
    opacity: 0.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  .savings-yield-arrow {
    animation: none;
  }
}

.savings-yield-rate {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--color-gold);
}

.savings-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-top: var(--space-2xl);
}

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

.savings-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleRise 4s ease-out infinite;
}

@keyframes particleRise {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  10% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-200px) scale(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .savings-particle {
    animation: none;
    display: none;
  }
}

/* ============================================
   Card Feature - Coming Soon
   ============================================ */
.card-feature {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-section) var(--space-xl);
  background: var(--color-bg-surface);
}

.card-feature-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.coming-soon-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-gold-dim);
  border-radius: 20px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xl);
}

.card-feature-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.card-feature-subtitle {
  color: var(--color-text-muted);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-4xl);
}

.card-visual {
  margin-bottom: var(--space-4xl);
  perspective: 1000px;
}

.card-mockup {
  width: 340px;
  height: 200px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--color-bg-elevated) 0%, var(--color-bg-card) 100%);
  border-radius: 16px;
  border: 1px solid var(--color-line);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: rotateX(5deg) rotateY(-5deg);
  transition: transform var(--transition-base);
  opacity: 0.7;
}

.card-mockup:hover {
  transform: rotateX(0) rotateY(0);
}

.card-mockup-inner {
  padding: var(--space-xl);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.card-mockup-logo {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-gold);
}

.card-mockup-chip {
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, var(--color-gold-dim) 0%, var(--color-gold) 100%);
  border-radius: 6px;
  margin-top: var(--space-lg);
  opacity: 0.6;
}

.card-mockup-number {
  font-size: var(--font-size-lg);
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-top: auto;
  font-variant-numeric: tabular-nums;
}

.card-mockup-name {
  font-size: var(--font-size-sm);
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--space-sm);
}

/* ============================================
   Tax Report - Coming Soon
   ============================================ */
.tax {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-section) var(--space-xl);
  background: var(--color-bg-main);
}

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

.tax-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.tax-subtitle {
  color: var(--color-text-muted);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-4xl);
}

.tax-visual {
  margin-bottom: var(--space-4xl);
}

.tax-document {
  width: 200px;
  height: 260px;
  margin: 0 auto;
  background: var(--color-bg-card);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  padding: var(--space-xl);
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  opacity: 0.7;
}

.tax-document-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-line-dim);
}

.tax-document-header svg {
  width: 24px;
  height: 24px;
  color: var(--color-gold);
  opacity: 0.7;
}

.tax-document-header span {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-muted);
}

.tax-document-lines {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.tax-line {
  height: 8px;
  background: var(--color-bg-surface);
  border-radius: 4px;
}

.tax-line-short {
  width: 60%;
}

.tax-document-check {
  position: absolute;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

.tax-document-check svg {
  width: 20px;
  height: 20px;
  color: var(--color-bg-main);
}

/* ============================================
   Final Section - Trust + CTA
   ============================================ */
.final {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-section) var(--space-xl);
  background: var(--color-bg-surface);
  overflow: hidden;
}

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

/* CTA Section */
.cta-section {
  text-align: center;
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.cta-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-gold-pulse) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none;
}

.cta-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.cta-button {
  background: var(--color-gold);
  color: var(--color-bg-main);
  border: none;
  padding: var(--space-lg) var(--space-3xl);
  border-radius: 8px;
  font-size: var(--font-size-lg);
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
  z-index: 1;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--color-gold-glow);
}

.cta-social-proof {
  margin-top: var(--space-2xl);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  position: relative;
  z-index: 1;
}

.cta-count {
  color: var(--color-gold);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: var(--space-3xl) var(--space-xl);
  background: var(--color-bg-main);
  border-top: 1px solid var(--color-line-dim);
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

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

.footer-logo {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-text);
}

.footer-tagline {
  font-size: var(--font-size-sm);
  color: var(--color-text-dim);
  margin-top: var(--space-xs);
}

.footer-links {
  display: flex;
  gap: var(--space-xl);
}

.footer-link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--font-size-sm);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-text);
}

.footer-legal {
  font-size: var(--font-size-xs);
  color: var(--color-text-dim);
  text-align: center;
}

/* ============================================
   Mobile Responsiveness
   ============================================ */
@media (max-width: 768px) {
  :root {
    --font-size-hero: 3rem;
    --font-size-3xl: 2rem;
  }

  /* Navigation */
  .nav-links {
    display: none;
  }

  /* Hero */
  .hero-tagline-main {
    font-size: var(--font-size-2xl);
  }

  /* Timeline */
  .timeline-title {
    font-size: var(--font-size-2xl);
  }

  .timeline-hours {
    margin-left: 100px;
    padding-left: var(--space-md);
    font-size: 0.65rem;
  }

  .timeline-row {
    flex-direction: row;
    align-items: center;
    gap: var(--space-md);
  }

  .timeline-row-label {
    width: 100px;
    flex-shrink: 0;
    font-size: var(--font-size-xs);
    text-align: right;
  }

  .timeline-bar {
    height: 24px;
    flex: 1;
  }

  .timeline-label {
    font-size: 0.65rem;
  }

  .timeline-legend {
    gap: var(--space-lg);
  }

  /* Borrow */
  .borrow-demo {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .borrow-arrow {
    transform: rotate(90deg);
  }

  .borrow-result-amount {
    font-size: var(--font-size-3xl);
  }

  /* Top Up */
  .topup-visual {
    flex-direction: column;
    gap: var(--space-md);
  }

  .topup-connection {
    width: auto;
    height: 60px;
    transform: none;
  }

  .topup-dots {
    flex-direction: column;
    height: 100%;
  }

  .topup-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .topup-icon-wrapper svg {
    width: 36px;
    height: 36px;
  }

  .topup-land-logo {
    font-size: var(--font-size-2xl);
  }

  /* Transfers */
  .transfers-phone {
    width: 260px;
    height: 360px;
  }

  /* Savings */
  .savings-counter {
    font-size: var(--font-size-4xl);
  }

  .savings-currency {
    font-size: var(--font-size-2xl);
  }

  /* Card Feature */
  .card-mockup {
    width: 300px;
    height: 180px;
  }

  .card-mockup-inner {
    padding: var(--space-lg);
  }

  .card-mockup-logo {
    font-size: var(--font-size-lg);
  }

  .card-mockup-chip {
    width: 32px;
    height: 24px;
    margin-top: var(--space-md);
  }

  .card-mockup-number {
    font-size: var(--font-size-sm);
    letter-spacing: 0.1em;
  }

  .card-mockup-name {
    font-size: var(--font-size-xs);
  }

  /* Tax */
  .tax-document {
    width: 180px;
    height: 240px;
  }

  .tax-document-header {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
  }

  .tax-document-header svg {
    width: 20px;
    height: 20px;
  }

  .tax-document-header span {
    font-size: var(--font-size-xs);
  }

  .tax-document-check {
    width: 32px;
    height: 32px;
    bottom: var(--space-lg);
    right: var(--space-lg);
  }

  .tax-document-check svg {
    width: 16px;
    height: 16px;
  }

  /* CTA */
  .cta-title {
    font-size: var(--font-size-2xl);
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
  }
}

/* Tablet breakpoint */
@media (max-width: 1024px) and (min-width: 769px) {
  /* Borrow */
  .borrow-demo {
    flex-wrap: wrap;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  :root {
    --font-size-hero: 2.5rem;
    --space-xl: 1.5rem;
  }

  .hero-currency {
    font-size: calc(var(--font-size-hero) * 0.5);
  }

  /* Timeline small mobile */
  .timeline-hours {
    margin-left: 80px;
    font-size: 0.55rem;
  }

  .timeline-row-label {
    width: 80px;
    font-size: 0.65rem;
  }

  .timeline-bar {
    height: 20px;
  }

  .timeline-label {
    font-size: 0.55rem;
  }

  .holding {
    grid-template-columns: auto auto 1fr;
    gap: var(--space-sm);
  }

  .holding-shares {
    text-align: left;
  }

  .holding-value {
    text-align: right;
  }

  .topup-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .topup-connection {
    height: 50px;
  }

  /* Card small mobile */
  .card-mockup {
    width: 260px;
    height: 160px;
  }

  /* Tax small mobile */
  .tax-document {
    width: 160px;
    height: 210px;
    padding: var(--space-lg);
  }
}

/* ============================================
   FAQ Page
   ============================================ */
.faq-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: calc(var(--nav-height) + var(--space-4xl)) var(--space-xl) var(--space-4xl);
  background: var(--color-bg-main);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.faq-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.faq-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-4xl);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-line-dim);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item:hover {
  border-color: var(--color-line);
}

.faq-item.open {
  border-color: var(--color-gold-dim);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xl);
  background: none;
  border: none;
  color: var(--color-text);
  font-size: var(--font-size-lg);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-base);
}

.faq-question:hover {
  color: var(--color-gold);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform var(--transition-base), color var(--transition-base);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--color-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 var(--space-xl);
  transition: max-height var(--transition-slow), padding-bottom var(--transition-slow);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: var(--space-xl);
}

.faq-answer p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding-top: calc(var(--nav-height) + var(--space-2xl));
  }

  .faq-title {
    font-size: var(--font-size-2xl);
  }

  .faq-question {
    font-size: var(--font-size-base);
    padding: var(--space-lg);
  }

  .faq-answer {
    padding: 0 var(--space-lg);
  }

  .faq-item.open .faq-answer {
    padding-bottom: var(--space-lg);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   Experimental Page - Barrel Scroll Selector
   ============================================ */

/* CSS Variables for Barrel */
:root {
  --barrel-item-height: 48px;
  --barrel-visible-items: 7;
  --barrel-radius: 120px;
  --barrel-rotation-per-item: 25.7deg;
}

/* Page Layout */
.experimental-page {
  min-height: 100vh;
  overflow: hidden;
  position: fixed;
  inset: 0;
  touch-action: none;
}

/* Header */
.exp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--space-xl);
  background: linear-gradient(to bottom, var(--color-bg-main), transparent);
}

.exp-logo {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.exp-faq-link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 500;
  padding: var(--space-sm) var(--space-md);
  transition: color var(--transition-fast);
}

.exp-faq-link:hover {
  color: var(--color-text);
}

.exp-header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-switcher-btn {
  background: none;
  border: 1px solid var(--color-line);
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-family);
  transition: color var(--transition-fast), border-color var(--transition-fast);
  line-height: 1;
}

.lang-switcher-btn:hover {
  color: var(--color-text);
  border-color: var(--color-text-muted);
}

.lang-switcher-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-line);
  border-radius: 6px;
  overflow: hidden;
  z-index: 200;
  min-width: 48px;
}

.lang-switcher--open .lang-switcher-menu {
  display: flex;
  flex-direction: column;
}

.lang-switcher-option {
  display: block;
  padding: 6px 12px;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--font-size-xs);
  font-weight: 500;
  text-align: center;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.lang-switcher-option:hover {
  background: var(--color-bg-elevated);
  color: var(--color-text);
}

.lang-switcher-option--active {
  color: var(--color-gold);
}

/* Main Layout */
.exp-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4xl);
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-xl);
}

/* Barrel Container */
.exp-barrel-container {
  flex-shrink: 0;
  touch-action: pan-y;
}

.exp-barrel-viewport {
  position: relative;
  height: calc(var(--barrel-item-height) * var(--barrel-visible-items));
  width: 560px;
  perspective: 800px;
  perspective-origin: center center;
  overflow: hidden;
  transform-style: preserve-3d;
}

/* Highlight bar behind center item */
.exp-barrel-highlight {
  display: none;
}

/* Fade gradients at edges */
.exp-barrel-fade {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 2;
}

.exp-barrel-fade-top {
  top: 0;
  background: linear-gradient(to bottom, var(--color-bg-main), transparent);
}

.exp-barrel-fade-bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--color-bg-main), transparent);
}

/* Barrel 3D Cylinder */
.exp-barrel {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  outline: none;
}

.exp-barrel-item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: var(--barrel-item-height);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-muted);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  will-change: transform, opacity, visibility;
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.exp-barrel-item.active {
  color: var(--color-gold);
  font-size: 36px;
  font-weight: 600;
}

/* Phone Mockup */
.exp-phone-container {
  flex-shrink: 0;
}

.exp-phone {
  position: relative;
  width: 520px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

.exp-phone-frame {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.exp-phone-screen {
  position: absolute;
  z-index: 1;
  top: 1.8%;
  left: 5.5%;
  right: 5.5%;
  bottom: 1.8%;
  border-radius: 76px;
  background: var(--color-bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  padding: var(--space-2xl);
  padding-top: 60px;
  opacity: 1;
  transition: opacity 0.15s ease;
  overflow: hidden;
}

.exp-phone-screen.transitioning {
  opacity: 0.6;
}

/* Phone Content Styles */
.exp-phone-icon {
  width: 80px;
  height: 80px;
  color: var(--color-gold);
}

.exp-phone-title {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
}

.exp-phone-value {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--color-gold);
  font-variant-numeric: tabular-nums;
}

.exp-phone-subtitle {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  text-align: center;
}

.exp-phone-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: inherit;
}

.exp-phone-chip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid var(--color-gold-dim);
  border-radius: 24px;
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  z-index: 10;
}

/* Description Panel */
.exp-description {
  max-width: 400px;
  flex-shrink: 0;
}

.exp-description-text {
  font-size: var(--font-size-xl);
  color: var(--color-text);
  line-height: 1.5;
  height: calc(4 * 1.5em);
  margin-bottom: var(--space-xl);
  opacity: 1;
  transition: opacity 0.15s ease;
}

.exp-description-text.transitioning {
  opacity: 0.6;
}

.exp-cta-btn {
  background: var(--color-gold);
  color: var(--color-bg-main);
  border: none;
  padding: var(--space-md) var(--space-xl);
  border-radius: 8px;
  font-size: var(--font-size-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.exp-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--color-gold-glow);
}

/* Liquid Glass Overlay (Mobile Only) */
.exp-liquid-glass {
  display: none;
}

/* ============================================
   Experimental Page - Laptop/Small Desktop Layout
   ============================================ */
@media (max-width: 1750px) and (min-width: 1201px) {
  :root {
    --barrel-item-height: 42px;
    --barrel-radius: 105px;
  }

  .exp-main {
    gap: var(--space-2xl);
    padding: calc(var(--nav-height) + var(--space-lg)) var(--space-xl);
  }

  .exp-barrel-viewport {
    width: 400px;
  }

  .exp-barrel-item {
    font-size: var(--font-size-sm);
  }

  .exp-barrel-item.active {
    font-size: 24px;
  }

  /* Cap phone width so its height (~2x width) fits the viewport */
  .exp-phone {
    width: min(380px, calc((100vh - var(--nav-height) - 4rem) * 0.49));
  }

  .exp-phone-screen {
    border-radius: min(56px, 7.5%);
  }

  .exp-description {
    max-width: 280px;
  }

  .exp-description-text {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-md);
  }

  .exp-cta-btn {
    font-size: var(--font-size-sm);
    padding: var(--space-sm) var(--space-lg);
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  :root {
    --barrel-item-height: 36px;
    --barrel-radius: 90px;
  }

  .exp-main {
    gap: var(--space-xl);
    padding: calc(var(--nav-height) + var(--space-lg)) var(--space-lg);
  }

  .exp-barrel-viewport {
    width: 320px;
  }

  .exp-barrel-item {
    font-size: var(--font-size-xs);
  }

  .exp-barrel-item.active {
    font-size: 18px;
  }

  .exp-phone {
    width: min(320px, calc((100vh - var(--nav-height) - 4rem) * 0.49));
  }

  .exp-phone-screen {
    border-radius: min(48px, 7.5%);
  }

  .exp-description {
    max-width: 220px;
  }

  .exp-description-text {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-sm);
  }

  .exp-cta-btn {
    font-size: var(--font-size-xs);
    padding: var(--space-sm) var(--space-md);
  }
}

/* ============================================
   Experimental Page - Mobile Layout
   ============================================ */
@media (max-width: 768px) {
  .exp-main {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--nav-height) - 10px) 0 0;
    height: 100vh;
    overflow: hidden;
  }

  /* Barrel takes top portion - centered between header and phone */
  .exp-barrel-container {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    height: calc(42% - var(--nav-height));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
  }

  .exp-barrel-viewport {
    width: 90vw;
    max-width: 400px;
    height: calc(var(--barrel-item-height) * 6);
  }

  .exp-barrel-item {
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    font-size: 18px;
  }

  .exp-barrel-item.active {
    font-size: 25px;
  }

  /* Hide desktop description */
  .exp-description {
    display: none;
  }

  /* Phone in the middle area */
  .exp-phone-container {
    position: fixed;
    top: 42%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }

  .exp-phone {
    width: 280px;
  }

  .exp-phone-screen {
    border-radius: 42px;
    padding-top: 50px;
    gap: var(--space-md);
  }

  .exp-phone-icon {
    width: 48px;
    height: 48px;
  }

  .exp-phone-title {
    font-size: var(--font-size-base);
  }

  .exp-phone-value {
    font-size: var(--font-size-xl);
  }

  .exp-phone-subtitle {
    font-size: var(--font-size-xs);
  }

  .exp-phone-chip {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--font-size-sm);
  }

  /* Liquid Glass Overlay */
  .exp-liquid-glass {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg) var(--space-xl);
    padding-bottom: var(--space-xl);
    background: rgba(26, 26, 26, 0.2);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
    z-index: 50;
  }

  .exp-liquid-description {
    font-size: 18px !important;
    color: var(--color-text);
    text-align: center;
    line-height: 1.5;
    height: calc(3 * 1.5em);
    max-width: 320px;
    opacity: 1;
    transition: opacity 0.15s ease;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  .exp-liquid-description.transitioning {
    opacity: 0.6;
  }

  .exp-liquid-cta {
    background: var(--color-gold);
    color: var(--color-bg-main);
    border: none;
    padding: var(--space-sm) var(--space-2xl);
    border-radius: 8px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--transition-fast);
  }

  .exp-liquid-cta:active {
    transform: scale(0.98);
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .exp-barrel-viewport {
    width: 95vw;
  }

  .exp-phone {
    width: 240px;
  }

  .exp-phone-screen {
    border-radius: 36px;
    padding-top: 40px;
  }

  .exp-liquid-description {
    font-size: 16px !important;
  }

  .exp-phone-chip {
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--font-size-xs);
  }
}

/* Powered By */
.powered-by {
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
}

.powered-by-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

.powered-by-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.powered-by-logos a {
  opacity: 0.5;
  transition: opacity var(--transition-base);
  line-height: 0;
}

.powered-by-logos a:hover {
  opacity: 0.8;
}

.powered-by-logo {
  height: 24px;
  width: auto;
}

.powered-by-logo--composite {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.powered-by-logo--composite img {
  height: 24px;
  width: auto;
}

.powered-by-logo--composite span {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-text);
}

@media (max-width: 600px) {
  .powered-by-logos {
    gap: var(--space-xl);
  }

  .powered-by-logo {
    height: 20px;
  }

  .powered-by-logo--composite img {
    height: 20px;
  }

  .powered-by-logo--composite span {
    font-size: var(--font-size-base);
  }
}
