/* ============================================
   RIDENSALE — PREMIUM DARK LUXURY CSS
   ============================================ */

:root {
  --bg: #080808;
  --card: #121212;
  --card2: #1a1a1a;
  --accent: #FF6600;
  --accent2: #ff8533;
  --accent-glow: rgba(255, 102, 0, 0.4);
  --text: #FFFFFF;
  --text2: #B3B3B3;
  --text3: #555555;
  --border: rgba(255, 102, 0, 0.18);
  --border2: rgba(255, 255, 255, 0.06);
  --glass: rgba(18, 18, 18, 0.88);
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
  --font-d: 'Exo 2', sans-serif;
  --font-b: 'Rajdhani', sans-serif;
  --font-m: 'Share Tech Mono', monospace;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --about-slide-duration: 1.45s;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  cursor: none;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button,
a {
  cursor: none;
}

ul {
  list-style: none;
}

/* ── SCROLL PROGRESS ───────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  z-index: 99999;
  background: linear-gradient(90deg, var(--accent), #ffb380);
  box-shadow: 0 0 10px var(--accent);
  width: 0%;
  transition: width .1s linear;
}

/* ── CUSTOM CURSOR ─────────────────────────── */
#cur-dot {
  position: fixed;
  width: 28px;
  height: 28px;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: width 0.25s cubic-bezier(0.25, 1, 0.5, 1),
    height 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, width, height;
}

#cur-dot svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 5px rgba(255, 102, 0, 0.65));
}

#cur-dot.big {
  width: 38px;
  height: 38px;
}

/* ── CARBON BG ─────────────────────────────── */
.carbon-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 2px, rgba(255, 255, 255, .012) 2px, rgba(255, 255, 255, .012) 4px),
    repeating-linear-gradient(-45deg, transparent 0, transparent 2px, rgba(255, 255, 255, .012) 2px, rgba(255, 255, 255, .012) 4px);
  background-size: 8px 8px;
}

#ptx {
  position: fixed;
  inset: 0;
  z-index: 99990;
  pointer-events: none;
}

/* ── LOADER ────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99995;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.ld-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.ld-logo-img {
  height: clamp(140px, 20vh, 220px);
  width: auto;
  filter: drop-shadow(0 0 35px rgba(255, 102, 0, 0.45));
}

.ld-logo {
  font-family: var(--font-d);
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  font-weight: 900;
  letter-spacing: .1em;
}

.ld-logo .n-letter {
  color: var(--text);
}

.ld-logo span {
  color: var(--accent);
}

.ld-tag {
  font-family: var(--font-m);
  color: var(--accent);
  font-size: .85rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  animation: ldBlink .9s infinite;
}

@keyframes ldBlink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .2
  }
}

.ld-rpm-wrap {
  width: min(280px, 88vw);
  text-align: center;
}

.ld-tach {
  margin-bottom: .35rem;
}

.ld-tach-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.ld-tach-bg {
  fill: none;
  stroke: rgba(255, 255, 255, .1);
  stroke-width: 5;
  stroke-linecap: round;
}

.ld-tach-red {
  fill: none;
  stroke: #ff2a2a;
  stroke-width: 5;
  stroke-linecap: round;
  opacity: .85;
}

.ld-tick line {
  stroke: rgba(255, 255, 255, .45);
  stroke-width: 2;
  stroke-linecap: round;
}

.ld-tick.ld-tick-red line {
  stroke: #ff4444;
}

.ld-tick-label {
  fill: var(--text2);
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: .04em;
}

.ld-tick-label.ld-tick-red {
  fill: #ff5555;
}

.ld-needle line {
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 4px var(--accent));
}

.ld-needle circle {
  fill: #111;
  stroke: var(--accent);
  stroke-width: 2;
}

.ld-needle {
  transform-origin: 130px 118px;
  transform: rotate(-90deg);
  transition: transform .06s linear;
}

.ld-tach-unit {
  fill: var(--text2);
  font-family: var(--font-m);
  font-size: 8px;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.ld-val {
  font-family: var(--font-m);
  color: var(--accent);
  font-size: 2.2rem;
  font-weight: 700;
}

.ld-val span {
  font-size: .75rem;
  color: var(--text2);
  margin-left: 3px;
}

.ld-bars {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 36px;
  margin-top: .75rem;
}

.ld-bar {
  width: 4px;
  background: var(--accent);
  border-radius: 2px;
  animation: ldBar .45s ease-in-out infinite alternate;
}

.ld-bar:nth-child(1) {
  animation-delay: 0s
}

.ld-bar:nth-child(2) {
  animation-delay: .07s
}

.ld-bar:nth-child(3) {
  animation-delay: .14s
}

.ld-bar:nth-child(4) {
  animation-delay: .21s
}

.ld-bar:nth-child(5) {
  animation-delay: .28s
}

.ld-bar:nth-child(6) {
  animation-delay: .35s
}

@keyframes ldBar {
  from {
    height: 8px
  }

  to {
    height: 36px
  }
}

/* ── NAVBAR ────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .4s var(--ease);
}

#nav.stuck {
  background: rgba(8, 8, 8, .88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0, 0, 0, .6);
  padding: .85rem 3rem;
}

.nav-logo {
  font-family: var(--font-d);
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: .08em;
  display: inline-flex;
  align-items: center;
}

.nav-logo img {
  height: 85px;
  width: auto;
  margin-top: -12.5px;
  margin-bottom: -12.5px;
  transition: height 0.4s var(--ease), margin 0.4s var(--ease);
}

#nav.stuck .nav-logo img {
  height: 70px;
  margin-top: -8px;
  margin-bottom: -8px;
}

.nav-logo .n-letter {
  color: var(--text);
}

.nav-logo span {
  color: var(--accent);
}

.nav-logo .n-letter {
  color: var(--text);
}

.nav-logo sub {
  font-size: .55rem;
  color: var(--text2);
  letter-spacing: .15em;
  text-transform: uppercase;
  vertical-align: bottom;
  line-height: 2.2;
  margin-left: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
}

.nav-links a {
  font-family: var(--font-d);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text2);
  padding: .5rem .8rem;
  position: relative;
  transition: color .3s;
  text-transform: uppercase;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  transition: width .3s var(--ease);
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 70%;
}

.nav-links a.active,
.mob-nav a.active {
  color: #fff;
}

.nav-links a.active::after {
  width: 70%;
}

/* ── INNER PAGE HERO ───────────────────────── */
.page-hero {
  padding: 9rem 3rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, #0a0a0a 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(255, 102, 0, .08) 0%, transparent 70%);
}

.page-hero .con {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: .6rem;
}

.page-hero-sub {
  color: var(--text2);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-intro-text {
  color: var(--text2);
  font-size: 1rem;
  line-height: 1.8;
}

.about-intro-text p+p {
  margin-top: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-stat {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 1.4rem 1rem;
  text-align: center;
}

.about-stat-num {
  font-family: var(--font-d);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .35rem;
}

.about-stat-lbl {
  font-family: var(--font-m);
  font-size: .68rem;
  color: var(--text2);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.services-note {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 12px;
  text-align: center;
}

.services-note p {
  color: var(--text2);
  font-size: .95rem;
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.about-mission {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.about-mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 102, 0, .06), transparent 60%);
  pointer-events: none;
}

.about-mission .eyebrow {
  justify-content: center;
  margin-bottom: 1rem;
}

.about-mission p {
  color: var(--text2);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 680px;
  margin: 0 auto;
}

.about-slide-left {
  opacity: 0;
  transform: translateX(calc(-50vw - 50%));
  transition:
    opacity var(--about-slide-duration) var(--ease),
    transform var(--about-slide-duration) var(--ease),
    filter var(--about-slide-duration) var(--ease);
  will-change: transform, opacity;
}

.about-slide-left.on {
  opacity: 1;
  transform: translateX(0);
  filter: drop-shadow(0 0 22px rgba(255, 102, 0, .22));
}

.about-slide-left.on .hl {
  text-shadow: 0 0 28px rgba(255, 102, 0, .4);
  transition: text-shadow var(--about-slide-duration) var(--ease) .35s;
}

.about-slide-left.on .redline {
  box-shadow: 0 0 12px rgba(255, 102, 0, .55);
  transition: box-shadow var(--about-slide-duration) var(--ease) .45s;
}

.about-slide-right {
  opacity: 0;
  transform: translateX(calc(50vw + 50%));
  transition:
    opacity var(--about-slide-duration) var(--ease),
    transform var(--about-slide-duration) var(--ease),
    box-shadow var(--about-slide-duration) var(--ease),
    border-color var(--about-slide-duration) var(--ease);
  will-change: transform, opacity;
}

.about-slide-right.on {
  opacity: 1;
  transform: translateX(0);
  border-color: rgba(255, 102, 0, .35);
  animation: aboutSlideGlow var(--about-slide-duration) var(--ease) forwards;
}

@keyframes aboutSlideGlow {
  0% {
    box-shadow: 0 0 0 rgba(255, 102, 0, 0);
  }

  70% {
    box-shadow:
      0 0 24px rgba(255, 102, 0, .22),
      inset 0 0 20px rgba(255, 102, 0, .05);
  }

  100% {
    box-shadow:
      0 0 18px rgba(255, 102, 0, .14),
      inset 0 0 14px rgba(255, 102, 0, .04);
  }
}

.feat-grid.about-feat-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-why-section {
  background: linear-gradient(180deg, var(--bg) 0%, #0d0d0d 100%);
}

.about-why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.about-why-img-wrap {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255, 102, 0, 0.12);
}

.about-why-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

.about-why-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.about-why-img-wrap:hover .about-why-img {
  opacity: 1;
  transform: scale(1.02);
}

.about-checklist {
  list-style: none;
  display: grid;
  gap: .85rem;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--text2);
  font-size: .95rem;
  line-height: 1.6;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: .9rem 1rem;
  transition: border-color .3s;
}

.about-checklist li:hover {
  border-color: rgba(255, 102, 0, .35);
}

.about-checklist li svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: .15rem;
}

.about-marketplace {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.about-marketplace p {
  color: var(--text2);
  font-size: 1rem;
  line-height: 1.85;
  margin-top: 1.5rem;
}

.about-marketplace p+p {
  margin-top: 1rem;
}

@media(max-width:768px) {
  .page-hero {
    padding: 8rem 1.5rem 3rem;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .feat-grid.about-feat-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .about-why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .about-slide-left,
  .about-slide-right {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
    transition: none;
  }

  .about-slide-left.on .hl,
  .about-slide-left.on .redline {
    text-shadow: none;
    box-shadow: none;
    transition: none;
  }
}

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: .6rem 1.4rem !important;
  border-radius: 4px;
  font-weight: 700 !important;
  font-size: .8rem !important;
  position: relative;
  overflow: hidden;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .18), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.nav-cta:hover {
  color: #fff !important;
  box-shadow: 0 0 25px rgba(255, 102, 0, .5) !important;
}

.nav-cta:hover::before {
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  background: var(--card);
  border: 1px solid rgba(255, 102, 0, 0.4);
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--accent);
  transition: all .3s;
  display: block;
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mob-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 78%;
  max-width: 320px;
  height: 100vh;
  background: rgba(10, 10, 10, .97);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 5.5rem 2rem 2rem;
  flex-direction: column;
  gap: .4rem;
  border-left: 1px solid var(--border);
  transition: right .4s var(--ease);
}

.mob-nav.open {
  right: 0;
}

.mob-nav a {
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text2);
  padding: .75rem 0;
  border-bottom: 1px solid var(--border2);
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: color .3s;
  display: block;
}

.mob-nav a:hover {
  color: var(--accent);
}

.mob-nav .nav-cta {
  margin-top: 1.5rem;
  text-align: center;
  padding: .9rem !important;
}

/* ── SECTIONS BASE ─────────────────────────── */
section {
  position: relative;
  z-index: 10;
}

.sp {
  padding: 7rem 3rem;
}

.con {
  max-width: 1400px;
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--font-m);
  font-size: .72rem;
  color: var(--accent);
  letter-spacing: .32em;
  text-transform: uppercase;
  margin-bottom: .65rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  flex: 1;
  max-width: 36px;
  height: 1px;
  background: var(--accent);
  opacity: .5;
}

.sec-title {
  font-family: var(--font-d);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.1;
  margin-bottom: .75rem;
}

.sec-sub {
  color: var(--text2);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
}

.tc {
  text-align: center;
}

.tc .sec-sub {
  margin: 0 auto;
}

.hl {
  color: var(--accent);
}

.hl .n-letter {
  color: var(--text);
}

.redline {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-top: .75rem;
}

.redline.c {
  margin: .75rem auto 0;
}

/* ── BUTTONS ───────────────────────────────── */
.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: .85rem 2rem;
  border-radius: 4px;
  font-family: var(--font-d);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all .3s var(--ease);
}

.btn-p::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .18), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.btn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 102, 0, .5), 0 12px 30px rgba(255, 102, 0, .35);
}

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

.btn-s {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: .85rem 2rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, .2);
  font-family: var(--font-d);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .3s var(--ease);
}

.btn-s:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(255, 102, 0, .2);
  transform: translateY(-2px);
}

/* ── HERO ──────────────────────────────────── */
/* ── HERO ──────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #080808;
}

/* Hero centered layout (no form on right) */
.hero-con-center {
  display: flex !important;
  grid-template-columns: unset !important;
  justify-content: center;
  align-items: flex-end;
  min-height: 100vh;
  padding-top: 12rem !important;
  padding-bottom: 6rem !important;
}

.hero-center {
  max-width: 1200px;
  text-align: center;
  padding: 3rem 3.5rem;
}

.hero-center .hero-badge {
  justify-content: center;
}

.hero-center .hero-perks {
  justify-content: center;
}

.hero-center .hero-btns {
  justify-content: center;
}

/* ── NAV SELL DROPDOWN ─────────────────────── */
.nav-sell-drop {
  position: relative;
}

.nav-sell-trigger {
  display: flex !important;
  align-items: center;
  gap: 4px;
}

.nav-sell-trigger svg {
  transition: transform .3s;
}

.nav-sell-drop:hover .nav-sell-trigger svg {
  transform: rotate(180deg);
}

.sell-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(12, 12, 12, .96);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .4rem;
  min-width: 160px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  backdrop-filter: blur(20px);
  z-index: 1100;
  list-style: none;
}

.nav-sell-drop:hover .sell-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.sell-dropdown li a {
  display: block;
  padding: .6rem 1rem;
  border-radius: 7px;
  font-family: var(--font-d);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text2);
  letter-spacing: .04em;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.sell-dropdown li a:hover {
  background: rgba(255, 102, 0, .12);
  color: var(--accent);
}

/* Full-screen video background */
.hero-video-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #150902 45%, #0d0603 65%, #080808 100%);
}

.hero-video,
#heroVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  /* Hidden initially, fades in when loaded */
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-section.loaded .hero-video,
.hero-section.loaded #heroVideo {
  opacity: 0.68;
  /* Increased opacity for richer visibility of the video background */
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  /* 65% opacity dark overlay as requested */
  background: radial-gradient(circle at center, rgba(8, 8, 8, 0.6) 0%, rgba(8, 8, 8, 0.7) 100%);
  z-index: 2;
}

/* Animated orange glow effects */
.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(130px);
  opacity: 0.18;
  mix-blend-mode: screen;
  z-index: 2;
  transition: opacity 1.5s ease;
}

.hero-glow-orb-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: 15%;
  left: 8%;
  animation: floatOrb1 24s infinite ease-in-out alternate;
}

.hero-glow-orb-2 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #ffaa66 0%, transparent 70%);
  bottom: 10%;
  right: 8%;
  animation: floatOrb2 28s infinite ease-in-out alternate;
}

@keyframes floatOrb1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, -30px) scale(1.1);
  }

  100% {
    transform: translate(-30px, 40px) scale(0.95);
  }
}

@keyframes floatOrb2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-40px, 40px) scale(1.15);
  }

  100% {
    transform: translate(50px, -20px) scale(0.9);
  }
}

.hero-con {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 9.5rem 3rem 4.5rem;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 4rem;
  align-items: center;
  will-change: transform;
}

/* Glassmorphism content card */
.glass-card {
  background: rgba(14, 14, 14, 0.55);
  border: 1px solid rgba(255, 102, 0, 0.15);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease, opacity 1.2s ease;
  opacity: 0;
  transform: translateY(30px);
}

.hero-section.loaded .glass-card {
  opacity: 1;
  transform: translateY(0);
}

.glass-card:hover {
  border-color: rgba(255, 102, 0, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 102, 0, 0.08);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 102, 0, 0.12);
  border: 1px solid rgba(255, 102, 0, 0.28);
  padding: .35rem .9rem;
  border-radius: 100px;
  font-family: var(--font-m);
  font-size: .7rem;
  color: var(--accent);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    box-shadow: 0 0 6px var(--accent);
  }

  50% {
    box-shadow: 0 0 14px var(--accent), 0 0 24px rgba(255, 102, 0, .5);
  }
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.02em;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}

.hero-sub {
  color: var(--text2);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.8rem;
}

.hero-perks {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.4rem;
  flex-wrap: wrap;
}

.hp {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-m);
  font-size: .72rem;
  color: var(--text2);
  letter-spacing: .05em;
}

.hp svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── FORM CARD ─────────────────────────────── */
.form-card {
  padding: 2.2rem 1.8rem;
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.fh {
  margin-bottom: 1.4rem;
  text-align: center;
}

.fh h3 {
  font-family: var(--font-d);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.fh p {
  color: var(--text3);
  font-size: .75rem;
  font-family: var(--font-m);
  letter-spacing: .05em;
}

.fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin-bottom: .65rem;
}

.ff {
  position: relative;
}

.ff.full {
  grid-column: 1/-1;
}

.ff input,
.ff select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 1.2rem 1rem 0.4rem;
  color: var(--text);
  font-family: var(--font-b);
  font-size: .95rem;
  transition: all 0.3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
}

.ff-label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text3);
  font-family: var(--font-b);
  font-size: 0.95rem;
  pointer-events: none;
  transition: all 0.3s var(--ease);
}

.ff input:focus~.ff-label,
.ff input:not(:placeholder-shown)~.ff-label,
.ff select:focus~.ff-label,
.ff select:valid~.ff-label {
  top: 0.8rem;
  font-size: 0.65rem;
  color: var(--accent);
}

.ff select {
  overflow-y: auto;
  max-height: 300px;
}

.ff select option {
  background: #1a1a1a;
  color: #fff;
}

.ff input::placeholder {
  color: transparent;
}

.ff input:focus,
.ff select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1), 0 0 18px rgba(255, 102, 0, 0.14);
  background: rgba(255, 102, 0, 0.03);
}

.ftrust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: .6rem;
  font-family: var(--font-m);
  font-size: .67rem;
  color: var(--text3);
}

/* ── WHY SELL ──────────────────────────────── */
#why {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, #0d0d0d 100%);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3.5rem;
  perspective: 1200px;
}

.feat-card {
  background: rgba(18, 18, 18, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 102, 0, 0.15);
  border-radius: 12px;
  padding: 1.75rem 1.4rem;
  position: relative;
  overflow: hidden;
  transition: all .4s var(--ease);
}

.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 102, 0, .07), transparent);
  opacity: 0;
  transition: opacity .4s;
}

.feat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .4s;
}

.feat-particle {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 6px 2px rgba(255, 102, 0, .95),
    0 0 14px 4px rgba(255, 102, 0, .45);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  offset-path: inset(0 round 12px);
  offset-anchor: center;
  offset-rotate: 0deg;
}

.feat-card:hover .feat-particle {
  opacity: 1;
  visibility: visible;
  animation: featBorderRun 3.5s linear infinite;
}

@keyframes featBorderRun {
  from {
    offset-distance: 0%;
  }

  to {
    offset-distance: 100%;
  }
}

@supports not (offset-path: inset(0 round 12px)) {
  .feat-particle {
    offset-path: none;
  }

  .feat-card:hover .feat-particle {
    animation: featBorderFallback 3.5s linear infinite;
  }

  @keyframes featBorderFallback {
    0% {
      top: 0;
      left: 12px;
    }

    25% {
      top: 0;
      left: calc(100% - 12px);
    }

    50% {
      top: calc(100% - 5px);
      left: calc(100% - 5px);
    }

    75% {
      top: calc(100% - 5px);
      left: 12px;
    }

    100% {
      top: 0;
      left: 12px;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .feat-card:hover .feat-particle {
    animation: none;
    top: 0;
    left: 50%;
    offset-distance: 0%;
  }
}

.feat-card:hover {
  transform: translateY(-8px) rotateX(1deg);
  border-color: rgba(255, 102, 0, .3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5), 0 0 35px rgba(255, 102, 0, .1);
  overflow: visible;
  z-index: 2;
}

.feat-card:hover::before,
.feat-card:hover::after {
  opacity: 1;
}

.feat-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 102, 0, .1);
  border: 1px solid rgba(255, 102, 0, .2);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  transition: all .4s var(--ease);
  color: var(--accent);
}

.feat-card:hover .feat-icon {
  background: rgba(255, 102, 0, .2);
  border-color: var(--accent);
  box-shadow: 0 0 22px rgba(255, 102, 0, .35);
  transform: scale(1.1) rotate(5deg);
}

.feat-card h3 {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.feat-card p {
  color: var(--text2);
  font-size: .88rem;
  line-height: 1.7;
}

/* ── FEAT GRID — INSANE DIRECTIONAL POP-INS ─ */
.feat-pop-left,
.feat-pop-up,
.feat-pop-right {
  opacity: 0;
  will-change: transform, opacity, filter;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.feat-pop-left.on {
  animation: insanePopLeft 1.35s cubic-bezier(0.22, 1.25, 0.36, 1) both;
}

.feat-pop-up.on {
  animation: insanePopUp 1.35s cubic-bezier(0.22, 1.25, 0.36, 1) both;
}

.feat-pop-right.on {
  animation: insanePopRight 1.35s cubic-bezier(0.22, 1.25, 0.36, 1) both;
}

.feat-grid .feat-card:nth-child(1).on {
  animation-delay: 0s;
}

.feat-grid .feat-card:nth-child(2).on {
  animation-delay: 0.12s;
}

.feat-grid .feat-card:nth-child(3).on {
  animation-delay: 0.24s;
}

.feat-grid .feat-card:nth-child(4).on {
  animation-delay: 0.36s;
}

.feat-grid .feat-card:nth-child(5).on {
  animation-delay: 0.48s;
}

.feat-grid .feat-card:nth-child(6).on {
  animation-delay: 0.6s;
}

.feat-card.on .feat-icon {
  animation: featIconSlam 0.7s cubic-bezier(0.34, 1.6, 0.64, 1) both;
}

.feat-grid .feat-card:nth-child(1).on .feat-icon {
  animation-delay: 0.4s;
}

.feat-grid .feat-card:nth-child(2).on .feat-icon {
  animation-delay: 0.52s;
}

.feat-grid .feat-card:nth-child(3).on .feat-icon {
  animation-delay: 0.64s;
}

.feat-grid .feat-card:nth-child(4).on .feat-icon {
  animation-delay: 0.76s;
}

.feat-grid .feat-card:nth-child(5).on .feat-icon {
  animation-delay: 0.88s;
}

.feat-grid .feat-card:nth-child(6).on .feat-icon {
  animation-delay: 1s;
}

.feat-card.on h3 {
  animation: featTextRip 0.65s cubic-bezier(0.22, 1.1, 0.36, 1) both;
}

.feat-grid .feat-card:nth-child(1).on h3 {
  animation-delay: 0.58s;
}

.feat-grid .feat-card:nth-child(2).on h3 {
  animation-delay: 0.7s;
}

.feat-grid .feat-card:nth-child(3).on h3 {
  animation-delay: 0.82s;
}

.feat-grid .feat-card:nth-child(4).on h3 {
  animation-delay: 0.94s;
}

.feat-grid .feat-card:nth-child(5).on h3 {
  animation-delay: 1.06s;
}

.feat-grid .feat-card:nth-child(6).on h3 {
  animation-delay: 1.18s;
}

@keyframes insanePopLeft {
  0% {
    opacity: 0;
    transform: translateX(-220px) rotateY(35deg) rotateZ(-10deg) scale(0.35);
    filter: blur(18px) brightness(2.2);
    box-shadow: -40px 0 80px rgba(255, 102, 0, 0.55);
  }

  50% {
    opacity: 1;
    transform: translateX(28px) rotateY(-8deg) rotateZ(4deg) scale(1.14);
    filter: blur(0) brightness(1.35);
    box-shadow: 0 0 70px rgba(255, 102, 0, 0.45), -12px 0 30px rgba(255, 102, 0, 0.25);
    border-color: rgba(255, 102, 0, 0.55);
  }

  72% {
    transform: translateX(-14px) rotateY(4deg) rotateZ(-2deg) scale(0.97);
    box-shadow: 0 0 35px rgba(255, 102, 0, 0.2);
  }

  88% {
    transform: translateX(7px) rotateZ(1deg) scale(1.03);
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotateY(0) rotateZ(0) scale(1);
    filter: blur(0) brightness(1);
    box-shadow: none;
    border-color: var(--border2);
  }
}

@keyframes insanePopUp {
  0% {
    opacity: 0;
    transform: translateY(200px) rotateX(55deg) scale(0.3);
    filter: blur(20px) brightness(2.4);
    box-shadow: 0 60px 90px rgba(255, 102, 0, 0.5);
  }

  45% {
    opacity: 1;
    transform: translateY(-32px) rotateX(-12deg) scale(1.16);
    filter: blur(0) brightness(1.4);
    box-shadow: 0 -8px 80px rgba(255, 102, 0, 0.5), 0 20px 50px rgba(255, 102, 0, 0.25);
    border-color: rgba(255, 102, 0, 0.6);
  }

  68% {
    transform: translateY(18px) rotateX(6deg) scale(0.95);
    box-shadow: 0 0 40px rgba(255, 102, 0, 0.22);
  }

  86% {
    transform: translateY(-8px) scale(1.04);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
    filter: blur(0) brightness(1);
    box-shadow: none;
    border-color: var(--border2);
  }
}

@keyframes insanePopRight {
  0% {
    opacity: 0;
    transform: translateX(220px) rotateY(-35deg) rotateZ(10deg) scale(0.35);
    filter: blur(18px) brightness(2.2);
    box-shadow: 40px 0 80px rgba(255, 102, 0, 0.55);
  }

  50% {
    opacity: 1;
    transform: translateX(-28px) rotateY(8deg) rotateZ(-4deg) scale(1.14);
    filter: blur(0) brightness(1.35);
    box-shadow: 0 0 70px rgba(255, 102, 0, 0.45), 12px 0 30px rgba(255, 102, 0, 0.25);
    border-color: rgba(255, 102, 0, 0.55);
  }

  72% {
    transform: translateX(14px) rotateY(-4deg) rotateZ(2deg) scale(0.97);
    box-shadow: 0 0 35px rgba(255, 102, 0, 0.2);
  }

  88% {
    transform: translateX(-7px) rotateZ(-1deg) scale(1.03);
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotateY(0) rotateZ(0) scale(1);
    filter: blur(0) brightness(1);
    box-shadow: none;
    border-color: var(--border2);
  }
}

@keyframes featIconSlam {
  0% {
    transform: scale(0) rotate(-200deg);
    opacity: 0;
    box-shadow: 0 0 0 rgba(255, 102, 0, 0);
  }

  65% {
    transform: scale(1.45) rotate(15deg);
    opacity: 1;
    box-shadow: 0 0 40px rgba(255, 102, 0, 0.7);
  }

  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
    box-shadow: none;
  }
}

@keyframes featTextRip {
  0% {
    opacity: 0;
    transform: translateX(-12px) skewX(-8deg);
    letter-spacing: .25em;
  }

  100% {
    opacity: 1;
    transform: translateX(0) skewX(0);
    letter-spacing: .05em;
  }
}

#why.feat-burst::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 55%, rgba(255, 102, 0, 0.18) 0%, transparent 55%);
  animation: featBurstFlash 1.2s ease-out both;
  z-index: 0;
}

#why.feat-burst .con {
  position: relative;
  z-index: 1;
}

@keyframes featBurstFlash {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }

  35% {
    opacity: 1;
    transform: scale(1.15);
  }

  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

@media (prefers-reduced-motion: reduce) {

  .feat-pop-left,
  .feat-pop-up,
  .feat-pop-right {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .feat-pop-left.on,
  .feat-pop-up.on,
  .feat-pop-right.on,
  .feat-card.on .feat-icon,
  .feat-card.on h3 {
    animation: none;
  }

  #why.feat-burst::before {
    animation: none;
    opacity: 0;
  }
}

/* ── HOW IT WORKS ──────────────────────────── */
#how {
  background: #0a0a0a;
}

#how::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(255, 102, 0, .05) 0%, transparent 70%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}

.steps-line {
  position: absolute;
  top: 33px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  z-index: 0;
  pointer-events: none;
}

.steps-line-track {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 102, 0, .35), rgba(255, 102, 0, .5), rgba(255, 102, 0, .35), transparent);
}

.steps-particle {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  margin-top: -2.5px;
  margin-left: -2.5px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 6px 2px rgba(255, 102, 0, .95),
    0 0 14px 4px rgba(255, 102, 0, .45);
  animation: stepsLineRun 5s linear infinite;
}

.steps-particle:nth-child(2) {
  animation-delay: -1.6s;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  margin-left: -2px;
}

.steps-particle:nth-child(3) {
  animation-delay: -3.2s;
  width: 3px;
  height: 3px;
  margin-top: -1.5px;
  margin-left: -1.5px;
  box-shadow:
    0 0 4px 1px rgba(255, 180, 100, .9),
    0 0 10px 3px rgba(255, 102, 0, .35);
}

@keyframes stepsLineRun {
  0% {
    left: 0%;
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  92% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

.step {
  text-align: center;
}

.step-circ {
  width: 66px;
  height: 66px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  background: rgba(255, 102, 0, .08);
  position: relative;
  z-index: 1;
  transition: all .4s var(--ease);
  color: var(--accent);
}

.step-circ::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(255, 102, 0, .2);
}

.step:hover .step-circ {
  background: rgba(255, 102, 0, .2);
  box-shadow: 0 0 30px rgba(255, 102, 0, .4);
  transform: scale(1.1);
}

.step-n {
  position: absolute;
  top: -10px;
  right: -4px;
  font-family: var(--font-m);
  font-size: .6rem;
  color: var(--accent);
  background: var(--bg);
  padding: 1px 5px;
  border: 1px solid rgba(255, 102, 0, .3);
  border-radius: 3px;
  letter-spacing: .1em;
}

.step-lbl {
  font-family: var(--font-m);
  font-size: .68rem;
  color: var(--accent);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}

.step-title {
  font-family: var(--font-d);
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .4rem;
}

.step-desc {
  color: var(--text2);
  font-size: .85rem;
  line-height: 1.65;
}


/* ── MARQUEE ───────────────────────────────── */
.marq-wrap {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 102, 0, 0.14);
  border-bottom: 1px solid rgba(255, 102, 0, 0.14);
  padding: 1.15rem 0;
  margin: 0;
  background:
    radial-gradient(ellipse 70% 140% at 18% 50%, rgba(255, 255, 255, 0.035) 0%, transparent 62%),
    radial-gradient(ellipse 55% 120% at 82% 50%, rgba(255, 102, 0, 0.05) 0%, transparent 58%),
    repeating-linear-gradient(60deg, transparent 0, transparent 9px, rgba(255, 255, 255, 0.014) 9px, rgba(255, 255, 255, 0.014) 10px),
    repeating-linear-gradient(-60deg, transparent 0, transparent 9px, rgba(255, 255, 255, 0.014) 9px, rgba(255, 255, 255, 0.014) 10px),
    #0a0a0a;
}

.marq-wrap::before,
.marq-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.marq-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #0a0a0a 15%, transparent);
}

.marq-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, #0a0a0a 15%, transparent);
}

.marq-inner {
  display: flex;
  gap: 0;
  animation: marqMove 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marq-item {
  font-family: var(--font-d);
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: .2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 3.5rem;
}

.brand-logo {
  height: 1.25em;
  width: auto;
  fill: currentColor;
  margin-right: 0.65rem;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity 0.3s, color 0.3s, filter 0.3s;
}

.brand-logo-img {
  height: 1.5em;
  width: auto;
  margin-right: 0.65rem;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity 0.3s, filter 0.3s;
  object-fit: contain;
}

.marq-item:hover {
  color: #fff;
}

.marq-item:hover .brand-logo,
.marq-item:hover .brand-logo-img {
  opacity: 1;
  color: var(--accent);
  filter: drop-shadow(0 0 4px var(--accent-glow));
}

@media (prefers-reduced-motion: reduce) {
  .marq-inner {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 1rem 2rem;
    padding: 0 1.5rem;
  }

  .marq-item {
    padding-right: 0;
  }
}

@keyframes marqMove {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}


/* ── FAQ ───────────────────────────────────── */
#faq {
  background: #0a0a0a;
}

.faq-cols {
  column-count: 2;
  column-gap: .9rem;
  margin-top: 2.5rem;
}

.faq-item {
  break-inside: avoid;
  margin-bottom: .9rem;
  background: rgba(18, 18, 18, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 102, 0, 0.12);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}

.faq-item.open {
  border-color: rgba(255, 102, 0, .3);
  box-shadow: 0 0 20px rgba(255, 102, 0, .06);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  text-align: left;
  font-family: var(--font-d);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  border: none;
  appearance: none;
  cursor: none;
  transition: color .3s;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-item.open .faq-q {
  color: var(--accent);
}

.faq-ico {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 102, 0, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s;
  font-size: .9rem;
  color: var(--accent);
}

.faq-item.open .faq-ico {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(45deg);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}

.faq-a-in {
  padding: 0 1.4rem 1.15rem;
  color: var(--text2);
  font-size: .88rem;
  line-height: 1.75;
}

/* FAQ — bottom-to-top staggered pop-in */
.faq-pop-up {
  opacity: 0;
  transform: translateY(72px) scale(0.94);
  filter: blur(5px);
  will-change: transform, opacity, filter;
}

.faq-pop-up.on {
  animation: faqPopUp 0.95s cubic-bezier(0.22, 1.12, 0.36, 1) both;
  animation-delay: calc(var(--faq-i, 0) * 0.14s);
}

/* Column layout: animate bottom row first, then up */
.faq-cols .faq-pop-up:nth-child(4) {
  --faq-i: 0;
}

.faq-cols .faq-pop-up:nth-child(8) {
  --faq-i: 1;
}

.faq-cols .faq-pop-up:nth-child(3) {
  --faq-i: 2;
}

.faq-cols .faq-pop-up:nth-child(7) {
  --faq-i: 3;
}

.faq-cols .faq-pop-up:nth-child(2) {
  --faq-i: 4;
}

.faq-cols .faq-pop-up:nth-child(6) {
  --faq-i: 5;
}

.faq-cols .faq-pop-up:nth-child(1) {
  --faq-i: 6;
}

.faq-cols .faq-pop-up:nth-child(5) {
  --faq-i: 7;
}

@keyframes faqPopUp {
  0% {
    opacity: 0;
    transform: translateY(72px) scale(0.92);
    filter: blur(8px);
    box-shadow: 0 24px 40px rgba(255, 102, 0, 0);
  }

  55% {
    opacity: 1;
    transform: translateY(-10px) scale(1.03);
    filter: blur(0);
    box-shadow: 0 16px 36px rgba(255, 102, 0, 0.12);
    border-color: rgba(255, 102, 0, 0.22);
  }

  78% {
    transform: translateY(5px) scale(0.99);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    box-shadow: none;
    border-color: var(--border2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-pop-up {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .faq-pop-up.on {
    animation: none;
  }
}

/* ── FINAL CTA ─────────────────────────────── */
#cta {
  background: linear-gradient(180deg, var(--bg) 0%, #0a0a0a 100%);
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 102, 0, .1) 0%, transparent 68%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: .8rem;
  line-height: 1.05;
}

.cta-content p {
  color: var(--text2);
  font-size: 1.05rem;
  margin-bottom: 2.2rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ────────────────────────────────── */
#footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 5rem 3rem 2rem;
}

.foot-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.foot-logo {
  font-family: var(--font-d);
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: .4rem;
}

.foot-tagline {
  font-family: var(--font-d);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.9rem;
  letter-spacing: 0.05em;
}

.foot-logo .n-letter {
  color: var(--text);
}

.foot-logo span {
  color: var(--accent);
}

.foot-logo .n-letter {
  color: var(--text);
}

.foot-desc {
  color: var(--text2);
  font-size: .88rem;
  line-height: 1.8;
  margin-bottom: 1.3rem;
}

.foot-soc {
  display: flex;
  gap: .65rem;
}

.soc-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border2);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  transition: all .3s var(--ease);
}

.soc-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 14px rgba(255, 102, 0, .2);
}

.foot-ttl {
  font-family: var(--font-d);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1.3rem;
}

.foot-links {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.foot-links a {
  color: var(--text2);
  font-size: .85rem;
  transition: color .3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.foot-links a::before {
  content: '›';
  color: var(--accent);
  opacity: 0;
  transition: all .3s;
  transform: translateX(-4px);
}

.foot-links a:hover {
  color: #fff;
}

.foot-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.ci {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--text2);
  font-size: .85rem;
  margin-bottom: .75rem;
  line-height: 1.55;
}

.ci svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.foot-btm {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.foot-copy {
  color: var(--text3);
  font-size: .78rem;
  font-family: var(--font-m);
}

.foot-btm-links {
  display: flex;
  gap: 1.4rem;
}

.foot-btm-links a {
  color: var(--text3);
  font-size: .78rem;
  font-family: var(--font-m);
  transition: color .3s;
}

.foot-btm-links a:hover {
  color: var(--accent);
}

/* WhatsApp float */
.wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9990;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  animation: waBounce 2.5s ease-in-out infinite;
  cursor: none;
}

.wa-btn:hover {
  animation: none;
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .6);
}

@keyframes waBounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-5px)
  }
}

#scrollTop {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9989;
  opacity: 0;
  transform: translateY(10px);
  cursor: none;
  transition: all .3s var(--ease);
  color: var(--text2);
}

#scrollTop.vis {
  opacity: 1;
  transform: translateY(0);
}

#scrollTop:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 14px rgba(255, 102, 0, .2);
}

/* ── ANIM HELPERS ──────────────────────────── */
.fadeUp {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.fadeUp.on {
  opacity: 1;
  transform: translateY(0);
}

.fadeUp:nth-child(2) {
  transition-delay: .1s
}

.fadeUp:nth-child(3) {
  transition-delay: .2s
}

.fadeUp:nth-child(4) {
  transition-delay: .3s
}

.fadeUp:nth-child(5) {
  transition-delay: .4s
}

.fadeUp:nth-child(6) {
  transition-delay: .5s
}

.slideRight {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 2.3s cubic-bezier(0.25, 1, 0.5, 1), transform 2.3s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

.slideRight.on {
  opacity: 1;
  transform: translateX(0);
}
.tc.slideRight,
.about-marketplace.slideRight {
  /* keep compatibility */
}

.slideRightBorder {
  opacity: 0;
  transform: translateX(calc(-50vw - 30%));
  transition: opacity 2.3s cubic-bezier(0.25, 1, 0.5, 1), transform 2.3s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

.slideRightBorder.on {
  opacity: 1;
  transform: translateX(0);
}

.slideLeftPop {
  opacity: 0;
  transform: translateX(100px) scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

.slideLeftPop.on {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* --- IMAGE MASK PARALLAX --- */
.img-mask-reveal {
  position: relative;
  overflow: hidden;
}

.img-mask-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 2;
}

.img-mask-reveal img {
  opacity: 0;
  transform: scale(1.1);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.1s;
}

.img-mask-reveal.on::after {
  transform-origin: right;
  transform: scaleX(0);
}

.img-mask-reveal.on img {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.3s;
}

.steps .step:nth-child(2) {
  transition-delay: 0.15s;
}

.steps .step:nth-child(3) {
  transition-delay: 0.45s;
}

.steps .step:nth-child(4) {
  transition-delay: 0.75s;
}

.steps .step:nth-child(5) {
  transition-delay: 1.05s;
}

@media(max-width:1100px) {
  .hero-con {
    grid-template-columns: 1fr
  }

  .form-card {
    max-width: 480px;
    margin: 0 auto
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .stat:nth-child(2) {
    border-right: none
  }

  .stat {
    border-bottom: 1px solid var(--border)
  }

  .stat:nth-child(3),
  .stat:last-child {
    border-bottom: none
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr
  }

  .faq-cols {
    column-count: 1;
  }

  .faq-cols .faq-pop-up:nth-child(8) {
    --faq-i: 0;
  }

  .faq-cols .faq-pop-up:nth-child(7) {
    --faq-i: 1;
  }

  .faq-cols .faq-pop-up:nth-child(6) {
    --faq-i: 2;
  }

  .faq-cols .faq-pop-up:nth-child(5) {
    --faq-i: 3;
  }

  .faq-cols .faq-pop-up:nth-child(4) {
    --faq-i: 4;
  }

  .faq-cols .faq-pop-up:nth-child(3) {
    --faq-i: 5;
  }

  .faq-cols .faq-pop-up:nth-child(2) {
    --faq-i: 6;
  }

  .faq-cols .faq-pop-up:nth-child(1) {
    --faq-i: 7;
  }

  /* Steps 1100px responsive */
  .steps {
    gap: 1.2rem;
  }

  .step-circ {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
  }

  .step-circ svg {
    width: 22px;
    height: 22px;
  }

  .step-title {
    font-size: 0.88rem;
  }

  .step-desc {
    font-size: 0.8rem;
  }

  /* Showroom 1100px */
  .showroom-viewport-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .spec-cards-left,
  .spec-cards-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .showroom-viewer {
    height: 400px;
  }
}

@media(max-width:768px) {
  .sp {
    padding: 5rem 1.5rem
  }

  #nav {
    padding: 1rem 1.5rem
  }

  #nav.stuck {
    padding: .8rem 1.5rem
  }

  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  .mob-nav {
    display: flex
  }

  .hero-con {
    padding: 7rem 1.5rem 3rem
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .feat-grid {
    grid-template-columns: 1fr 1fr
  }

  .foot-grid {
    grid-template-columns: 1fr
  }

  .foot-btm {
    flex-direction: column;
    text-align: center
  }

  .fgrid {
    grid-template-columns: 1fr
  }

  #footer {
    padding: 3rem 1.5rem 1.5rem
  }

  /* Steps 768px responsive */
  .steps {
    gap: 0.8rem;
  }

  .steps-line {
    display: none;
  }

  .step-circ {
    width: 46px;
    height: 46px;
    margin-bottom: 0.8rem;
  }

  .step-circ svg {
    width: 18px;
    height: 18px;
  }

  .step-circ::before {
    inset: -3px;
  }

  .step-n {
    font-size: 0.52rem;
    top: -7px;
    right: -3px;
    padding: 0.5px 3.5px;
  }

  .step-lbl {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
  }

  .step-title {
    font-size: 0.82rem;
  }

  .step-desc {
    font-size: 0.76rem;
    line-height: 1.5;
  }

  /* Showroom 768px */
  .spec-cards-left,
  .spec-cards-right {
    grid-template-columns: 1fr;
  }

  .showroom-viewer {
    height: 320px;
  }

  .showroom-controls {
    flex-direction: column;
    align-items: stretch;
    padding: 1.2rem;
  }

  .control-group {
    justify-content: space-between;
  }
}

@media(max-width:480px) {
  .feat-grid {
    grid-template-columns: 1fr
  }

  .hero-btns {
    flex-direction: column
  }

  .btn-p,
  .btn-s {
    width: 100%;
    justify-content: center
  }

  .cta-btns {
    flex-direction: column;
    align-items: center
  }

  .hero-perks {
    gap: 1rem
  }

  /* Steps 480px responsive */
  .steps {
    gap: 0.4rem;
  }

  .step-circ {
    width: 36px;
    height: 36px;
    margin-bottom: 0.5rem;
  }

  .step-circ svg {
    width: 14px;
    height: 14px;
  }

  .step-circ::before {
    inset: -2px;
  }

  .step-n {
    font-size: 0.48rem;
    top: -5px;
    right: -2px;
    padding: 0px 2.5px;
  }

  .step-lbl {
    font-size: 0.52rem;
    letter-spacing: 0.1em;
  }

  .step-title {
    font-size: 0.72rem;
  }

  .step-desc {
    font-size: 0.64rem;
    line-height: 1.35;
  }
}

/* ── SELL SECTION ───────────────────────────── */
.sell-section {
  background: #0a0a0a;
}

/* Tab switcher */
.sell-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0 2rem;
}

.sell-tab {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 2.2rem;
  background: var(--card);
  border: 2px solid var(--border2);
  border-radius: 50px;
  font-family: var(--font-d);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text2);
  letter-spacing: .06em;
  cursor: none;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}

.sell-tab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 102, 0, .12), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.sell-tab:hover {
  border-color: rgba(255, 102, 0, .4);
  color: var(--accent);
}

.sell-tab:hover::before {
  opacity: 1;
}

.sell-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 28px rgba(255, 102, 0, .45);
}

.sell-tab.active::before {
  opacity: 0;
}

/* Form wrapper */
.sell-form-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.sell-form-card {
  background: rgba(18, 18, 18, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 102, 0, 0.15);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5), 0 0 40px rgba(255, 102, 0, .05);
  animation: fadeInUp .5s var(--ease) both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sell-form-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border2);
}

.sell-form-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 102, 0, .1);
  border: 1px solid rgba(255, 102, 0, .25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.sell-form-header h3 {
  font-family: var(--font-d);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .15rem;
}

.sell-form-header p {
  color: var(--text3);
  font-size: .78rem;
  font-family: var(--font-m);
  letter-spacing: .06em;
}

.sell-fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin-bottom: 1.2rem;
}

.sell-submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem;
}

@media(max-width:600px) {
  .sell-fgrid {
    grid-template-columns: 1fr;
  }

  .sell-tabs {
    flex-direction: column;
    align-items: center;
  }

  .sell-tab {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .sell-form-card {
    padding: 1.5rem;
  }

  .hero-center {
    padding: 2rem 1.5rem;
  }
}

/* ── CTA SECTION BACKGROUND IMAGE ──────────── */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-bg-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(8, 8, 8, 0.6) 0%, rgba(8, 8, 8, 0.75) 100%);
  z-index: 1;
}

.cta-section .cta-glow,
.cta-section .cta-content {
  position: relative;
  z-index: 2;
}

/* ==========================================
   FLOWCHART TIMELINE STYLES
   ========================================== */
.flowchart-container {
  position: relative;
  max-width: 1000px;
  margin: 4rem auto;
  padding: 2rem 0;
}

.flowchart-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent), rgba(255, 102, 0, 0.3), var(--accent), transparent);
  transform: translateX(-50%);
  z-index: 1;
}

.flowchart-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}

.flowchart-step {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 50%;
  padding: 1.5rem 3rem 1.5rem 0;
  box-sizing: border-box;
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

.flowchart-step.right {
  align-self: flex-end;
  justify-content: flex-start;
  padding: 1.5rem 0 1.5rem 3rem;
  transform: translateX(100px);
}

.flowchart-step.on {
  opacity: 1;
  transform: translateX(0) !important;
}

.flowchart-node {
  position: absolute;
  top: 50%;
  right: -17px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #080808;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-m);
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
  transform: translateY(-50%);
  z-index: 3;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.2);
  transition: all 0.3s ease;
}

.flowchart-step.right .flowchart-node {
  right: auto;
  left: -17px;
}

.flowchart-card {
  background: rgba(18, 18, 18, 0.4);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 102, 0, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  width: 100%;
  max-width: 420px;
  transition: all 0.3s var(--ease);
  position: relative;
}

.flowchart-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.3), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.flowchart-step:hover .flowchart-card {
  transform: translateY(-5px);
  border-color: rgba(255, 102, 0, 0.4);
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.08);
}

.flowchart-step:hover .flowchart-node {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.6);
  transform: translateY(-50%) scale(1.15);
}

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

.flowchart-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 102, 0, 0.1);
  border: 1px solid rgba(255, 102, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.flowchart-step:hover .flowchart-icon {
  background: var(--accent);
  color: #fff;
  transform: rotate(5deg);
}

.flowchart-card h3 {
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 0;
  text-transform: uppercase;
  color: #fff;
}

.flowchart-card p {
  font-family: var(--font-b);
  color: var(--text2);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Flowchart */
@media (max-width: 768px) {
  .flowchart-line {
    left: 20px;
    transform: none;
  }

  .flowchart-step {
    width: 100%;
    align-self: flex-start !important;
    justify-content: flex-start !important;
    left: 0 !important;
    padding: 1.5rem 0 1.5rem 50px !important;
    transform: translateX(-40px);
  }

  .flowchart-step.right {
    transform: translateX(-40px);
  }

  .flowchart-step.on {
    transform: translateX(0);
  }

  .flowchart-node {
    left: 4px !important;
    right: auto !important;
  }

  .flowchart-card {
    max-width: 100%;
  }
}

/* ==========================================
   CONTACT GRID
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

@media(max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   ========================================== */

/* ── TOUCH DEVICES — Disable custom cursor ── */
@media (hover: none) and (pointer: coarse) {
  body,
  a,
  button {
    cursor: auto !important;
  }

  #cur-dot {
    display: none !important;
  }

  .faq-q {
    cursor: pointer;
  }

  .sell-tab {
    cursor: pointer;
  }

  /* Disable heavy backdrop blur on low-power devices */
  .feat-card,
  .faq-item,
  .sell-form-card,
  .flowchart-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(18, 18, 18, 0.85);
  }

  /* Disable hover transforms on touch */
  .feat-card:hover {
    transform: none;
  }

  .flowchart-step:hover .flowchart-card {
    transform: none;
  }

  .flowchart-step:hover .flowchart-node {
    transform: translateY(-50%);
  }
}

/* ── 1100px — Tablet landscape ────────────── */
@media (max-width: 1100px) {
  .hero-con-center {
    padding-top: 9rem !important;
    padding-bottom: 5rem !important;
  }

  .hero-center {
    padding: 2.5rem 2rem;
  }

  .hero-glow-orb-1 {
    width: 320px;
    height: 320px;
  }

  .hero-glow-orb-2 {
    width: 350px;
    height: 350px;
  }
}

/* ── 768px — Tablet portrait / large phone ── */
@media (max-width: 768px) {
  /* Nav logo */
  .nav-logo img {
    height: 55px;
    margin-top: -6px;
    margin-bottom: -6px;
  }

  #nav.stuck .nav-logo img {
    height: 48px;
    margin-top: -4px;
    margin-bottom: -4px;
  }

  /* Hero adjustments */
  .hero-con-center {
    padding-top: 7rem !important;
    padding-bottom: 3.5rem !important;
    min-height: auto;
  }

  .hero-center {
    padding: 2rem 1rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    margin-bottom: 1rem;
  }

  .hero-sub {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.4rem;
  }

  .hero-sub br {
    display: none;
  }

  .hero-perks {
    gap: 0.6rem 1rem;
    margin-bottom: 1.8rem;
    justify-content: center;
  }

  .hp {
    font-size: 0.65rem;
  }

  .hero-btns {
    gap: 0.75rem;
  }

  /* Hero glow orbs — smaller */
  .hero-glow-orb-1 {
    width: 200px;
    height: 200px;
    filter: blur(80px);
  }

  .hero-glow-orb-2 {
    width: 220px;
    height: 220px;
    filter: blur(80px);
  }

  /* Section titles */
  .sec-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  /* Steps grid — 2 columns on tablet */
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* CTA section */
  .cta-content h2 {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }

  .cta-content p {
    font-size: 0.92rem;
    padding: 0 0.5rem;
  }

  /* Contact info in footer */
  .ci {
    font-size: 0.82rem;
  }

  /* Scroll top button */
  #scrollTop {
    bottom: 1.5rem;
    right: 1rem;
    width: 36px;
    height: 36px;
  }

  /* WhatsApp button */
  .wa-btn {
    bottom: 1.5rem;
    right: 1rem;
    width: 48px;
    height: 48px;
  }
}

/* ── 600px — Small tablet / large phone ───── */
@media (max-width: 600px) {
  /* Hero */
  .hero-section {
    min-height: auto;
  }

  .hero-con-center {
    padding-top: 6rem !important;
    padding-bottom: 3rem !important;
    align-items: center;
  }

  .hero-title {
    font-size: clamp(1.5rem, 7.5vw, 2.2rem);
    letter-spacing: -0.01em;
  }

  .hero-sub {
    font-size: 0.85rem;
  }

  .hero-perks {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  /* About page hero */
  .page-hero {
    padding: 7rem 1rem 2.5rem;
  }

  .page-hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-hero-sub {
    font-size: 0.92rem;
  }

  /* Steps grid — single column on phone */
  .steps {
    grid-template-columns: 1fr;
  }

  /* About mission */
  .about-mission {
    padding: 1.8rem 1.2rem;
  }

  .about-mission p {
    font-size: 0.92rem;
  }

  /* CTA */
  .cta-content h2 {
    font-size: clamp(1.5rem, 6.5vw, 2.2rem);
  }

  /* Eyebrow */
  .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
  }

  /* Section padding */
  .sp {
    padding: 4rem 1.2rem;
  }

  /* Footer */
  #footer {
    padding: 2.5rem 1.2rem 1.2rem;
  }

  .foot-logo {
    font-size: 1.4rem;
  }

  .foot-btm-links {
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Sell form responsive */
  .sell-form-header {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  .sell-form-icon {
    width: 48px;
    height: 48px;
  }
}

/* ── 480px — Small phone ──────────────────── */
@media (max-width: 480px) {
  /* Nav */
  #nav {
    padding: 0.8rem 1rem;
  }

  #nav.stuck {
    padding: 0.6rem 1rem;
  }

  .nav-logo img {
    height: 45px;
    margin-top: -4px;
    margin-bottom: -4px;
  }

  #nav.stuck .nav-logo img {
    height: 40px;
    margin-top: -3px;
    margin-bottom: -3px;
  }

  /* Hero */
  .hero-con-center {
    padding-top: 5.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .hero-center {
    padding: 1.5rem 0.5rem;
  }

  .hero-title {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
    line-height: 1.15;
    margin-bottom: 0.8rem;
  }

  .hero-sub {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }

  .hp {
    font-size: 0.6rem;
  }

  .btn-p,
  .btn-s {
    padding: 0.75rem 1.4rem;
    font-size: 0.8rem;
  }

  /* Sections */
  .sp {
    padding: 3.5rem 1rem;
  }

  .sec-title {
    font-size: clamp(1.3rem, 5.5vw, 1.8rem);
  }

  /* Feat cards */
  .feat-card {
    padding: 1.2rem 1rem;
  }

  .feat-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
  }

  .feat-card h3 {
    font-size: 0.88rem;
  }

  .feat-card p {
    font-size: 0.8rem;
  }

  /* FAQ */
  .faq-q {
    padding: 1rem 1.1rem;
    font-size: 0.82rem;
    gap: 0.75rem;
  }

  .faq-a-in {
    padding: 0 1.1rem 1rem;
    font-size: 0.8rem;
  }

  /* CTA */
  .cta-content h2 {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .cta-content p {
    font-size: 0.82rem;
  }

  .cta-btns .btn-p,
  .cta-btns .btn-s {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  #footer {
    padding: 2rem 1rem 1rem;
  }

  .foot-grid {
    gap: 2rem;
  }

  .foot-desc {
    font-size: 0.82rem;
  }

  .foot-ttl {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }

  .foot-links a {
    font-size: 0.8rem;
  }

  .ci {
    font-size: 0.78rem;
  }

  .foot-copy,
  .foot-btm-links a {
    font-size: 0.68rem;
  }

  /* Loader */
  .ld-logo-img {
    height: clamp(90px, 18vh, 140px);
  }

  .ld-logo {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  /* About checklist */
  .about-checklist li {
    padding: 0.7rem 0.8rem;
    font-size: 0.85rem;
  }

  /* Flowchart */
  .flowchart-card {
    padding: 1.2rem;
  }

  .flowchart-card h3 {
    font-size: 0.95rem;
  }

  .flowchart-card p {
    font-size: 0.8rem;
  }

  .flowchart-step {
    padding: 1rem 0 1rem 45px !important;
  }

  /* Marquee */
  .marq-item {
    font-size: 0.65rem;
    padding-right: 2rem;
  }

  .brand-logo-img {
    height: 1.2em;
    margin-right: 0.4rem;
  }

  /* Sell tabs */
  .sell-tab {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }

  /* Scroll top */
  #scrollTop {
    bottom: 1rem;
    right: 0.8rem;
    width: 34px;
    height: 34px;
  }

  .wa-btn {
    bottom: 1rem;
    right: 0.8rem;
    width: 44px;
    height: 44px;
  }
}

/* ── 360px — Extra small phone ────────────── */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.2rem;
  }

  .hero-sub {
    font-size: 0.75rem;
  }

  .sec-title {
    font-size: 1.2rem;
  }

  .nav-logo img {
    height: 38px;
    margin-top: -3px;
    margin-bottom: -3px;
  }

  .btn-p,
  .btn-s {
    padding: 0.65rem 1rem;
    font-size: 0.75rem;
  }

  .sell-form-card {
    padding: 1.2rem;
  }

  .about-stat-num {
    font-size: 1.4rem;
  }

  .about-stat-lbl {
    font-size: 0.6rem;
  }
}

/* ── Landscape phone optimization ─────────── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    min-height: auto;
  }

  .hero-con-center {
    min-height: auto;
    padding-top: 5rem !important;
    padding-bottom: 2rem !important;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-sub {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .hero-perks {
    margin-bottom: 1rem;
  }

  #loader {
    gap: 0.8rem;
  }

  .ld-logo-img {
    height: 80px;
  }

  .ld-logo {
    font-size: 1.8rem;
  }

  .ld-rpm-wrap {
    width: min(200px, 60vw);
  }
}