/* =============================================
   AUREVEX — MAIN STYLESHEET
   Gradient Atmosphere Design System
   ============================================= */


:root {
  --primary: oklch(55% 0.22 265);
  --secondary: oklch(62% 0.20 310);
  --accent: oklch(70% 0.18 195);

  --primary-light: color-mix(in oklch, var(--primary), white 40%);
  --primary-dark: color-mix(in oklch, var(--primary), black 25%);
  --primary-subtle: color-mix(in oklch, var(--primary), white 85%);
  --secondary-light: color-mix(in oklch, var(--secondary), white 40%);
  --secondary-subtle: color-mix(in oklch, var(--secondary), white 85%);
  --accent-light: color-mix(in oklch, var(--accent), white 40%);
  --accent-subtle: color-mix(in oklch, var(--accent), white 85%);

  --surface-base: oklch(98% 0.005 265);
  --surface-card: oklch(100% 0 0);
  --surface-muted: oklch(96% 0.008 265);
  --text-primary: oklch(18% 0.02 265);
  --text-secondary: oklch(42% 0.02 265);
  --text-muted: oklch(58% 0.015 265);
  --text-on-dark: oklch(97% 0.005 265);
  --border-subtle: color-mix(in oklch, var(--primary), white 82%);
  --border-medium: color-mix(in oklch, var(--primary), white 65%);

  --gradient-main: linear-gradient(135deg,
    oklch(42% 0.24 270) 0%,
    oklch(52% 0.22 295) 35%,
    oklch(58% 0.20 315) 65%,
    oklch(62% 0.18 340) 100%);

  --gradient-hero: linear-gradient(140deg,
    oklch(22% 0.18 265) 0%,
    oklch(32% 0.22 285) 30%,
    oklch(40% 0.20 310) 60%,
    oklch(28% 0.16 330) 100%);

  --gradient-section: linear-gradient(160deg,
    oklch(95% 0.015 265) 0%,
    oklch(93% 0.018 295) 50%,
    oklch(95% 0.012 315) 100%);

  --gradient-card-accent: linear-gradient(135deg,
    var(--primary) 0%, var(--secondary) 100%);

  --shadow-sm: 0 1px 3px oklch(20% 0.05 265 / 0.08), 0 1px 2px oklch(20% 0.05 265 / 0.05);
  --shadow-md: 0 4px 12px oklch(20% 0.05 265 / 0.10), 0 2px 6px oklch(20% 0.05 265 / 0.06);
  --shadow-lg: 0 10px 30px oklch(20% 0.05 265 / 0.12), 0 4px 12px oklch(20% 0.05 265 / 0.08);
  --shadow-xl: 0 20px 50px oklch(20% 0.05 265 / 0.15), 0 8px 20px oklch(20% 0.05 265 / 0.10);
  --shadow-glow: 0 0 40px color-mix(in oklch, var(--primary), transparent 60%);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --nav-height: 72px;
  --transition-fast: 180ms ease;
  --transition-base: 280ms ease;
  --transition-slow: 420ms ease;
}


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

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--surface-base);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }


h1, h2, h3, h4, h5, h6 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.hero-display-heading {
  font-size: clamp(2.4rem, 5vw + 1rem, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-on-dark);
}

.section-heading {
  font-size: clamp(1.6rem, 2.5vw + 0.5rem, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-xs);
  background: var(--primary-subtle);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}


.gradient-text-fill {
  background: linear-gradient(90deg, var(--accent-light), oklch(80% 0.15 195));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.section-header-block .section-subtext {
  margin: 0 auto;
  margin-top: var(--space-sm);
}

/* =============================================
   NAVIGATION
   ============================================= */
.main-navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition-base), box-shadow var(--transition-base);
  height: var(--nav-height);
}

.main-navigation.scrolled {
  background: color-mix(in oklch, var(--surface-card), transparent 5%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--border-subtle);
}

.navigation-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
}

.navigation-front {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-lg);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-image { width: 32px; height: 32px; }

.brand-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.desktop-navigation {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--primary-subtle);
}

.navigation-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.action-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gradient-main);
  color: white;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  transition: opacity var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-sm), 0 0 20px color-mix(in oklch, var(--primary), transparent 70%);
  white-space: nowrap;
}

.action-button-primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md), 0 0 30px color-mix(in oklch, var(--primary), transparent 55%);
}


.mobile-menu-trigger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-menu-trigger:hover { background: var(--primary-subtle); }

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}


.mobile-menu-flip-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  perspective: 1200px;
  pointer-events: none;
}

.mobile-menu-flip-container.is-open {
  pointer-events: all;
}

.mobile-menu-flip-card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-flip-card.is-flipped {
  transform: rotateX(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.flip-card-back {
  transform: rotateX(180deg);
  background: var(--gradient-hero);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  overflow-y: auto;
}

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

.mobile-menu-header .brand-name {
  -webkit-text-fill-color: white;
  background: none;
  color: white;
  font-size: 1.4rem;
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: color-mix(in oklch, white, transparent 85%);
  color: white;
  font-size: 1.2rem;
  transition: background var(--transition-fast);
}

.mobile-menu-close:hover { background: color-mix(in oklch, white, transparent 70%); }

.mobile-navigation-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.mobile-nav-link {
  display: block;
  font-size: 1.4rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  color: color-mix(in oklch, white, transparent 15%);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid color-mix(in oklch, white, transparent 85%);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.mobile-nav-link:hover {
  color: white;
  padding-left: var(--space-sm);
}

.mobile-menu-footer-info {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.mobile-menu-footer-info p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: color-mix(in oklch, white, transparent 25%);
  font-size: 0.9rem;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-background-layer {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.hero-midground-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.floating-orb {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(80px);
  animation: float-orb 8s ease-in-out infinite;
}

.orb-one {
  width: 500px;
  height: 500px;
  background: color-mix(in oklch, var(--secondary), transparent 55%);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.orb-two {
  width: 350px;
  height: 350px;
  background: color-mix(in oklch, var(--accent), transparent 60%);
  bottom: 50px;
  left: -80px;
  animation-delay: -3s;
}

.orb-three {
  width: 280px;
  height: 280px;
  background: color-mix(in oklch, var(--primary-light), transparent 50%);
  top: 40%;
  left: 35%;
  animation-delay: -5s;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.97); }
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.hero-split-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero-center-bridge {
  text-align: center;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: color-mix(in oklch, white, transparent 82%);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid color-mix(in oklch, white, transparent 70%);
  width: fit-content;
  margin: 0 auto;
}

.hero-subheading {
  font-size: 1rem;
  color: color-mix(in oklch, white, transparent 20%);
  line-height: 1.65;
}

.hero-action-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.primary-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-main);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
  box-shadow: var(--shadow-lg), 0 0 40px color-mix(in oklch, var(--primary), transparent 55%);
  white-space: nowrap;
}

.primary-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), 0 0 60px color-mix(in oklch, var(--primary), transparent 45%);
}

.secondary-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: color-mix(in oklch, white, transparent 15%);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.secondary-cta-link:hover {
  color: white;
  gap: 0.7rem;
}


.hero-problem-side,
.hero-solution-side {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.split-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
}

.problem-label {
  background: color-mix(in oklch, oklch(55% 0.20 25), transparent 80%);
  color: oklch(85% 0.12 25);
  border: 1px solid color-mix(in oklch, oklch(55% 0.20 25), transparent 65%);
}

.solution-label {
  background: color-mix(in oklch, oklch(55% 0.20 145), transparent 80%);
  color: oklch(85% 0.12 145);
  border: 1px solid color-mix(in oklch, oklch(55% 0.20 145), transparent 65%);
}

.problem-illustration,
.solution-illustration {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.split-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.problem-overlay,
.solution-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-sm);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.problem-overlay {
  background: color-mix(in oklch, oklch(15% 0.05 25), transparent 20%);
}

.solution-overlay {
  background: color-mix(in oklch, oklch(15% 0.10 265), transparent 20%);
}

.problem-points,
.solution-points {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.problem-points li,
.solution-points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: white;
}

.problem-points li i { color: oklch(70% 0.18 25); }
.solution-points li i { color: oklch(75% 0.18 145); }


.hero-market-ticker {
  background: color-mix(in oklch, white, transparent 88%);
  backdrop-filter: blur(20px);
  border: 1px solid color-mix(in oklch, white, transparent 75%);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.ticker-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: color-mix(in oklch, white, transparent 20%);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.ticker-items {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.ticker-coin {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.coin-symbol {
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.coin-name {
  font-size: 0.82rem;
  color: color-mix(in oklch, white, transparent 30%);
}

.coin-indicator { font-size: 0.9rem; }
.coin-indicator.positive { color: oklch(72% 0.18 145); }
.coin-indicator.neutral { color: color-mix(in oklch, white, transparent 35%); }

/* =============================================
   INNER PAGE HERO
   ============================================= */
.inner-page-hero {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-xl);
  overflow: hidden;
  text-align: center;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.inner-page-heading {
  font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}

.inner-page-subtext {
  font-size: 1.05rem;
  color: color-mix(in oklch, white, transparent 20%);
  line-height: 1.7;
  max-width: 560px;
}

/* =============================================
   SHARE WIDGET
   ============================================= */
.share-page-widget {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-sm);
  max-width: 1200px;
  margin: var(--space-md) auto 0;
  padding: 0 var(--space-md);
  position: relative;
}

.copy-link-button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--primary);
  background: var(--primary-subtle);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.copy-link-button:hover {
  background: var(--primary-light);
  color: white;
  transform: translateY(-1px);
}

.copy-toast {
  position: absolute;
  right: var(--space-md);
  top: -2rem;
  background: var(--text-primary);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(5px);
  transition: all var(--transition-fast);
  pointer-events: none;
}

.copy-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   KEY BENEFITS SECTION
   ============================================= */
.key-benefits-section {
  padding: var(--space-2xl) 0;
  background: var(--surface-base);
}

.benefits-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}

.benefit-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  cursor: default;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 30px color-mix(in oklch, var(--primary), transparent 85%);
  border-color: var(--border-medium);
}

.benefit-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--gradient-main);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-md), 0 0 20px color-mix(in oklch, var(--primary), transparent 65%);
}

.benefit-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.benefit-card-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =============================================
   TABBED CONTENT SECTION
   ============================================= */
.tabbed-content-section {
  padding: var(--space-2xl) 0;
  background: var(--gradient-section);
}

.tab-interface {
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.tab-navigation-bar {
  display: flex;
  border-bottom: 1px solid var(--border-subtle);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tab-navigation-bar::-webkit-scrollbar { display: none; }

.tab-trigger {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--space-md) var(--space-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.tab-trigger:hover { color: var(--primary); background: var(--primary-subtle); }

.tab-trigger.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: var(--primary-subtle);
}

.tab-content-panels { padding: var(--space-xl); }

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade-in 0.3s ease; }

@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.tab-panel-text h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.tab-panel-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.tab-panel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: var(--space-sm);
  transition: gap var(--transition-fast);
}

.tab-panel-link:hover { gap: 0.7rem; }

.tab-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* =============================================
   SUPPORTED ASSETS SECTION
   ============================================= */
.supported-assets-section {
  padding: var(--space-2xl) 0;
  background: var(--surface-base);
}

.assets-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.asset-display-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  cursor: default;
}

.asset-display-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-medium);
}

.asset-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.asset-icon-circle.large-icon {
  width: 72px;
  height: 72px;
  font-size: 1.8rem;
}

.bitcoin-gradient { background: linear-gradient(135deg, oklch(65% 0.18 60), oklch(72% 0.20 45)); }
.ethereum-gradient { background: linear-gradient(135deg, oklch(55% 0.20 265), oklch(62% 0.18 295)); }
.usdc-gradient { background: linear-gradient(135deg, oklch(55% 0.20 220), oklch(62% 0.18 240)); }
.litecoin-gradient { background: linear-gradient(135deg, oklch(55% 0.05 265), oklch(65% 0.05 265)); }

.asset-symbol {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.asset-full-name {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.assets-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-md);
  background: var(--surface-muted);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  line-height: 1.65;
}

/* =============================================
   COMPLIANCE STRIP
   ============================================= */
.compliance-highlight-section {
  padding: var(--space-lg) 0;
  background: var(--gradient-main);
}

.compliance-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.compliance-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
}

.compliance-item i { font-size: 1rem; opacity: 0.85; }

.compliance-divider {
  width: 1px;
  height: 24px;
  background: color-mix(in oklch, white, transparent 65%);
}

/* =============================================
   ABOUT PREVIEW SECTION
   ============================================= */
.about-preview-section {
  padding: var(--space-2xl) 0;
  background: var(--surface-base);
}

.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-preview-visual {
  position: relative;
}

.about-preview-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-visual-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
}

.accent-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gradient-main);
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-lg);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg), 0 0 30px color-mix(in oklch, var(--primary), transparent 55%);
}

.about-preview-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-preview-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.about-contact-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--surface-muted);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.contact-detail-item i {
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

/* =============================================
   WHY US PAGE SECTIONS
   ============================================= */
.why-us-intro-section {
  padding: var(--space-2xl) 0;
  background: var(--surface-base);
}

.why-us-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.why-intro-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.why-intro-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.why-intro-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.compliance-pillars-section {
  padding: var(--space-2xl) 0;
  background: var(--gradient-section);
}

.pillars-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.pillar-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--surface-card);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.pillar-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.pillar-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
}

.pillar-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.pillar-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.transparency-section {
  padding: var(--space-2xl) 0;
  background: var(--surface-base);
}

.transparency-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

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

.transparency-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.transparency-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.transparency-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 0.7rem 1rem;
  background: var(--surface-muted);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
  cursor: default;
}

.transparency-feature:hover {
  background: var(--primary-subtle);
  border-color: var(--border-medium);
}

.transparency-feature i { color: var(--primary); }

.transparency-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}


.risk-disclosure-section { padding: var(--space-xl) 0 var(--space-2xl); }

.risk-disclosure-box {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: color-mix(in oklch, oklch(65% 0.18 60), transparent 92%);
  border: 1px solid color-mix(in oklch, oklch(65% 0.18 60), transparent 70%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.risk-icon {
  font-size: 1.5rem;
  color: oklch(60% 0.18 60);
  flex-shrink: 0;
  margin-top: 2px;
}

.risk-content h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.risk-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =============================================
   CRYPTO EXCHANGE PAGE
   ============================================= */
.exchange-overview-section { padding: var(--space-2xl) 0; background: var(--surface-base); }

.exchange-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.exchange-overview-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.exchange-overview-content p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; }

.exchange-overview-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.supported-pairs-section { padding: var(--space-2xl) 0; background: var(--gradient-section); }

.pairs-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

.pair-detail-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.pair-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.pair-identity h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }

.pair-ticker {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
}

.pair-detail-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

.pair-attributes {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-xs);
}

.pair-attribute {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-subtle);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
}

.exchange-process-section { padding: var(--space-2xl) 0; background: var(--surface-base); }

.process-steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-steps-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-main);
}

.process-step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-md) 0;
  position: relative;
}

.step-marker {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: var(--radius-full);
  background: var(--gradient-main);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: var(--shadow-md), 0 0 20px color-mix(in oklch, var(--primary), transparent 65%);
  position: relative;
  z-index: 1;
}

.step-content { padding-top: 0.8rem; }
.step-content h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.step-content p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

.wallet-feature-section { padding: var(--space-2xl) 0; background: var(--gradient-section); }

.wallet-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.wallet-feature-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.wallet-feature-content { display: flex; flex-direction: column; gap: var(--space-md); }
.wallet-feature-content p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; }

.wallet-attributes { display: flex; flex-direction: column; gap: var(--space-sm); margin-top: var(--space-sm); }

.wallet-attribute-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 0.8rem 1rem;
  background: var(--surface-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
  cursor: default;
}

.wallet-attribute-item:hover { border-color: var(--border-medium); background: var(--primary-subtle); }
.wallet-attribute-item i { color: var(--primary); font-size: 1rem; }

.exchange-risk-section { padding: var(--space-xl) 0 var(--space-2xl); }

/* =============================================
   KYC REQUIREMENTS PAGE
   ============================================= */
.kyc-intro-section { padding: var(--space-2xl) 0; background: var(--surface-base); }

.kyc-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.kyc-intro-content { display: flex; flex-direction: column; gap: var(--space-md); }
.kyc-intro-content p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; }

.kyc-intro-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.kyc-requirements-section { padding: var(--space-2xl) 0; background: var(--gradient-section); }

.kyc-requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.kyc-requirement-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: all var(--transition-base);
}

.kyc-requirement-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.kyc-card-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-main);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.kyc-requirement-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.kyc-requirement-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

.kyc-acceptable-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: var(--space-xs);
}

.kyc-accepted {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.kyc-accepted i { color: oklch(55% 0.20 145); font-size: 0.78rem; }

.kyc-process-section { padding: var(--space-2xl) 0; background: var(--surface-base); }

.kyc-process-steps {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.kyc-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.kyc-step:hover { box-shadow: var(--shadow-md); border-color: var(--border-medium); }

.kyc-step-number {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-full);
  background: var(--gradient-main);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.kyc-step-details h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.kyc-step-details p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

.kyc-eligibility-section { padding: var(--space-xl) 0 var(--space-2xl); background: var(--gradient-section); }

.eligibility-box {
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.eligibility-box h2 { font-size: 1.6rem; margin-bottom: var(--space-lg); }

.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.eligibility-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: var(--space-md);
  border-radius: var(--radius-md);
}

.eligibility-item.eligible { background: color-mix(in oklch, oklch(55% 0.20 145), transparent 92%); border: 1px solid color-mix(in oklch, oklch(55% 0.20 145), transparent 75%); }
.eligibility-item.ineligible { background: color-mix(in oklch, oklch(55% 0.20 25), transparent 92%); border: 1px solid color-mix(in oklch, oklch(55% 0.20 25), transparent 75%); }

.eligibility-item.eligible > i { color: oklch(52% 0.20 145); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.eligibility-item.ineligible > i { color: oklch(55% 0.20 25); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

.eligibility-item div strong { display: block; font-size: 0.95rem; margin-bottom: 0.3rem; }
.eligibility-item div p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.55; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-main-section { padding: var(--space-2xl) 0; background: var(--surface-base); }

.contact-page-grid {
  display: grid;
grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: flex-start;
}

.contact-form-area { display: flex; flex-direction: column; gap: var(--space-md); }
.contact-form-intro { font-size: 0.95rem; color: var(--text-secondary); }


.accordion-form-section {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.accordion-form-section.open {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
}

.accordion-section-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  background: var(--surface-card);
  transition: background var(--transition-fast);
  text-align: left;
}

.accordion-section-trigger:hover { background: var(--surface-muted); }

.accordion-section-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.accordion-section-number {
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.accordion-chevron {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: transform var(--transition-base);
}

.accordion-form-section.open .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-section-body {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  background: var(--surface-card);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-text-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--text-primary);
  background: var(--surface-base);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-text-input:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--primary), transparent 85%);
  background: var(--surface-card);
}

.form-text-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.privacy-field-group { margin-top: var(--space-xs); }

.privacy-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
}

.privacy-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--border-medium);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  margin-top: 2px;
  background: var(--surface-base);
}

.privacy-checkbox:checked + .checkbox-custom {
  background: var(--gradient-main);
  border-color: transparent;
}

.privacy-checkbox:checked + .checkbox-custom::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  display: block;
}

.privacy-label-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.privacy-label-text a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit-row { margin-top: var(--space-sm); }

.form-submit-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-main);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
  box-shadow: var(--shadow-md), 0 0 30px color-mix(in oklch, var(--primary), transparent 65%);
}

.form-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 40px color-mix(in oklch, var(--primary), transparent 55%);
}


.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: sticky;
  top: calc(var(--nav-height) + var(--space-md));
}

.contact-info-card,
.contact-news-card {
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-card h3,
.contact-news-card h3 {
  font-size: 1.1rem;
  color: var(--text-primary);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-subtle);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-icon-wrap {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--primary-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
}

.contact-detail-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.contact-detail-item p,
.contact-detail-item a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  transition: color var(--transition-fast);
}

.contact-detail-item a:hover { color: var(--primary); }


.contact-news-items { display: flex; flex-direction: column; gap: var(--space-md); }

.contact-news-item {
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-subtle);
}

.contact-news-item:last-child { border-bottom: none; padding-bottom: 0; }

.news-date-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-subtle);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.contact-news-item h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.contact-news-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}


.map-section { background: var(--surface-muted); }

.map-label-bar {
  padding: var(--space-sm) 0;
  background: var(--gradient-main);
  color: white;
  font-size: 0.88rem;
  font-weight: 500;
}

.map-label-bar span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.google-map-embed { line-height: 0; }

.google-map-embed iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
  filter: grayscale(20%);
}

/* =============================================
   THANKS PAGE
   ============================================= */
.thanks-page-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-md) var(--space-2xl);
  background: var(--gradient-section);
}

.thanks-page-inner {
  max-width: 560px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  background: var(--surface-card);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-subtle);
}

.thanks-icon-wrap {
  font-size: 3.5rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.thanks-heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--text-primary);
}

.thanks-subtext {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.redirect-countdown-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
}

.countdown-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.countdown-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
}

.countdown-progress-bar {
  width: 100%;
  height: 4px;
  background: var(--surface-muted);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.countdown-progress-fill {
  height: 100%;
  background: var(--gradient-main);
  border-radius: var(--radius-full);
  transition: width 1s linear;
}

.return-now-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition-fast);
}

.return-now-link:hover { gap: 0.7rem; }

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-2xl);
}

.legal-page-header {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
}

.legal-page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-sm);
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.legal-intro {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 820px;
}

.legal-two-column-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-2xl);
  align-items: flex-start;
}

.legal-sidebar-nav {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-md));
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.legal-sidebar-nav nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.legal-nav-link {
  display: block;
  padding: 0.5rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  line-height: 1.4;
}

.legal-nav-link:hover {
  color: var(--primary);
  background: var(--primary-subtle);
}

.legal-main-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.legal-section {
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
}

.legal-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.legal-section h2 {
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  padding-top: var(--space-sm);
}

.legal-section h3 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  margin-top: var(--space-md);
  color: var(--text-primary);
}

.legal-section p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}


.cookie-table-wrapper {
  overflow-x: auto;
  margin: var(--space-md) 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.cookie-detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.cookie-detail-table thead {
  background: var(--gradient-section);
}

.cookie-detail-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cookie-detail-table td {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  line-height: 1.5;
}

.cookie-detail-table tbody tr:hover { background: var(--surface-muted); }

/* =============================================
   PAGE FOOTER
   ============================================= */
.page-footer {
  background: oklch(14% 0.04 265);
  color: color-mix(in oklch, white, transparent 30%);
  margin-top: auto;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md) 0;
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid color-mix(in oklch, white, transparent 88%);
}

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

.footer-logo .brand-name {
  -webkit-text-fill-color: white;
  background: none;
  color: white;
}

.footer-brand-description {
  font-size: 0.85rem;
  line-height: 1.7;
  color: color-mix(in oklch, white, transparent 40%);
  max-width: 300px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: color-mix(in oklch, white, transparent 40%);
  line-height: 1.5;
}

.footer-contact-info i { color: var(--primary-light); margin-top: 2px; flex-shrink: 0; }

.footer-column-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: white;
  margin-bottom: var(--space-sm);
}

.footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-navigation a {
  font-size: 0.85rem;
  color: color-mix(in oklch, white, transparent 40%);
  transition: color var(--transition-fast);
  line-height: 1.5;
}

.footer-navigation a:hover { color: white; }

.footer-news-items { display: flex; flex-direction: column; gap: var(--space-sm); }

.footer-news-item { display: flex; flex-direction: column; gap: 0.3rem; }

.news-date {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-headline {
  font-size: 0.82rem;
  color: color-mix(in oklch, white, transparent 35%);
  line-height: 1.5;
  transition: color var(--transition-fast);
}

.news-headline:hover { color: white; }

.footer-bottom-strip {
  padding: var(--space-md) 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer-legal-text p {
  font-size: 0.78rem;
  color: color-mix(in oklch, white, transparent 55%);
  line-height: 1.65;
  max-width: 680px;
}

.footer-copyright p {
  font-size: 0.78rem;
  color: color-mix(in oklch, white, transparent 50%);
  white-space: nowrap;
}

/* =============================================
   COOKIE CONSENT
   ============================================= */
.cookie-preference-trigger {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  z-index: 900;
}

.cookie-preference-trigger button {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface-card);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.cookie-preference-trigger button:hover {
  color: var(--primary);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
}

.cookie-preference-trigger button i { font-size: 0.85rem; }

@keyframes pulse-cookie {
  0%, 100% { box-shadow: var(--shadow-sm); }
  50% { box-shadow: var(--shadow-md), 0 0 20px color-mix(in oklch, var(--primary), transparent 70%); }
}

.cookie-preference-trigger.pulse-attention button {
  animation: pulse-cookie 2s ease-in-out 3;
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: color-mix(in oklch, oklch(10% 0.05 265), transparent 40%);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.cookie-modal-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-panel {
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 480px;
  width: 100%;
  border: 1px solid var(--border-subtle);
  transform: translateY(20px) scale(0.97);
  transition: transform var(--transition-base);
  overflow: hidden;
}

.cookie-modal-overlay.is-visible .cookie-modal-panel {
  transform: translateY(0) scale(1);
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--gradient-section);
}

.cookie-modal-header h2 {
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.cookie-modal-close:hover { background: var(--surface-muted); color: var(--text-primary); }

.cookie-modal-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cookie-modal-body > p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.cookie-category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--surface-muted);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.cookie-category-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--text-primary);
}

.cookie-category-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.cookie-toggle.always-on {
  font-size: 0.72rem;
  font-weight: 600;
  color: oklch(52% 0.20 145);
  background: color-mix(in oklch, oklch(52% 0.20 145), transparent 88%);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.cookie-toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}

.cookie-toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border-medium);
  border-radius: var(--radius-full);
  transition: background var(--transition-fast);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.cookie-toggle-switch input:checked + .toggle-slider { background: var(--primary); }
.cookie-toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }

.cookie-modal-actions {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--border-subtle);
  background: var(--surface-muted);
}

.cookie-accept-all {
  flex: 1;
  background: var(--gradient-main);
  color: white;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.cookie-accept-all:hover { opacity: 0.9; transform: translateY(-1px); }

.cookie-save-preferences {
  flex: 1;
  background: var(--surface-card);
  color: var(--text-primary);
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  border: 1.5px solid var(--border-medium);
  transition: all var(--transition-fast);
}

.cookie-save-preferences:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* =============================================
   TIPPY CUSTOM THEME
   ============================================= */
.tippy-box[data-theme~='custom'] {
  background: oklch(18% 0.04 265);
  color: white;
  font-size: 0.82rem;
  line-height: 1.55;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  max-width: 240px;
  padding: 0.1rem 0;
}

.tippy-box[data-theme~='custom'] .tippy-arrow { color: oklch(18% 0.04 265); }

.tippy-box[data-theme~='custom'] .tippy-content { padding: 0.6rem 0.9rem; }

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
  .hero-split-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero-problem-side,
  .hero-solution-side {
    display: none;
  }

  .hero-center-bridge {
    max-width: 100%;
    margin: 0 auto;
  }

  .tab-panel-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .tab-panel-visual { order: -1; }

  .about-preview-inner,
  .why-us-intro-grid,
  .exchange-overview-grid,
  .kyc-intro-grid,
  .transparency-inner,
  .wallet-feature-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-preview-image,
  .why-intro-image,
  .exchange-overview-image,
  .kyc-intro-image,
  .transparency-image,
  .wallet-feature-image {
    height: 320px;
  }

  .footer-columns-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .legal-two-column-layout {
    grid-template-columns: 200px 1fr;
    gap: var(--space-lg);
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .contact-info-sidebar { position: static; }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 4.5rem;
  }

  .desktop-navigation { display: none; }
  .action-button-primary { display: none; }
  .mobile-menu-trigger { display: flex; }
  .mobile-menu-flip-container { display: block; }

  .hero-content-wrapper { padding: var(--space-lg) var(--space-sm); }

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

  .hero-market-ticker {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .ticker-items { gap: var(--space-md); flex-wrap: wrap; }

  .benefits-card-grid { grid-template-columns: 1fr; }

  .tab-navigation-bar { flex-direction: column; }

  .tab-trigger { border-bottom: none; border-left: 3px solid transparent; justify-content: flex-start; }

  .tab-trigger.active { border-left-color: var(--primary); border-bottom-color: transparent; }

  .tab-content-panels { padding: var(--space-md); }

  .assets-showcase-grid { grid-template-columns: repeat(2, 1fr); }

  .compliance-strip-inner { gap: var(--space-sm); }
  .compliance-divider { display: none; }
  .compliance-item { font-size: 0.82rem; }

  .about-preview-image,
  .why-intro-image,
  .exchange-overview-image,
  .kyc-intro-image,
  .transparency-image,
  .wallet-feature-image,
  .tab-image {
    height: 240px;
  }

  .about-visual-accent { display: none; }

  .pillars-layout { grid-template-columns: 1fr; }

  .transparency-features-grid { grid-template-columns: 1fr; }

  .kyc-requirements-grid { grid-template-columns: 1fr; }

  .pairs-detailed-grid { grid-template-columns: 1fr; }

  .process-steps-timeline::before { left: 22px; }

  .step-marker { width: 44px; height: 44px; min-width: 44px; font-size: 0.95rem; }

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

  .footer-columns-grid { grid-template-columns: 1fr; gap: var(--space-lg); }

  .footer-bottom-strip { flex-direction: column; gap: var(--space-sm); }

  .legal-two-column-layout { grid-template-columns: 1fr; }

  .legal-sidebar-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    padding: var(--space-sm);
  }

  .legal-sidebar-nav nav { flex-direction: row; flex-wrap: wrap; }

  .legal-nav-link { font-size: 0.75rem; padding: 0.3rem 0.6rem; }

  .thanks-page-inner { padding: var(--space-lg); }

  .share-page-widget { justify-content: flex-start; }

  .contact-info-sidebar { position: static; }

  .accordion-section-body { padding: var(--space-sm) var(--space-md) var(--space-md); }
}

@media (max-width: 480px) {
  .hero-display-heading { font-size: clamp(2rem, 8vw, 2.8rem); }

  .inner-page-heading { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  .section-container { padding: 0 var(--space-sm); }

  .assets-showcase-grid { grid-template-columns: 1fr 1fr; }

  .tab-navigation-bar { overflow-x: auto; flex-direction: row; }

  .tab-trigger { min-width: 120px; font-size: 0.8rem; }

  .cookie-modal-actions { flex-direction: column; }

  .legal-page-wrapper { padding-top: calc(var(--nav-height) + var(--space-lg)); }
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.text-center { text-align: center; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }