@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* ── KEYFRAME ANIMATIONS ── */

@keyframes float-up {
  0% { transform: translateY(0) translate(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translate(20px); opacity: 0; }
}

@keyframes float-up-alt {
  0% { transform: translateY(0) translate(0); opacity: 0; }
  10% { opacity: .7; }
  90% { opacity: .7; }
  100% { transform: translateY(-100vh) translate(-15px); opacity: 0; }
}

@keyframes kenburns-left {
  0% { transform: scale(1.08) translate(2%); }
  100% { transform: scale(1.02) translate(-2%); }
}

@keyframes kenburns-right {
  0% { transform: scale(1.08) translate(-2%); }
  100% { transform: scale(1.02) translate(2%); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,33,39,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(232,33,39,0); }
}

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

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

@keyframes progress-fill {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(232,33,39,0.6)); }
  50% { filter: drop-shadow(0 0 20px rgba(232,33,39,0.9)) drop-shadow(0 0 40px rgba(232,33,39,0.4)); }
}

@keyframes bounce-subtle {
  0%, 100% { opacity: 0.6; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(6px); }
}

@keyframes border-glow {
  0%, 100% { box-shadow: 0 0 rgba(232,33,39,0); }
  50% { box-shadow: 0 0 15px rgba(232,33,39,0.3); }
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

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

/* ── SCANLINE OVERLAY ── */
.scanline-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(232,33,39,0.03) 2px, rgba(232,33,39,0.03) 4px);
  pointer-events: none;
  z-index: 4;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ── PULSE DOT ── */
.pulse-dot {
  animation: dot-pulse 2s ease-in-out infinite;
}

/* ── HOME PAGE ── */
.home-wrapper {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.home-main {
  width: 100%;
  height: 100dvh;
  background: #000;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.home-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.5rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
@media (min-width: 640px) { .home-header { padding-top: 2rem; } }

.home-header.animate { opacity: 1; transform: translateY(0); }

.home-header h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  font-size: 1.125rem;
}
@media (min-width: 640px) { .home-header h1 { font-size: 1.25rem; } }
@media (min-width: 768px) { .home-header h1 { font-size: 1.5rem; } }

.home-header h1 .red { color: #ef4444; font-weight: 300; }
.home-header h1 .white { color: #fff; }

/* Particles */
.particles {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 9999px;
  background: #fff;
}

/* Split sections */
.split-container {
  width: 100%;
  height: 100dvh;
  background: #000;
  overflow: hidden;
  position: relative;
}

.split-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60dvh;
  z-index: 1;
}

.split-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55dvh;
  z-index: 2;
  clip-path: url(#wave-clip);
}

.split-section {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  will-change: transform;
}

.split-section .bg-img-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.08);
}
.split-section .bg-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.split-section .gradient-linear {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.split-section .gradient-radial {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, transparent 65%);
  z-index: 5;
}

.split-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  width: 100%;
  max-width: 768px;
}

.split-bottom .split-content { padding-top: 2rem; }
.split-top .split-content { padding-bottom: 2rem; }

.split-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 0.5rem;
  font-size: 2.25rem;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
@media (min-width: 640px) { .split-content h2 { font-size: 3rem; margin-bottom: 0.75rem; } }
@media (min-width: 768px) { .split-content h2 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .split-content h2 { font-size: 4.5rem; } }

.split-content h2.animate { opacity: 1; transform: translateY(0); }

.split-bottom h2 { color: #fff; text-shadow: 0 0 20px rgba(255,255,255,0.15), 0 2px 10px rgba(0,0,0,0.8); }
.split-top h2 { color: #ef4444; text-shadow: 0 0 30px rgba(232,33,39,0.4), 0 2px 10px rgba(0,0,0,0.8); }

.split-content .subtitle {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  max-width: 28rem;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
@media (min-width: 640px) { .split-content .subtitle { font-size: 0.875rem; margin-bottom: 2rem; } }
@media (min-width: 768px) { .split-content .subtitle { font-size: 1rem; } }

.split-content .subtitle.animate { opacity: 1; transform: translateY(0); }

.split-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  border-radius: 0.5rem;
  transition: all 0.5s ease-out;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, background 0.5s, border-color 0.5s, box-shadow 0.5s, color 0.5s, transform 0.5s;
}
@media (min-width: 640px) { .split-btn { font-size: 0.875rem; } }

.split-btn.animate { opacity: 1; transform: translateY(0); }

.split-btn:hover {
  border-color: rgba(239,68,68,0.5);
  background: rgba(220,38,38,0.1);
  color: #fff;
  box-shadow: 0 0 20px rgba(232,33,39,0.2);
  transform: scale(1.02);
}
.split-btn .btn-text { font-weight: 600; white-space: nowrap; }
.split-btn .btn-arrow {
  width: 1rem;
  height: 1rem;
  transition: transform 0.5s ease-out;
}
.split-btn:hover .btn-arrow { transform: translateX(6px); }

/* Wave divider */
.wave-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55dvh;
  pointer-events: none;
  z-index: 3;
}

/* ── SHOP PAGE ── */
.shop-wrapper { background: #F4F4F4; }

.shop-header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.shop-header.animate { opacity: 1; transform: translateY(0); }

.shop-nav {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 640px) { .shop-nav { padding: 0 2.5rem; } }

.shop-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
}
.shop-logo .red { color: #ef4444; }

.shop-nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .shop-nav-links { display: flex; } }

.shop-nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  transition: color 0.3s;
}
.shop-nav-links a:hover { color: #000; }

.shop-nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.shop-account-link {
  display: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  transition: color 0.3s;
}
@media (min-width: 640px) { .shop-account-link { display: block; } }
.shop-account-link:hover { color: #000; }

.hamburger-btn {
  display: block;
  color: rgba(0,0,0,0.8);
  transition: color 0.3s;
  padding: 0.5rem;
}
@media (min-width: 768px) { .hamburger-btn { display: none; } }
.hamburger-btn:hover { color: #000; }

/* Shop Hero */
.shop-hero {
  position: relative;
  height: 70vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  background: #F4F4F4;
}

.hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.hero-slide.active { opacity: 1; }

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease-out;
  transform: scale(1.05);
}
.hero-slide.active img { transform: scale(1); }

.hero-slide .grad-top {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 33.333%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), transparent);
  pointer-events: none;
}

.hero-slide .grad-bottom {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 33.333%;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  pointer-events: none;
}

.hero-title-area {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 4rem;
  pointer-events: none;
}
@media (min-width: 640px) { .hero-title-area { padding-top: 6rem; } }

.hero-title-area .text-center {
  text-align: center;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.hero-title-area .text-center.animate { opacity: 1; transform: translateY(0); }

.hero-title-area h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  font-size: 2.25rem;
}
@media (min-width: 640px) { .hero-title-area h1 { font-size: 3rem; } }
@media (min-width: 768px) { .hero-title-area h1 { font-size: 3.75rem; } }

.hero-title-area .hero-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .hero-title-area .hero-sub { font-size: 1rem; } }

/* Hero Buttons */
.hero-btns {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 0 1.5rem;
}
@media (min-width: 640px) { .hero-btns { flex-direction: row; justify-content: center; } }

.hero-btns-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 28rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
@media (min-width: 640px) { .hero-btns-inner { flex-direction: row; } }
.hero-btns-inner.animate { opacity: 1; transform: translateY(0); }

.hero-btn-order {
  flex: 1;
  text-align: center;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.hero-btn-order:hover { background: #fff; transform: scale(1.02); }
.hero-btn-order:active { transform: scale(0.95); }

.hero-btn-learn {
  flex: 1;
  text-align: center;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.hero-btn-learn:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: scale(1.02); }
.hero-btn-learn:active { transform: scale(0.95); }

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  padding: 0.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  opacity: 0;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s;
}
@media (min-width: 640px) { .carousel-arrow { display: block; } }
.carousel-arrow:hover { background: rgba(255,255,255,0.3); }
.carousel-arrow.left { left: 1rem; }
.carousel-arrow.right { right: 1rem; }

.shop-hero:hover .carousel-arrow { opacity: 1; }

/* Carousel Dots */
.hero-dots {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}
.hero-btns { bottom: 5rem; }

.hero-dot {
  position: relative;
  height: 4px;
  border-radius: 9999px;
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.3s;
}
.hero-dot.active { width: 4rem; background: rgba(255,255,255,0.3); }
.hero-dot:not(.active) { width: 0.5rem; background: rgba(255,255,255,0.5); }
.hero-dot:not(.active):hover { background: rgba(255,255,255,0.8); }

.hero-dot .dot-progress {
  position: absolute;
  inset-block: 0;
  left: 0;
  background: #fff;
}

/* ── FSD SECTION ── */
.fsd-section {
  position: relative;
  width: 100%;
  background: #F4F4F4;
  padding: 4rem 0;
}
@media (min-width: 640px) { .fsd-section { padding: 6rem 0; } }
@media (min-width: 768px) { .fsd-section { padding: 8rem 0; } }

.fsd-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px) { .fsd-inner { padding: 0 3rem; } }

.fsd-card {
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 18px 60px rgba(0,0,0,0.12);
  padding: 2.5rem;
}
@media (min-width: 640px) { .fsd-card { padding: 3.5rem 2.5rem; } }
@media (min-width: 768px) { .fsd-card { padding: 3.5rem 4rem; } }

.fsd-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 1024px) { .fsd-grid { grid-template-columns: 40% 1fr; gap: 2.5rem; } }

.fsd-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.75rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-size: 1.5rem;
}
@media (min-width: 640px) { .fsd-text h2 { font-size: 1.875rem; } }
@media (min-width: 1024px) { .fsd-text h2 { font-size: 2rem; } }
@media (min-width: 1280px) { .fsd-text h2 { font-size: 2.25rem; } }

.fsd-text h2 .blue { color: #2563eb; margin-left: 0.5rem; }

.fsd-text .fsd-sub {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.7);
  margin-bottom: 1.5rem;
  line-height: 1.625;
}
@media (min-width: 640px) { .fsd-text .fsd-sub { margin-bottom: 2rem; } }
@media (min-width: 640px) { .fsd-text .fsd-sub { font-size: 1rem; } }

.fsd-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .fsd-stats { gap: 1.5rem; margin-bottom: 2rem; } }

.fsd-stat-val {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.02em;
  font-size: 1.25rem;
}
@media (min-width: 640px) { .fsd-stat-val { font-size: 1.5rem; } }
@media (min-width: 1024px) { .fsd-stat-val { font-size: 1.75rem; } }

.fsd-stat-label {
  font-size: 11px;
  color: rgba(0,0,0,0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (min-width: 640px) { .fsd-stat-label { font-size: 0.75rem; } }

.fsd-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) { .fsd-btns { flex-direction: row; gap: 1.5rem; } }

.fsd-btn-primary {
  padding: 0.625rem 1.5rem;
  background: #000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 9999px;
  transition: all 0.3s;
  text-align: center;
}
@media (min-width: 640px) { .fsd-btn-primary { padding: 0.75rem 1.5rem; font-size: 0.75rem; } }
.fsd-btn-primary:hover { background: rgba(0,0,0,0.9); transform: scale(1.02); }
.fsd-btn-primary:active { transform: scale(0.95); }

.fsd-btn-secondary {
  padding: 0.625rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.2);
  color: #000;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 9999px;
  transition: all 0.3s;
  text-align: center;
}
@media (min-width: 640px) { .fsd-btn-secondary { padding: 0.75rem 1.5rem; font-size: 0.75rem; } }
.fsd-btn-secondary:hover { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.4); transform: scale(1.02); }
.fsd-btn-secondary:active { transform: scale(0.95); }

.fsd-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 16.25rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,0.15);
  background: #000;
}
@media (min-width: 640px) { .fsd-video-wrap { min-height: 18.75rem; } }
@media (min-width: 1024px) { .fsd-video-wrap { min-height: 0; aspect-ratio: 16/9; } }

.fsd-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fsd-video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent);
  padding: 0.75rem 1.5rem;
}
@media (min-width: 640px) { .fsd-video-caption { padding: 1rem 1.5rem; } }

.fsd-video-caption p {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
}
@media (min-width: 640px) { .fsd-video-caption p { font-size: 1rem; } }

/* ── STICKY SUB-NAV ── */
.sticky-nav {
  position: sticky;
  top: 3.5rem;
  z-index: 40;
  width: 100%;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  background: #fff;
  transition: all 0.3s;
}

.sticky-nav-inner {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
}
@media (min-width: 640px) { .sticky-nav-inner { padding: 0 2.5rem; justify-content: flex-start; } }

.sticky-nav-inner ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.sticky-nav-inner button {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  transition: color 0.3s;
  white-space: nowrap;
  padding: 1rem 0;
}
.sticky-nav-inner button:hover { color: #000; }

/* ── VEHICLES SECTION ── */
.vehicles-section {
  padding: 5rem 0;
  width: 100%;
  background: #F4F4F4;
  transition: background-color 0.7s;
}
@media (min-width: 640px) { .vehicles-section { padding: 7rem 0; } }

.vehicles-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px) { .vehicles-inner { padding: 0 3rem; } }

.vehicles-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #000;
  font-size: 2.25rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .vehicles-title { font-size: 3rem; } }

.vehicles-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
}
@media (min-width: 640px) { .vehicles-carousel-wrap { gap: 1.5rem; } }

.vehicles-carousel {
  flex: 1;
  overflow: hidden;
}

.vehicles-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media (min-width: 640px) { .vehicles-track { gap: 1.5rem; } }
.vehicles-track::-webkit-scrollbar { display: none; }

.vehicle-card {
  flex-shrink: 0;
  scroll-snap-align: start;
  width: 66vw;
}
@media (min-width: 640px) { .vehicle-card { width: 75vw; } }
@media (min-width: 768px) { .vehicle-card { width: 65vw; } }
@media (min-width: 1024px) { .vehicle-card { width: 57vw; } }
@media (min-width: 1280px) { .vehicle-card { width: 55vw; } }

.vehicle-card a {
  display: block;
  height: 100%;
}

.vehicle-card-inner {
  position: relative;
  height: 100%;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.5s;
}
@media (min-width: 640px) { .vehicle-card-inner { aspect-ratio: 21/9; } }

.vehicle-card:hover .vehicle-card-inner { box-shadow: 0 25px 50px rgba(0,0,0,0.2); }

.vehicle-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.vehicle-card:hover img { transform: scale(1.05); }

.vehicle-card .card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent);
}

.vehicle-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.375rem 0.75rem;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
@media (min-width: 640px) { .vehicle-badge { top: 1.5rem; left: 1.5rem; padding: 0.5rem 1rem; font-size: 11px; } }

.vehicle-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}
@media (min-width: 640px) { .vehicle-card-content { padding: 1.5rem; } }
@media (min-width: 768px) { .vehicle-card-content { padding: 2.5rem; } }

.vehicle-card-mobile-title {
  margin-bottom: 0.75rem;
}
.vehicle-card-mobile-title h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-size: 1.25rem;
}
@media (min-width: 640px) { .vehicle-card-mobile-title { display: none; } }

.vehicle-card-desktop-title {
  display: none;
}
@media (min-width: 640px) { .vehicle-card-desktop-title { display: block; margin-bottom: 1rem; } }
@media (min-width: 640px) { .vehicle-card-desktop-title { margin-bottom: 1.5rem; } }

.vehicle-card-desktop-title h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-size: 1.875rem;
}
@media (min-width: 768px) { .vehicle-card-desktop-title h3 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .vehicle-card-desktop-title h3 { font-size: 3rem; } }

@media (min-width: 640px) { .vehicle-card-desktop-title { margin-bottom: 1.5rem; } }

.vehicle-card-desktop-title h3 .mb-2 { margin-bottom: 0.5rem; }
.vehicle-card-desktop-title p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-clamp: 2;
  line-height: 1.625;
  max-width: 42rem;
}
@media (min-width: 768px) { .vehicle-card-desktop-title p { font-size: 1.125rem; } }

.vehicle-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
@media (min-width: 640px) { .vehicle-price-row { gap: 1rem; } }

.vehicle-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.125rem;
}
@media (min-width: 640px) { .vehicle-price { font-size: 1.5rem; } }
@media (min-width: 768px) { .vehicle-price { font-size: 1.875rem; } }

.vehicle-order-btn {
  padding: 0.5rem 0.75rem;
  background: #3b82f6;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  white-space: nowrap;
  font-size: 9px;
}
@media (min-width: 640px) { .vehicle-order-btn { padding: 0.75rem 1.5rem; font-size: 0.75rem; } }
@media (min-width: 768px) { .vehicle-order-btn { padding: 1rem 2rem; font-size: 0.875rem; } }
.vehicle-order-btn:hover { background: #2563eb; transform: scale(1.02); }
.vehicle-order-btn:active { transform: scale(0.95); }

.vehicle-carousel-arrow {
  flex-shrink: 0;
  padding: 0.75rem;
  border-radius: 9999px;
  transition: all 0.3s;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.05);
}
@media (min-width: 640px) { .vehicle-carousel-arrow { padding: 1rem; } }
.vehicle-carousel-arrow:hover { background: #fff; border-color: rgba(0,0,0,0.1); }

/* ── CTA SECTION ── */
.cta-section-shop {
  position: relative;
  height: 60vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #F4F4F4;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.05);
}
@media (min-width: 640px) { .cta-section-shop { height: 80vh; } }

.cta-section-shop .cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.02) 0%, transparent 70%);
}

.cta-section-shop .cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 2rem;
}

.cta-section-shop h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.05);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .cta-section-shop h2 { font-size: 3rem; } }
@media (min-width: 768px) { .cta-section-shop h2 { font-size: 3.75rem; } }

.cta-section-shop p {
  font-size: 1rem;
  color: rgba(0,0,0,0.6);
  margin-bottom: 2.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}
@media (min-width: 640px) { .cta-section-shop p { font-size: 1.125rem; } }

.cta-shop-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 640px) { .cta-shop-btns { flex-direction: row; } }

.cta-shop-btn-primary {
  width: 100%;
  max-width: 220px;
  text-align: center;
  background: #000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
@media (min-width: 640px) { .cta-shop-btn-primary { font-size: 0.75rem; } }
.cta-shop-btn-primary:hover { background: rgba(0,0,0,0.9); transform: scale(1.02); }
.cta-shop-btn-primary:active { transform: scale(0.98); }

.cta-shop-btn-secondary {
  width: 100%;
  max-width: 220px;
  text-align: center;
  background: transparent;
  border: 2px solid rgba(0,0,0,0.7);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: all 0.3s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  backdrop-filter: blur(4px);
}
@media (min-width: 640px) { .cta-shop-btn-secondary { font-size: 0.75rem; } }
.cta-shop-btn-secondary:hover { background: rgba(0,0,0,0.05); border-color: #000; transform: scale(1.02); }
.cta-shop-btn-secondary:active { transform: scale(0.98); }

/* ── FOOTER (LIGHT) ── */
.footer-light {
  position: relative;
  background: #F4F4F4;
  padding: 2rem 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-light-inner {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) { .footer-light-inner { padding: 0 2.5rem; } }

.footer-light-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.footer-light-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  transition: color 0.3s;
}
.footer-light-links a:hover { color: rgba(0,0,0,0.8); }

.footer-light-copy {
  font-size: 9px;
  color: rgba(0,0,0,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── FOOTER (DARK) ── */
.footer-dark {
  position: relative;
  width: 100%;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-dark-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
@media (min-width: 640px) { .footer-dark-inner { padding: 5rem 1.5rem; } }

.footer-dark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 640px) { .footer-dark-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }

.footer-dark-brand {
  grid-column: span 2;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .footer-dark-brand { grid-column: span 1; } }

.footer-dark-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  display: block;
}
.footer-dark-logo .red { color: #ef4444; }

.footer-dark-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  line-height: 1.625;
  max-width: 20rem;
}

.footer-dark-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}

.footer-dark-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-dark-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-dark-col a:hover { color: #fff; }

.footer-dark-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.footer-dark-bottom p {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── INVEST PAGE ── */
.invest-wrapper {
  background: #000;
  color: #fff;
  min-height: 100vh;
}

.invest-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.5s ease-out;
  background: transparent;
  height: 70px;
  opacity: 0;
  transform: translateY(-20px);
}
.invest-nav.animate { opacity: 1; transform: translateY(0); }

.invest-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.invest-nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  transition: opacity 0.3s;
}
@media (min-width: 640px) { .invest-nav-logo { font-size: 1.125rem; } }
.invest-nav-logo:hover { opacity: 0.8; }
.invest-nav-logo .red { color: #ef4444; }

.invest-nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .invest-nav-links { display: flex; } }

.invest-nav-link {
  position: relative;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.invest-nav-link:hover { color: #fff; }

.invest-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease-out;
}
.invest-nav-link:hover::after { width: 100%; }

.invest-nav-auth {
  display: none;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) { .invest-nav-auth { display: flex; } }

.invest-nav-login {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.invest-nav-login:hover { color: #fff; }

.invest-nav-cta {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  transition: all 0.4s ease-out;
}
.invest-nav-cta:hover { background: #fff; color: #000; }

.invest-nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
}
@media (min-width: 768px) { .invest-nav-mobile { display: none; } }

.invest-nav-mobile span {
  width: 20px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s;
}

/* Invest Hero */
.invest-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.invest-hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.invest-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.invest-hero-slide.active { opacity: 1; }

.invest-hero-slide .slide-img-wrap {
  position: absolute;
  inset: -2%;
  transform-origin: center;
}
@media (min-width: 640px) { .invest-hero-slide .slide-img-wrap { inset: 0; } }
.invest-hero-slide.active .slide-img-wrap { animation: kenburns-left 6s linear forwards; }

.invest-hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.invest-hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1;
}

.invest-hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.9) 100%);
  z-index: 2;
}

.invest-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.03;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 80px 80px;
}

.invest-hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
}

.hero-badge {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.hero-badge.animate { opacity: 1; transform: translateY(0); }

.hero-badge span {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 640px) { .hero-badge span { font-size: 0.75rem; } }

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #ef4444;
  animation: dot-pulse 2s ease-in-out infinite;
}

.hero-h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 56rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  font-size: clamp(2rem, 6vw, 5rem);
}
.hero-h1.animate { opacity: 1; transform: translateY(0); }

.hero-h1 .red { color: #ef4444; }

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  max-width: 36rem;
  line-height: 1.625;
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
@media (min-width: 640px) { .hero-desc { font-size: 1.125rem; } }
.hero-desc.animate { opacity: 1; transform: translateY(0); }

.hero-btns-invest {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
@media (min-width: 640px) { .hero-btns-invest { flex-direction: row; } }
.hero-btns-invest.animate { opacity: 1; transform: translateY(0); }

.hero-btn-red {
  padding: 0.875rem 2rem;
  background: #dc2626;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 9999px;
  transition: all 0.4s ease-out;
  box-shadow: 0 0 30px rgba(232,33,39,0.25);
}
.hero-btn-red:hover { background: #ef4444; transform: scale(1.02); }

.hero-btn-outline {
  padding: 0.875rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.4s ease-out;
}
.hero-btn-outline:hover { border-color: rgba(239,68,68,0.5); color: #f87171; transform: scale(1.02); }

/* Hero Dots */
.invest-hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.5rem;
}

.invest-hero-dot {
  height: 6px;
  border-radius: 9999px;
  transition: all 0.5s;
}
.invest-hero-dot.active { background: #fff; width: 1.5rem; }
.invest-hero-dot:not(.active) { background: rgba(255,255,255,0.3); width: 6px; }
.invest-hero-dot:not(.active):hover { background: rgba(255,255,255,0.5); }

/* ── HOW IT WORKS ── */
.how-section {
  position: relative;
  width: 100%;
  background: #fafafa;
  padding-top: 0;
  padding-bottom: 6rem;
  overflow: hidden;
}
@media (min-width: 640px) { .how-section { padding-bottom: 8rem; } }

.how-gradient {
  width: 100%;
  height: 6rem;
  background: linear-gradient(to bottom, #000, #fafafa);
}
@media (min-width: 640px) { .how-gradient { height: 8rem; } }

.how-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: linear-gradient(rgba(0,0,0,0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.15) 1px, transparent 1px);
  background-size: 80px 80px;
}

.how-inner {
  position: relative;
  z-index: 10;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.how-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #dc2626;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.how-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: #000;
  margin-bottom: 4rem;
  width: 100%;
  font-size: 1.875rem;
}
@media (min-width: 640px) { .how-title { font-size: 2.25rem; } }
@media (min-width: 768px) { .how-title { font-size: 3rem; margin-bottom: 5rem; } }

.how-title .muted { color: rgba(0,0,0,0.4); }

.how-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .how-cards { grid-template-columns: repeat(3, 1fr); } }

.how-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow 0.5s, border-color 0.5s;
  cursor: pointer;
}
@media (min-width: 640px) { .how-card { padding: 2rem; } }
.how-card:hover { box-shadow: 0 8px 30px rgba(232,33,39,0.1); border-color: rgba(239,68,68,0.1); }

.how-card-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: rgba(0,0,0,0.3);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  font-size: 3rem;
}
@media (min-width: 640px) { .how-card-num { font-size: 3.75rem; } }

.how-card-bar {
  width: 2.5rem;
  height: 3px;
  background: #ef4444;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.how-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #000;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}
@media (min-width: 640px) { .how-card h3 { font-size: 1.25rem; } }

.how-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.how-card li {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.7);
  line-height: 1.625;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.how-card .bullet {
  width: 4px;
  height: 4px;
  border-radius: 9999px;
  background: rgba(239,68,68,0.5);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ── MARKETS (ECOSYSTEM) ── */
.markets-section {
  position: relative;
  width: 100%;
  background: #000;
  padding: 6rem 0;
  overflow: hidden;
}
@media (min-width: 640px) { .markets-section { padding: 8rem 0; } }

.markets-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 80px 80px;
}

.markets-inner {
  position: relative;
  z-index: 10;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.markets-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ef4444;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.markets-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 2rem;
  width: 100%;
  font-size: 1.875rem;
}
@media (min-width: 640px) { .markets-title { font-size: 2.25rem; } }
@media (min-width: 768px) { .markets-title { font-size: 3rem; } }

.markets-title .muted { color: rgba(255,255,255,0.4); }

.markets-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  max-width: 42rem;
  line-height: 1.625;
  margin-bottom: 4rem;
}
@media (min-width: 640px) { .markets-desc { font-size: 1.125rem; } }

.markets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .markets-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .markets-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

.market-card {
  position: relative;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: background-color 0.4s, border-color 0.4s;
  cursor: pointer;
}
.market-card.open {
  border: 1px solid rgba(239,68,68,0.2);
  background: rgba(239,68,68,0.04);
}
.market-card.open:hover { background: rgba(239,68,68,0.07); border-color: rgba(239,68,68,0.35); }

.market-card.closed {
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  cursor: default;
}
.market-card.closed:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.10); }

.market-card-status {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}

.market-card-status .dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #34d399;
  animation: dot-pulse 2s ease-in-out infinite;
}

.market-card-status span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #34d399;
}

.market-card-name {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.market-card-name h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  font-size: 1.5rem;
}
@media (min-width: 640px) { .market-card-name h3 { font-size: 1.875rem; } }

.market-card-name .ticker {
  font-size: 0.75rem;
  font-family: monospace;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
}

.market-card-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.625;
}

.market-card-line {
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  transition: all 0.5s;
}
.market-card.open .market-card-line { background: linear-gradient(to right, transparent, transparent, rgba(239,68,68,0.3), transparent, transparent); }
.market-card.open:hover .market-card-line { background: linear-gradient(to right, transparent, transparent, rgba(239,68,68,0.5), transparent, transparent); }
.market-card.closed .market-card-line { background: linear-gradient(to right, transparent, transparent, rgba(255,255,255,0.06), transparent, transparent); }
.market-card.closed:hover .market-card-line { background: linear-gradient(to right, transparent, transparent, rgba(255,255,255,0.12), transparent, transparent); }

/* ── FEATURED OPPORTUNITIES ── */
.opportunities-section {
  position: relative;
  padding: 6rem 1.5rem;
  background: #000;
  overflow: hidden;
}
@media (min-width: 640px) { .opportunities-section { padding: 6rem 2.5rem; } }
@media (min-width: 1024px) { .opportunities-section { padding: 6rem 4rem; } }

.opportunities-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  border-radius: 9999px;
  background: rgba(37,99,235,0.05);
  filter: blur(120px);
}

.opportunities-inner {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
}

.opportunities-header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .opportunities-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }

.opportunities-label-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.opportunities-label-line {
  width: 1.5rem;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.opportunities-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.opportunities-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.0;
  font-size: 2.25rem;
}
@media (min-width: 640px) { .opportunities-title { font-size: 3rem; } }

.opportunities-title .muted { color: rgba(255,255,255,0.25); }

.opportunities-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.5rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
  align-self: flex-start;
}
@media (min-width: 640px) { .opportunities-all-btn { align-self: auto; } }
.opportunities-all-btn:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.opportunities-all-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}
.opportunities-all-btn:hover svg { transform: translateX(2px); }

.opportunities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .opportunities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .opportunities-grid { grid-template-columns: repeat(3, 1fr); } }

/* Project Card */
.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.5s;
  background: #080808;
  cursor: pointer;
}
.project-card:hover { border-color: rgba(255,255,255,0.18); }

.project-card-img {
  position: relative;
  height: 13rem;
  overflow: hidden;
}
.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.project-card:hover .project-card-img img { transform: scale(1.05); }

.project-card-img .grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #080808, rgba(8,8,8,0.3), transparent);
}

.project-card-img .glow {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  pointer-events: none;
}

.project-card-tags {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  right: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-tag {
  padding: 0.25rem 0.625rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 9999px;
  backdrop-filter: blur(12px);
}

.project-live {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 9999px;
  background: rgba(16,185,129,0.15);
  color: #34d399;
  border: 1px solid rgba(16,185,129,0.3);
  backdrop-filter: blur(12px);
}

.project-live .dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #34d399;
  animation: dot-pulse 2s ease-in-out infinite;
}

.project-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
  gap: 1rem;
}

.project-card-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.project-card-body .desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.625;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  text-align: center;
}

.project-stats .val {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
}

.project-stats .label {
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.project-stats .mid { border-inline: 1px solid rgba(255,255,255,0.06); }

.project-progress-wrap {
  margin-top: 0;
}

.project-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: rgba(255,255,255,0.25);
  margin-bottom: 0.375rem;
}

.project-progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 9999px;
  overflow: hidden;
}

.project-progress-fill {
  height: 100%;
  border-radius: 9999px;
  transition: width 1s;
}

.project-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: auto;
}

.project-card-footer span {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
}

.project-card-footer .invest-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: gap 0.3s;
}
.project-card:hover .invest-btn { gap: 0.5rem; }
.project-card-footer .invest-btn svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s;
}
.project-card:hover .invest-btn svg { transform: translateX(2px); }

.project-disclaimer {
  margin-top: 3rem;
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 11px;
  color: rgba(255,255,255,0.15);
  line-height: 1.625;
}

/* ── AI PLANS ── */
.plans-section {
  position: relative;
  width: 100%;
  background: #000;
  padding: 6rem 0;
  overflow: hidden;
}
@media (min-width: 640px) { .plans-section { padding: 8rem 0; } }

.plans-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 80px 80px;
}

.plans-inner {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.plans-header {
  text-align: center;
  margin-bottom: 4rem;
}
@media (min-width: 640px) { .plans-header { margin-bottom: 5rem; } }

.plans-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.plans-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
}
@media (min-width: 640px) { .plans-title { font-size: 2.25rem; } }
@media (min-width: 768px) { .plans-title { font-size: 3rem; } }

.plans-title .muted { color: rgba(255,255,255,0.4); }

.plans-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.625;
}
@media (min-width: 640px) { .plans-desc { font-size: 1.125rem; } }

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 640px) { .plans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .plans-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.3s;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 640px) { .plan-card { padding: 2.5rem; } }
.plan-card:hover { transform: scale(1.02); }

.plan-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.plan-card .range {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  margin-bottom: 2rem;
}

.plan-card .returns-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.plan-card .returns-val {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.plan-card .returns-val .num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  font-size: 2.25rem;
}
@media (min-width: 640px) { .plan-card .returns-val .num { font-size: 3rem; } }

.plan-card .returns-val .sep {
  color: rgba(255,255,255,0.3);
  font-size: 1.25rem;
  font-weight: 300;
  margin: 0 0.25rem;
}

.plan-card .returns-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  line-height: 1.625;
  margin-bottom: 2rem;
}

.plan-card .cycle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.plan-card .cycle .label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.plan-card .cycle .value {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.plan-card .divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 1.5rem;
}

.plan-card .plan-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.625;
  margin-bottom: 2rem;
}

.plan-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex: 1;
}

.plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.plan-card li .dot {
  width: 4px;
  height: 4px;
  border-radius: 9999px;
  background: rgba(239,68,68,0.5);
  margin-top: 7px;
  flex-shrink: 0;
}

.plan-card li span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

.plan-card .plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.875rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 9999px;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
}
.plan-card .plan-btn:hover { border-color: rgba(255,255,255,0.4); color: #fff; }

/* ── RISK SECTION ── */
.risk-section {
  position: relative;
  width: 100%;
  background: #fafafa;
  padding-top: 0;
  padding-bottom: 6rem;
  overflow: hidden;
}
@media (min-width: 640px) { .risk-section { padding-bottom: 8rem; } }

.risk-gradient {
  width: 100%;
  height: 6rem;
  background: linear-gradient(to bottom, #000, #fafafa);
}
@media (min-width: 640px) { .risk-gradient { height: 8rem; } }

.risk-inner {
  position: relative;
  z-index: 10;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.risk-header {
  text-align: center;
  margin-bottom: 4rem;
}
@media (min-width: 640px) { .risk-header { margin-bottom: 5rem; } }

.risk-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #dc2626;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.risk-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: #000;
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
}
@media (min-width: 640px) { .risk-title { font-size: 2.25rem; } }
@media (min-width: 768px) { .risk-title { font-size: 3rem; } }

.risk-title .muted { color: rgba(0,0,0,0.4); }

.risk-desc {
  font-size: 1rem;
  color: rgba(0,0,0,0.5);
  font-weight: 300;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.625;
}
@media (min-width: 640px) { .risk-desc { font-size: 1.125rem; } }

.risk-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .risk-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .risk-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }

.risk-card {
  position: relative;
  border-radius: 1rem;
  padding: 2rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s, border-color 0.3s;
  cursor: default;
}
.risk-card:hover { box-shadow: 0 8px 30px rgba(232,33,39,0.08); border-color: rgba(239,68,68,0.1); }

.risk-card-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: rgba(0,0,0,0.1);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  font-size: 2.25rem;
}

.risk-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #000;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.risk-card-bar {
  width: 2rem;
  height: 2px;
  background: rgba(239,68,68,0.3);
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.risk-card p {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.6);
  font-weight: 300;
  line-height: 1.625;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  position: relative;
  width: 100%;
  background: #fafafa;
  padding-bottom: 6rem;
  overflow: hidden;
}
@media (min-width: 640px) { .testimonials-section { padding-bottom: 8rem; } }

.testimonials-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: linear-gradient(rgba(0,0,0,0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.15) 1px, transparent 1px);
  background-size: 80px 80px;
}

.testimonials-inner {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px) { .testimonials-inner { padding: 0 2.5rem; } }

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .testimonials-header { margin-bottom: 4rem; } }

.testimonials-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  font-weight: 500;
  margin-bottom: 1rem;
}

.testimonials-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: #000;
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
}
@media (min-width: 640px) { .testimonials-title { font-size: 2.25rem; } }
@media (min-width: 768px) { .testimonials-title { font-size: 3rem; } }

.testimonials-title .muted { color: rgba(0,0,0,0.4); }

.testimonials-sub {
  font-size: 1rem;
  color: rgba(0,0,0,0.5);
  font-weight: 300;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.625;
}
@media (min-width: 640px) { .testimonials-sub { font-size: 1.125rem; } }

.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 640px) { .testimonials-stats { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }

.testimonials-stats .stat {
  text-align: center;
}

.testimonials-stats .stat-val {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: #000;
  margin-bottom: 0.25rem;
  font-size: 1.875rem;
}
@media (min-width: 640px) { .testimonials-stats .stat-val { font-size: 2.25rem; } }

.testimonials-stats .stat-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  font-weight: 600;
}
@media (min-width: 640px) { .testimonials-stats .stat-label { font-size: 11px; } }

/* Scrolling testimonials */
.testimonials-scroll-wrap {
  position: relative;
}

.testimonials-scroll-wrap .fade-left,
.testimonials-scroll-wrap .fade-right {
  position: absolute;
  inset-block: 0;
  width: 6rem;
  z-index: 10;
  pointer-events: none;
}
@media (min-width: 640px) { .testimonials-scroll-wrap .fade-left,
.testimonials-scroll-wrap .fade-right { width: 10rem; } }

.testimonials-scroll-wrap .fade-left { left: 0; background: linear-gradient(to right, #fafafa, transparent); }
.testimonials-scroll-wrap .fade-right { right: 0; background: linear-gradient(to left, #fafafa, transparent); }

.testimonials-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}
@media (min-width: 640px) { .testimonials-track { gap: 1.5rem; } }

.testimonial-card {
  flex-shrink: 0;
  width: 20rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
@media (min-width: 640px) { .testimonial-card { width: 23.75rem; padding: 1.75rem; } }

.testimonial-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.6);
  font-size: 0.75rem;
  font-weight: 700;
}

.testimonial-card-header .name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 0.875rem;
}

.testimonial-card-header .location {
  font-size: 11px;
  color: rgba(0,0,0,0.4);
}

.testimonial-card .quote {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.6);
  line-height: 1.625;
  margin-bottom: 1rem;
}

.testimonial-card .card-divider {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.06);
  margin-bottom: 0.75rem;
}

.testimonial-card .fund {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
}

/* ── INVEST CTA SECTION ── */
.invest-cta-section {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
}

.invest-cta-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 80px 80px;
}

.invest-cta-inner {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  text-align: center;
}

.invest-cta-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-bottom: 2rem;
}

.invest-cta-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 2rem;
  font-size: clamp(2rem, 5vw, 4.5rem);
}

.invest-cta-title .muted { color: rgba(255,255,255,0.4); }

.invest-cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  max-width: 37.5rem;
  margin: 0 auto 3rem;
  line-height: 1.625;
}
@media (min-width: 640px) { .invest-cta-desc { font-size: 1.125rem; } }

.invest-cta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .invest-cta-btns { flex-direction: row; gap: 1.5rem; } }

.invest-cta-btn-primary {
  padding: 1rem 2rem;
  background: #fff;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 9999px;
  transition: all 0.3s ease-out;
}
.invest-cta-btn-primary:hover { transform: scale(1.03); box-shadow: 0 4px 20px rgba(255,255,255,0.15); }

.invest-cta-btn-outline {
  padding: 1rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease-out;
}
.invest-cta-btn-outline:hover { background: #fff; color: #000; border-color: #fff; transform: scale(1.03); }

/* ── Flash Notification Popups ── */
.flash-notifications {
  position: fixed;
  bottom: 6rem;
  left: 1rem;
  z-index: 100;
  width: 18rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}
@media (min-width: 640px) {
  .flash-notifications { width: 20rem; }
}

.flash-toast {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(18,18,18,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  opacity: 0;
  transform: translateX(-120%);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.flash-toast.show {
  opacity: 1;
  transform: translateX(0);
}
.flash-toast.hide {
  opacity: 0;
  transform: translateX(-120%);
}

.flash-toast-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
}
.flash-toast-icon.profit {
  background: linear-gradient(135deg, #059669, #10b981);
}
.flash-toast-icon.withdraw {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.flash-toast-body {
  flex: 1;
  min-width: 0;
}
.flash-toast-body .flash-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.flash-toast-body .flash-detail {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  margin-top: 2px;
}
.flash-toast-body .flash-amount {
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 2px;
}
.flash-toast-body .flash-amount.profit {
  color: #10b981;
}
.flash-toast-body .flash-amount.withdraw {
  color: #3b82f6;
}
