/* VT Trading — platform site
   Palette matched to Elite Chain Realty:
   primary #010535 · accent #4D51AB · cyan #55CEE3 · bg white / #F2F2F5 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --elite-primary: #010535;
  --elite-text: #707070;
  --elite-accent: #4D51AB;
  --elite-cyan: #55CEE3;
  --elite-secondary: #F2F2F5;
  --elite-white: #FFFFFF;
  --text: #010535;
  --muted: #707070;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-weight: 800; letter-spacing: -0.03em; margin: 0; }
.mono { font-family: 'JetBrains Mono', monospace; }
a { color: inherit; text-decoration: none; }

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.brand-icon { display: block; flex-shrink: 0; }

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.5);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.45); }
  70% { box-shadow: 0 0 0 7px rgba(96, 165, 250, 0); }
  100% { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0); }
}

/* =====================================================================
   LANDING — dark, animated, glass
   ===================================================================== */
body.landing {
  /* Dark neon purple for readability */
  background: #0a0614;
  color: #e8e4f0;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

body.landing .orb-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

body.landing .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  animation: orb-drift 24s ease-in-out infinite;
}

body.landing .orb.o1 {
  width: 560px; height: 560px; background: #7c3aed;
  top: -160px; left: -140px; animation-duration: 22s;
}
body.landing .orb.o2 {
  width: 500px; height: 500px; background: #a855f7;
  top: 22%; right: -180px; animation-duration: 27s; animation-delay: -6s;
}
body.landing .orb.o3 {
  width: 460px; height: 460px; background: #c026d3;
  bottom: -180px; left: 18%; animation-duration: 25s; animation-delay: -13s;
  opacity: 0.3;
}
body.landing .orb.o4 {
  width: 380px; height: 380px; background: #6366f1;
  bottom: 8%; right: 12%; animation-duration: 30s; animation-delay: -3s;
  opacity: 0.35;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -40px) scale(1.1); }
  66% { transform: translate(-40px, 30px) scale(0.92); }
}

body.landing .grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(168, 85, 247, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 90%);
}

body.landing .content-layer { position: relative; z-index: 2; }

body.landing .gradient-text {
  background: linear-gradient(90deg, #c084fc, #a855f7, #e879f9, #c084fc);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-move 7s linear infinite;
}

@keyframes gradient-move {
  to { background-position: 300% center; }
}

body.landing .l-hero {
  position: relative;
  z-index: 2;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
}

body.landing .l-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 30%),
    rgba(139, 146, 255, 0.16),
    transparent 60%
  );
}

body.landing .l-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: #dfe3ea;
  backdrop-filter: blur(12px);
}

body.landing .l-title {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 26px 0 18px;
  max-width: 780px;
  color: #f5f0ff;
}

body.landing .l-copy {
  color: #cfc6e0;
  font-size: 17px;
  max-width: 560px;
  line-height: 1.6;
  margin: 0 0 40px;
}

body.landing .l-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

body.landing .l-stat .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 26px;
  font-weight: 700;
  color: #f5f0ff;
}

body.landing .l-stat .label {
  font-size: 12px;
  color: #b8aec9;
  margin-top: 3px;
}

body.landing .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
  position: relative;
  z-index: 2;
}

body.landing .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

body.landing .btn-primary {
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  color: #fff;
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
}

body.landing .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(168, 85, 247, 0.55);
}

body.landing .btn-ghost {
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(192, 132, 252, 0.35);
  color: #f5f0ff;
}

body.landing .btn-ghost:hover {
  background: rgba(168, 85, 247, 0.22);
}

body.landing .glass-card {
  background: rgba(18, 10, 32, 0.72);
  border: 1px solid rgba(168, 85, 247, 0.22);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.landing .glass-card:hover {
  border-color: rgba(192, 132, 252, 0.5);
  box-shadow: 0 16px 48px rgba(168, 85, 247, 0.18);
}

body.landing .l-section {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 32px;
  overflow: visible;
}

body.landing .l-eyebrow-sm {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #4D51AB, #55CEE3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

body.landing .l-section-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 640px;
  color: #f5f0ff;
}

body.landing .l-section-copy {
  color: #cfc6e0;
  font-size: 15px;
  max-width: 560px;
  margin-top: 12px;
}

body.landing .l-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

body.landing .l-feature-card {
  padding: 26px;
  will-change: transform;
}

body.landing .l-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
  animation: icon-spin 9s linear infinite;
}

body.landing .l-feature-card:hover .l-feature-icon {
  animation-duration: 2.4s;
}

body.landing .l-feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

body.landing .l-feature-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #f5f0ff;
}

body.landing .l-feature-card p {
  font-size: 13.5px;
  color: #cfc6e0;
  line-height: 1.6;
  margin: 0;
}

@keyframes icon-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Doc / about content blocks */
body.landing .doc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 40px;
}

body.landing .doc-card {
  padding: 28px;
}

body.landing .doc-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

body.landing .doc-card p {
  font-size: 14px;
  color: rgba(242, 244, 248, 0.55);
  line-height: 1.65;
  margin: 0 0 12px;
}

body.landing .doc-card p:last-child { margin-bottom: 0; }

body.landing .doc-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.landing .doc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #f2f4f8;
}

body.landing .check-dot-l {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.25);
  color: #c084fc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 800;
  margin-top: 1px;
}

body.landing .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

body.landing .step-card {
  padding: 26px;
  position: relative;
}

body.landing .step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: #c084fc;
  margin-bottom: 14px;
}

body.landing .step-card h3 {
  font-size: 16.5px;
  color: #fff;
  margin-bottom: 8px;
}

body.landing .step-card p {
  font-size: 13.5px;
  color: rgba(242, 244, 248, 0.55);
  line-height: 1.6;
  margin: 0;
}

body.landing .l-partner-strip {
  text-align: center;
  padding: 70px 32px 100px;
  position: relative;
  overflow: visible;
  background: var(--elite-secondary);
  border-radius: 0;
}
body.landing .l-partner-strip .l-section-title {
  color: var(--elite-primary);
  max-width: 640px;
}

body.landing .l-partner-logos {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-top: 30px;
  flex-wrap: wrap;
}

body.landing .l-partner-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: rgba(242, 244, 248, 0.55);
  opacity: 0.85;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

body.landing .l-partner-logo:hover {
  opacity: 1;
  color: #fff;
  transform: translateY(-2px);
}

body.landing .l-partner-logo .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* Scroll-reveal */
body.landing .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
body.landing .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
body.landing .reveal-delay-1.in-view { transition-delay: 0.08s; }
body.landing .reveal-delay-2.in-view { transition-delay: 0.16s; }
body.landing .reveal-delay-3.in-view { transition-delay: 0.24s; }
body.landing .reveal-delay-4.in-view { transition-delay: 0.32s; }
body.landing .reveal-delay-5.in-view { transition-delay: 0.40s; }
body.landing .reveal-delay-6.in-view { transition-delay: 0.48s; }

/* Hero 3D + nav */
body.landing .hero-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.landing .hero-canvas-wrap canvas { display: block; }

body.landing .pill-nav {
  position: fixed;
  top: 22px;
  right: 28px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(18, 10, 32, 0.88);
  border: 1px solid rgba(168, 85, 247, 0.3);
  backdrop-filter: blur(16px);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

body.landing .pill-nav a {
  font-size: 12.5px;
  font-weight: 600;
  color: #cfc6e0;
  padding: 7px 14px;
  border-radius: 999px;
  transition: all 0.15s ease;
}

body.landing .pill-nav a:hover {
  background: rgba(168, 85, 247, 0.18);
  color: #f5f0ff;
}

body.landing .pill-nav a.cta {
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  color: #fff;
}

body.landing .quick-nav {
  position: fixed;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.landing .quick-nav a {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(232, 228, 240, 0.4);
  padding: 7px 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

body.landing .quick-nav a:hover,
body.landing .quick-nav a.qn-active { color: #f5f0ff; }

body.landing .quick-nav a .qn-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.35);
  transition: all 0.2s ease;
}

body.landing .quick-nav a:hover .qn-dot,
body.landing .quick-nav a.qn-active .qn-dot {
  background: linear-gradient(135deg, #a855f7, #e879f9);
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.7);
}

body.landing .glitch-cycle {
  position: relative;
  display: inline-block;
  min-height: 1.1em;
}

body.landing .glitch-line {
  display: block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

body.landing .glitch-line.active {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ */
body.landing .faq-list {
  max-width: 720px;
  margin-top: 36px;
}

body.landing .faq-item {
  border-bottom: 1px solid rgba(168, 85, 247, 0.18);
  padding: 20px 0;
  cursor: pointer;
}

body.landing .faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15.5px;
  font-weight: 700;
  color: #f5f0ff;
}

body.landing .faq-q .plus {
  font-size: 20px;
  font-weight: 400;
  color: #c084fc;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

body.landing .faq-item.open .faq-q .plus {
  transform: rotate(45deg);
}

body.landing .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
  color: #cfc6e0;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0;
}

body.landing .faq-item.open .faq-a {
  max-height: 240px;
  opacity: 1;
  margin-top: 12px;
}

/* Footer */
body.landing .l-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(168, 85, 247, 0.18);
  padding: 40px 32px;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

body.landing .l-footer .brand { color: #f5f0ff; font-size: 14px; }
body.landing .l-footer-links { display: flex; gap: 24px; flex-wrap: wrap; }

body.landing .l-footer-link {
  color: #cfc6e0;
  font-weight: 600;
}

body.landing .l-footer-link:hover { color: #e879f9; }

body.landing .l-footer-note {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #9b8fb0;
  margin-top: 8px;
}

/* Floating shapes */
body.landing .float-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  border: 1px solid rgba(255, 255, 255, 0.16);
  animation: float-shape-drift 12s ease-in-out infinite;
}

body.landing .float-shape.circle { border-radius: 50%; }
body.landing .float-shape.square { border-radius: 8px; transform: rotate(20deg); }
body.landing .float-shape.ring { border-radius: 50%; border-width: 2px; }

@keyframes float-shape-drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-26px) rotate(18deg); }
}

body.landing .brand-icon rect {
  filter: drop-shadow(0 0 4px rgba(139, 146, 255, 0.5));
}

/* 3D cubes */
body.landing .cube3d {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
  perspective: 300px;
  animation: cube-float 7s ease-in-out infinite;
}

body.landing .cube3d-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: cube-spin 12s linear infinite;
}

body.landing .cube3d .face {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.18), rgba(192, 132, 252, 0.12));
}

body.landing .cube-sm { width: 22px; height: 22px; }
body.landing .cube-sm .face-front { transform: translateZ(11px); }
body.landing .cube-sm .face-back { transform: translateZ(-11px) rotateY(180deg); }
body.landing .cube-sm .face-right { transform: rotateY(90deg) translateZ(11px); }
body.landing .cube-sm .face-left { transform: rotateY(-90deg) translateZ(11px); }
body.landing .cube-sm .face-top { transform: rotateX(90deg) translateZ(11px); }
body.landing .cube-sm .face-bottom { transform: rotateX(-90deg) translateZ(11px); }

body.landing .cube-md { width: 34px; height: 34px; }
body.landing .cube-md .face-front { transform: translateZ(17px); }
body.landing .cube-md .face-back { transform: translateZ(-17px) rotateY(180deg); }
body.landing .cube-md .face-right { transform: rotateY(90deg) translateZ(17px); }
body.landing .cube-md .face-left { transform: rotateY(-90deg) translateZ(17px); }
body.landing .cube-md .face-top { transform: rotateX(90deg) translateZ(17px); }
body.landing .cube-md .face-bottom { transform: rotateX(-90deg) translateZ(17px); }

body.landing .cube-lg { width: 48px; height: 48px; }
body.landing .cube-lg .face-front { transform: translateZ(24px); }
body.landing .cube-lg .face-back { transform: translateZ(-24px) rotateY(180deg); }
body.landing .cube-lg .face-right { transform: rotateY(90deg) translateZ(24px); }
body.landing .cube-lg .face-left { transform: rotateY(-90deg) translateZ(24px); }
body.landing .cube-lg .face-top { transform: rotateX(90deg) translateZ(24px); }
body.landing .cube-lg .face-bottom { transform: rotateX(-90deg) translateZ(24px); }

@keyframes cube-spin {
  from { transform: rotateX(0deg) rotateY(0deg); }
  to { transform: rotateX(360deg) rotateY(360deg); }
}

@keyframes cube-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}

/* Content placeholder hint (remove later if you want) */
body.landing .edit-hint {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(192, 132, 252, 0.7);
  margin-bottom: 8px;
}

/* =====================================================================
   LUXURY CARS — Ferrari ad sim + inventory grid
   ===================================================================== */
body.landing .cars-section {
  position: relative;
  z-index: 2;
  max-width: none;
  padding: 100px 0 80px;
  overflow: hidden;
}

body.landing .cars-section .cars-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 3;
}

/* Anime SF90 — blends with glass page (no black plate) */
body.landing .ferrari-ad {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin: 40px auto 48px;
  height: min(52vw, 480px);
  min-height: 340px;
  border-radius: 22px;
  overflow: visible; /* shiny particles can spill into the page */
  /* glass-card already sets glass bg; reinforce page blend */
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  will-change: contents;
}

body.landing .ferrari-ad #ferrariCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 22px;
  /* transparent canvas — page orbs/grid show through */
  background: transparent;
}

body.landing .ferrari-ad-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 22px;
  background: linear-gradient(180deg, transparent, rgba(6, 7, 12, 0.35) 70%);
  pointer-events: none;
}

body.landing .ferrari-ad-overlay * {
  pointer-events: auto;
}

body.landing .ferrari-ad-kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #60a5fa, #c084fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}

body.landing .ferrari-ad-title {
  display: block;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}

body.landing .ferrari-ad-sub {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(242, 244, 248, 0.55);
}

body.landing .ferrari-ad-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

body.landing .ferrari-interest {
  margin-top: 0;
  width: auto;
  min-width: 140px;
  padding: 12px 18px;
}

body.landing .ferrari-speedo {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 4;
  text-align: right;
  font-family: 'JetBrains Mono', monospace;
  color: #fff;
  pointer-events: none;
}

body.landing .ferrari-speedo .speedo-num {
  display: block;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(90deg, #ff4d4d, #c084fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.landing .ferrari-speedo .speedo-unit {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
}

body.landing .cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

body.landing .car-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

body.landing .car-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0b12;
}

body.landing .car-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

body.landing .car-card:hover .car-card-media img {
  transform: scale(1.06);
}

body.landing .car-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(6, 7, 12, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  color: #fff;
  z-index: 2;
}

body.landing .car-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

body.landing .car-card-body h3 {
  font-size: 17px;
  color: #fff;
  font-weight: 700;
}

body.landing .car-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 12.5px;
  color: rgba(242, 244, 248, 0.5);
  font-weight: 600;
}

body.landing .car-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  color: #c084fc;
  margin-top: 4px;
}

body.landing .car-card-body p {
  font-size: 13.5px;
  color: rgba(242, 244, 248, 0.55);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

body.landing .btn-interest {
  margin-top: 14px;
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #60a5fa, #a855f7);
  box-shadow: 0 8px 22px rgba(139, 92, 246, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

body.landing .btn-interest:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(139, 92, 246, 0.5);
}

body.landing .btn-interest.ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

body.landing .btn-interest.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

/* =====================================================================
   HOMES — Zillow-style listings
   ===================================================================== */
body.landing .homes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

body.landing .home-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

body.landing .home-card-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #0a0b12;
}

body.landing .home-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

body.landing .home-card:hover .home-card-media img {
  transform: scale(1.05);
}

body.landing .home-price-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

body.landing .home-src {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 174, 239, 0.2);
  border: 1px solid rgba(0, 174, 239, 0.45);
  color: #7dd3fc;
  backdrop-filter: blur(10px);
}

body.landing .home-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

body.landing .home-card-body h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

body.landing .home-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(242, 244, 248, 0.55);
}

body.landing .home-stats span b {
  color: #fff;
  font-weight: 700;
}

body.landing .home-card-body p {
  font-size: 13px;
  color: rgba(242, 244, 248, 0.5);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

body.landing .home-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

body.landing .home-actions .btn-interest {
  flex: 1;
  margin-top: 0;
  padding: 11px 12px;
  font-size: 12.5px;
}

body.landing .section-note {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(242, 244, 248, 0.4);
  max-width: 720px;
  line-height: 1.5;
}

body.landing .section-note a {
  color: #93c5fd;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Interest modal */
body.landing .modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(4, 5, 10, 0.72);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

body.landing .modal-backdrop.open {
  display: flex;
}

body.landing .interest-modal {
  width: min(100%, 440px);
  padding: 28px;
  border-radius: 22px;
  background: rgba(18, 20, 32, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

body.landing .interest-modal h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 6px;
}

body.landing .interest-modal .modal-sub {
  font-size: 13.5px;
  color: rgba(242, 244, 248, 0.55);
  margin-bottom: 20px;
}

body.landing .interest-modal label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(242, 244, 248, 0.55);
  margin-bottom: 6px;
}

body.landing .interest-modal .field {
  margin-bottom: 14px;
}

body.landing .interest-modal input,
body.landing .interest-modal textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 11px 14px;
  resize: vertical;
}

body.landing .interest-modal input:focus,
body.landing .interest-modal textarea:focus {
  outline: none;
  border-color: #8b93ff;
  box-shadow: 0 0 0 4px rgba(139, 147, 255, 0.18);
}

body.landing .modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

body.landing .modal-actions button {
  flex: 1;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  border: none;
}

body.landing .modal-actions .btn-send {
  background: linear-gradient(135deg, #60a5fa, #a855f7);
  color: #fff;
}

body.landing .modal-actions .btn-cancel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

body.landing .modal-ok {
  display: none;
  text-align: center;
  padding: 12px 0 4px;
  color: #86efac;
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 900px) {
  body.landing .l-title { font-size: 38px; }
  body.landing .l-feature-grid { grid-template-columns: 1fr; }
  body.landing .doc-grid { grid-template-columns: 1fr; }
  body.landing .steps { grid-template-columns: 1fr; }
  body.landing .cars-grid,
  body.landing .homes-grid { grid-template-columns: 1fr; }
  body.landing .ferrari-ad { width: calc(100% - 32px); height: min(70vw, 380px); min-height: 300px; border-radius: 18px; }
  body.landing .ferrari-ad #ferrariCanvas { border-radius: 18px; }
  body.landing .ferrari-ad-title { font-size: 22px; }
  body.landing .ferrari-speedo .speedo-num { font-size: 28px; }
  body.landing .l-hero { padding: 70px 20px 40px; min-height: unset; }
  body.landing .l-section { padding: 56px 20px; }
  body.landing .cars-section .cars-inner { padding: 0 20px; }
  body.landing .quick-nav { display: none; }
  body.landing .pill-nav { top: 14px; right: 14px; left: 14px; justify-content: center; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  body.landing .orb,
  body.landing .gradient-text,
  body.landing .l-feature-icon,
  body.landing .float-shape,
  body.landing .cube3d,
  body.landing .cube3d-inner {
    animation: none;
  }
  body.landing .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ---------- Dark neon purple: remaining text/card fixes ---------- */
body.landing .brand { color: #f5f0ff; }
body.landing .l-eyebrow {
  background: rgba(168, 85, 247, 0.14);
  border-color: rgba(192, 132, 252, 0.35);
  color: #e9d5ff;
}
body.landing .live-dot { background: #a855f7; box-shadow: 0 0 0 0 rgba(168,85,247,0.45); }
body.landing .doc-card h3,
body.landing .step-card h3,
body.landing .car-card-body h3,
body.landing .home-card-body h3 { color: #f5f0ff; }
body.landing .doc-card p,
body.landing .step-card p,
body.landing .car-card-body p,
body.landing .home-card-body p,
body.landing .doc-list li,
body.landing .section-note { color: #cfc6e0; }
body.landing .check-dot-l { background: rgba(168,85,247,0.25); color: #e9d5ff; }
body.landing .step-num { color: #c084fc; }
body.landing .car-price { color: #e879f9; }
body.landing .btn-interest {
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  box-shadow: 0 8px 22px rgba(168,85,247,0.35);
}
body.landing .btn-interest.ghost {
  background: rgba(168,85,247,0.12);
  border: 1px solid rgba(192,132,252,0.3);
  color: #f5f0ff;
  box-shadow: none;
}
body.landing .l-partner-strip {
  background: rgba(18, 10, 32, 0.6) !important;
}
body.landing .l-partner-strip .l-section-title { color: #f5f0ff; }
body.landing .l-partner-logo { color: #cfc6e0; }
body.landing .ferrari-ad {
  background: rgba(18, 10, 32, 0.55) !important;
  border-color: rgba(168, 85, 247, 0.25);
}
body.landing .ferrari-ad-title { color: #f5f0ff; }
body.landing .ferrari-ad-sub { color: #cfc6e0; }
body.landing .ferrari-ad-overlay {
  background: linear-gradient(180deg, transparent, rgba(10, 6, 20, 0.92) 65%);
}
body.landing .l-hero::before {
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 30%), rgba(168,85,247,0.16), transparent 60%);
}
body.landing .interest-modal {
  background: #160e24;
  border-color: rgba(168,85,247,0.3);
}
body.landing .interest-modal h3 { color: #f5f0ff; }
body.landing .interest-modal input,
body.landing .interest-modal textarea {
  background: rgba(10,6,20,0.8);
  border-color: rgba(168,85,247,0.25);
  color: #f5f0ff;
}
body.landing .modal-backdrop { background: rgba(6, 3, 12, 0.72); }
body.landing .car-meta,
body.landing .home-stats { color: #b8aec9; }
body.landing .home-stats span b { color: #f5f0ff; }

/* ---------- Live crypto chart (demo UI inspired by Up/Down charts) ---------- */
.crypto-desk {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 40px;
}
.crypto-panel {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 14px;
  background: #12141c;
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 40px rgba(124,58,237,0.12);
}
.crypto-main {
  background: #0e1016;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}
.crypto-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.crypto-pair {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #f5f0ff;
  font-size: 15px;
}
.crypto-pair .btc-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, #f7931a, #ffb347);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #111;
}
.crypto-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.crypto-pill {
  border: none;
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  background: #1c1f2a;
  color: #b8aec9;
  font-family: inherit;
}
.crypto-pill.active {
  background: #c8f542;
  color: #111;
}
.crypto-stats-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
}
.crypto-stat-block { text-align: left; }
.crypto-stat-block .lbl { font-size: 11px; color: #8b8499; }
.crypto-stat-block .val { font-size: 14px; font-weight: 700; color: #e8e4f0; font-family: 'JetBrains Mono', monospace; }
.crypto-stat-block.up .big { color: #22c55e; font-size: 28px; font-weight: 800; }
.crypto-stat-block.down .big { color: #ef4444; font-size: 28px; font-weight: 800; }
.crypto-timer {
  width: 54px; height: 54px; border-radius: 50%;
  border: 3px solid #ef4444;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  color: #f5f0ff; font-weight: 800; font-size: 16px;
  font-family: 'JetBrains Mono', monospace;
}
.crypto-timer span { font-size: 9px; font-weight: 600; color: #b8aec9; text-transform: uppercase; }
.crypto-chart-wrap {
  position: relative;
  flex: 1;
  min-height: 280px;
  background: linear-gradient(180deg, rgba(34,197,94,0.08) 0%, rgba(239,68,68,0.12) 55%, rgba(239,68,68,0.18) 100%);
}
.crypto-chart-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.crypto-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  letter-spacing: -0.02em;
}
.crypto-live-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #c8f542;
  color: #111;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
  z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.crypto-live-tag small { display: block; font-size: 10px; opacity: 0.75; }
.crypto-banner {
  margin: 0 14px 12px;
  background: rgba(34,197,94,0.18);
  border: 1px solid rgba(34,197,94,0.35);
  color: #86efac;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12.5px;
  font-weight: 700;
}
.crypto-side {
  background: #0e1016;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.crypto-side h4 {
  margin: 0;
  font-size: 14px;
  color: #f5f0ff;
  font-weight: 800;
}
.crypto-vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 6px;
  align-items: center;
}
.crypto-vs .up-label { color: #22c55e; font-weight: 800; font-size: 13px; }
.crypto-vs .down-label { color: #ef4444; font-weight: 800; font-size: 13px; text-align: right; }
.crypto-vs .vs { color: #8b8499; font-weight: 800; font-size: 11px; }
.crypto-amount label {
  display: block;
  font-size: 11px;
  color: #8b8499;
  margin-bottom: 6px;
  font-weight: 600;
}
.crypto-amount-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1c1f2a;
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.06);
}
.crypto-amount-row input {
  flex: 1;
  border: none;
  background: transparent;
  color: #f5f0ff;
  font-size: 16px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  outline: none;
  min-width: 0;
}
.crypto-avail { font-size: 12px; color: #8b8499; }
.crypto-avail b { color: #c8f542; }
.crypto-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}
.crypto-actions button {
  border: none;
  border-radius: 12px;
  padding: 16px 10px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  color: #fff;
}
.crypto-actions .btn-up {
  background: linear-gradient(180deg, #34d399, #16a34a);
  box-shadow: 0 8px 20px rgba(22,163,74,0.35);
}
.crypto-actions .btn-down {
  background: linear-gradient(180deg, #f87171, #dc2626);
  box-shadow: 0 8px 20px rgba(220,38,38,0.35);
}
.crypto-actions button:active { transform: scale(0.98); }
.crypto-note {
  font-size: 11px;
  color: #8b8499;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 900px) {
  .crypto-panel { grid-template-columns: 1fr; }
  .crypto-side { order: 2; }
}
