/* ═══════════════════════════════════════════
   SCROLL LANDING — premium scroll experience
   ═══════════════════════════════════════════ */

:root {
  --scroll-progress: 0;
  --bg-scale: 1;
  --bg-y: 0px;
}

.app-bg {
  transform: scale(var(--bg-scale)) translateY(var(--bg-y));
  transition: transform 0.08s linear;
  will-change: transform;
}

body.auth-open .app-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(6, 8, 14, calc(0.05 + var(--scroll-progress) * 0.15)) 0%,
      rgba(6, 8, 14, calc(0.25 + var(--scroll-progress) * 0.35)) 40%,
      rgba(8, 12, 22, calc(0.85 + var(--scroll-progress) * 0.1)) 75%,
      rgba(8, 12, 22, 0.98) 100%
    );
}

#screen-auth {
  display: block;
  padding: 0;
  overflow: hidden;
  height: 100dvh;
}

#screen-auth.hidden {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

#screen-app:not(.hidden) {
  position: relative;
  z-index: 40;
  isolation: isolate;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 300;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.scroll-progress-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), #6ec5ff, var(--gold));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
  box-shadow: 0 0 12px rgba(255, 207, 92, 0.5);
}

.scroll-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: screen;
}

.landing-scroll {
  height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-bottom: 64px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  position: relative;
  z-index: 2;
}

.land-section {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: max(80px, calc(env(safe-area-inset-top) + 60px)) 24px 48px;
}

.land-parallax {
  transform: translateY(var(--parallax-y, 0));
  will-change: transform;
}

/* ─── HERO ─── */
.land-hero {
  min-height: 100dvh;
  justify-content: flex-end;
  padding-bottom: 100px;
  text-align: center;
  overflow: hidden;
  perspective: 900px;
}

/* Futuristic overlay layers */
.hero-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.fx-grid {
  position: absolute;
  left: -50%;
  right: -50%;
  bottom: -10%;
  height: 55%;
  background:
    linear-gradient(rgba(255, 207, 92, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 180, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: rotateX(68deg);
  transform-origin: center bottom;
  animation: gridScroll 12s linear infinite;
  mask-image: linear-gradient(to top, black 20%, transparent 85%);
  -webkit-mask-image: linear-gradient(to top, black 20%, transparent 85%);
}
@keyframes gridScroll {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 48px, 48px 0; }
}

.fx-aurora {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(255, 207, 92, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 35% at 80% 20%, rgba(14, 165, 233, 0.1), transparent 45%),
    radial-gradient(ellipse 40% 30% at 50% 60%, rgba(120, 80, 255, 0.06), transparent 40%);
  animation: auroraShift 8s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}
@keyframes auroraShift {
  from { transform: translate(0, 0) scale(1); opacity: 0.7; }
  to { transform: translate(3%, -2%) scale(1.05); opacity: 1; }
}

.fx-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.04) 2px,
    rgba(0, 0, 0, 0.04) 4px
  );
  opacity: 0.5;
}

.fx-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
}

.fx-orbs { position: absolute; inset: 0; }
.fx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: orbDrift 10s ease-in-out infinite;
}
.fx-orb-1 {
  width: 180px; height: 180px;
  top: 15%; left: 10%;
  background: rgba(255, 207, 92, 0.15);
}
.fx-orb-2 {
  width: 140px; height: 140px;
  top: 25%; right: 8%;
  background: rgba(14, 165, 233, 0.12);
  animation-delay: -3s;
}
.fx-orb-3 {
  width: 100px; height: 100px;
  bottom: 30%; left: 50%;
  background: rgba(180, 140, 255, 0.1);
  animation-delay: -6s;
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, -15px); }
  66% { transform: translate(-15px, 10px); }
}

.fx-hud {
  position: absolute;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: rgba(255, 207, 92, 0.45);
  text-transform: uppercase;
  padding: 12px;
}
.fx-hud::before,
.fx-hud::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: rgba(255, 207, 92, 0.35);
  border-style: solid;
}
.fx-hud-tl { top: 80px; left: 16px; }
.fx-hud-tl::before { top: 0; left: 0; border-width: 2px 0 0 2px; }
.fx-hud-tr { top: 80px; right: 16px; }
.fx-hud-tr::before { top: 0; right: 0; border-width: 2px 2px 0 0; }
.fx-hud-bl { bottom: 120px; left: 16px; }
.fx-hud-bl::before { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.fx-hud-br { bottom: 120px; right: 16px; }
.fx-hud-br::before { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.land-hero-inner {
  position: relative;
  z-index: 2;
  will-change: transform, opacity;
  transition: transform 0.15s ease-out;
}

.logo-orbit-wrap {
  position: relative;
  width: min(220px, 58vw);
  height: min(220px, 58vw);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
  animation: ringSpin linear infinite;
}
.logo-ring-1 {
  inset: 0;
  border-color: rgba(255, 207, 92, 0.25);
  border-top-color: var(--gold);
  border-right-color: rgba(255, 207, 92, 0.5);
  animation-duration: 8s;
  box-shadow: 0 0 20px rgba(255, 207, 92, 0.15), inset 0 0 20px rgba(255, 207, 92, 0.05);
}
.logo-ring-2 {
  inset: 12px;
  border-color: rgba(100, 180, 255, 0.15);
  border-bottom-color: rgba(100, 180, 255, 0.5);
  animation-duration: 12s;
  animation-direction: reverse;
}
.logo-ring-3 {
  inset: 24px;
  border: 1px dashed rgba(255, 207, 92, 0.2);
  animation-duration: 20s;
}

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

.logo-circle {
  width: min(160px, 42vw);
  height: min(160px, 42vw);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  border: 2px solid rgba(255, 207, 92, 0.5);
  box-shadow:
    0 0 32px rgba(255, 207, 92, 0.3),
    0 12px 40px rgba(0, 0, 0, 0.5),
    inset 0 0 20px rgba(255, 207, 92, 0.1);
  animation: heroFloat 5s ease-in-out infinite, logoPulse 3s ease-in-out infinite;
  clip-path: circle(50% at 50% 50%);
  -webkit-clip-path: circle(50% at 50% 50%);
}

.land-hero-mark {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  clip-path: circle(50% at 50% 50%);
  -webkit-clip-path: circle(50% at 50% 50%);
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes logoPulse {
  0%, 100% {
    box-shadow:
      0 0 28px rgba(255, 207, 92, 0.2),
      0 16px 48px rgba(0, 0, 0, 0.55),
      inset 0 0 20px rgba(255, 207, 92, 0.06);
  }
  50% {
    box-shadow:
      0 0 48px rgba(255, 207, 92, 0.45),
      0 16px 48px rgba(0, 0, 0, 0.55),
      inset 0 0 32px rgba(255, 207, 92, 0.12);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 207, 92, 0.85);
  background: rgba(255, 207, 92, 0.06);
  border: 1px solid rgba(255, 207, 92, 0.25);
  backdrop-filter: blur(8px);
  animation: badgeIn 1s ease 0.3s both;
}
@keyframes badgeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulseDot 1.5s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.land-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.15;
  position: relative;
}

.land-hero-title .char {
  display: inline-block;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 45%, #6ec5ff 70%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: charIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both, shimmer 4s linear infinite;
  animation-delay: calc(var(--i) * 0.04s), 0s;
}

.land-hero-title .char-space { width: 0.35em; }

@keyframes charIn {
  from {
    opacity: 0;
    transform: translateY(30px) rotateX(-40deg);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.land-hero-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), #6ec5ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: glitchFlash 5s infinite;
  pointer-events: none;
  clip-path: inset(0);
}

@keyframes glitchFlash {
  0%, 92%, 100% { opacity: 0; transform: none; clip-path: inset(0); }
  93% { opacity: 0.8; transform: translateX(-3px); clip-path: inset(20% 0 60% 0); }
  94% { opacity: 0; transform: translateX(3px); clip-path: inset(60% 0 10% 0); }
  95% { opacity: 0.6; transform: none; clip-path: inset(40% 0 30% 0); }
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.land-hero-sub {
  margin-top: 16px;
  font-size: clamp(0.95rem, 3.5vw, 1.15rem);
  color: var(--silver);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  animation: subGlow 3s ease-in-out infinite;
}
@keyframes subGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(255, 207, 92, 0); }
  50% { text-shadow: 0 0 20px rgba(255, 207, 92, 0.25); }
}

.land-hero-desc {
  margin-top: 20px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  animation: badgeIn 1s ease 0.8s both;
}

.hero-data-stream {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
  opacity: 0.4;
}
.hero-data-stream span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--gold);
  animation: dataBlink 2s ease-in-out infinite;
}
.hero-data-stream span:nth-child(2) { animation-delay: 0.3s; }
.hero-data-stream span:nth-child(3) { animation-delay: 0.6s; }
.hero-data-stream span:nth-child(4) { animation-delay: 0.9s; }
.hero-data-stream span:nth-child(5) { animation-delay: 1.2s; }
@keyframes dataBlink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; text-shadow: 0 0 8px rgba(255, 207, 92, 0.6); }
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  animation: bounceHint 2s ease-in-out infinite;
  transition: opacity 0.3s, visibility 0.3s;
  pointer-events: auto;
}

.scroll-hint.is-hidden {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
  animation: none;
}
.scroll-hint-chevron {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  margin-top: -8px;
}
@keyframes bounceHint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }

.section-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  text-align: center;
}
.section-title span { color: var(--gold); }

/* ─── PINNED FEATURES (LoanPro-style) ─── */
.land-features {
  height: 420vh;
  min-height: auto;
  padding: 0;
  display: block;
}

.land-features-sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 40px;
  pointer-events: none;
}

.feature-stage {
  width: 100%;
  max-width: 520px;
  position: relative;
  min-height: 420px;
}

.feature-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(40px) scale(0.94);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.feature-panel.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.feature-visual {
  width: min(280px, 75vw);
  height: min(280px, 75vw);
  border-radius: 28px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-visual-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(255, 207, 92, 0.25), transparent 60%);
  animation: pulseGlow 3s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.feature-num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 207, 92, 0.25);
  line-height: 1;
}

.feature-panel h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.feature-panel p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 360px;
}

.feature-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}
.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s;
}
.feature-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--gold);
}

/* ─── STATS ─── */
.land-stats {
  text-align: center;
  min-height: 80dvh;
}

.land-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 520px;
  margin: 32px auto 0;
}
.land-stat {
  padding: 24px 12px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid var(--gold-border);
}
.land-stat-val {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.land-stat-lbl {
  margin-top: 8px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── MARQUEE ─── */
.land-marquee-wrap {
  overflow: hidden;
  padding: 48px 0;
  border-top: 1px solid rgba(255, 207, 92, 0.12);
  border-bottom: 1px solid rgba(255, 207, 92, 0.12);
  background: rgba(0, 0, 0, 0.2);
}
.land-marquee {
  display: flex;
  gap: 48px;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.land-marquee span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 207, 92, 0.45);
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── CTA + AUTH ─── */
.land-cta {
  text-align: center;
  min-height: 70dvh;
  justify-content: center;
}

.land-cta .btn-primary {
  max-width: 280px;
  margin: 24px auto 0;
}

.land-auth {
  min-height: auto;
  padding-bottom: max(80px, calc(env(safe-area-inset-bottom) + 56px));
  justify-content: flex-start;
  position: relative;
  z-index: 50;
  isolation: isolate;
}

body.landing-at-auth #landing-scroll > .land-section:not(.land-auth) {
  pointer-events: none;
}

body.landing-at-auth .scroll-section-nav {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.land-auth .auth-card {
  margin-top: 0;
  opacity: 1;
  transform: none;
  position: relative;
  z-index: 6;
  pointer-events: auto;
}

.landing-enter-bar {
  position: fixed;
  top: max(12px, env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%);
  z-index: 250;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(15, 28, 60, 0.92);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.hero-enter-app {
  margin-top: 22px;
}

/* ─── SHOWCASE (LoanPro split sticky) ─── */
.land-showcase {
  height: 450vh;
  min-height: auto;
  padding: 0;
  display: block;
}

.showcase-sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: max(72px, env(safe-area-inset-top)) 24px 40px;
  gap: 20px;
  pointer-events: none;
}

.showcase-kicker {
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 207, 92, 0.65);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.showcase-copy {
  position: relative;
  min-height: 220px;
}

.showcase-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(32px) scale(0.96);
  transition: opacity 0.55s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.showcase-scene.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.showcase-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 207, 92, 0.18);
  margin-bottom: 8px;
}

.showcase-scene h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.showcase-scene h2 span { color: var(--gold); }

.showcase-scene > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.showcase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.showcase-list li {
  font-size: 13px;
  font-weight: 600;
  padding-left: 18px;
  position: relative;
  color: var(--silver);
}

.showcase-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.showcase-visual {
  display: flex;
  justify-content: center;
}

.showcase-frame {
  position: relative;
  width: min(320px, 88vw);
  aspect-ratio: 1;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transform: perspective(800px) rotateY(var(--showcase-tilt, 0deg));
  transition: transform 0.2s ease-out;
}

.showcase-frame-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(255, 207, 92, 0.35), transparent 55%);
  animation: pulseGlow 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.showcase-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.showcase-img.active {
  opacity: 1;
  transform: scale(1);
}

.showcase-scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 40%, rgba(255, 207, 92, 0.08) 50%, transparent 60%);
  animation: showcaseScan 3s linear infinite;
  pointer-events: none;
}

@keyframes showcaseScan {
  from { transform: translateY(-100%); }
  to { transform: translateY(100%); }
}

.showcase-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.showcase-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.35s;
}

.showcase-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--gold);
}

/* ─── BENEFITS GRID ─── */
.land-benefits {
  min-height: 90dvh;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 560px;
  margin: 28px auto 0;
}

@media (min-width: 640px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

.benefit-card {
  padding: 18px 14px;
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(12px);
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(255, 207, 92, 0.12);
}

.benefit-card span {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 8px;
}

.benefit-card strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.benefit-card p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}

/* ─── JOURNEY TIMELINE ─── */
.land-journey {
  height: 380vh;
  min-height: auto;
  padding: 0;
  display: block;
}

.journey-sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: max(72px, env(safe-area-inset-top)) 24px 48px;
  pointer-events: none;
}

.journey-wrap {
  position: relative;
  max-width: 480px;
  margin: 24px auto 0;
  padding-left: 28px;
}

.journey-rail {
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.journey-rail-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--gold), #6ec5ff);
  border-radius: 4px;
  transition: height 0.15s linear;
  box-shadow: 0 0 12px rgba(255, 207, 92, 0.5);
}

.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.journey-step {
  opacity: 0.35;
  transform: translateX(0);
  transition: opacity 0.4s, transform 0.4s;
}

.journey-step.active {
  opacity: 1;
  transform: translateX(4px);
}

.journey-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}

.journey-step strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.journey-step p {
  font-size: 13px;
  color: var(--muted);
}

/* ─── SECTION NAV ─── */
.scroll-section-nav {
  position: fixed;
  right: max(10px, env(safe-area-inset-right));
  top: 50%;
  transform: translateY(-50%);
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 6px;
  border-radius: 20px;
  background: rgba(8, 12, 24, 0.55);
  border: 1px solid rgba(255, 207, 92, 0.15);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.scroll-section-nav.is-auth-view {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.scroll-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s;
  pointer-events: auto;
}

.scroll-nav-dot.active {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(255, 207, 92, 0.6);
  transform: scale(1.25);
}

.scroll-nav-dot:hover {
  background: rgba(255, 207, 92, 0.7);
}

@media (max-width: 480px) {
  .scroll-section-nav { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-canvas { display: none; }
  .hero-fx { display: none; }
  .land-hero-mark { animation: none; }
  .logo-circle { animation: none; }
  .land-hero-title .char { animation: none; -webkit-text-fill-color: var(--text); }
  .land-hero-title::after { display: none; }
  .logo-ring { animation: none; }
  .scroll-hint { animation: none; }
  .land-marquee { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .feature-panel { position: relative; opacity: 1; transform: none; margin-bottom: 48px; }
  .land-features { height: auto; }
  .land-features-sticky { position: relative; height: auto; }
  .feature-stage { min-height: auto; }
  .land-showcase { height: auto; }
  .showcase-sticky { position: relative; height: auto; }
  .showcase-scene { position: relative; opacity: 1; transform: none; margin-bottom: 32px; }
  .showcase-img { position: relative; opacity: 1; transform: none; margin-bottom: 12px; }
  .showcase-frame { aspect-ratio: auto; height: 200px; }
  .land-journey { height: auto; }
  .journey-sticky { position: relative; height: auto; }
  .journey-step { opacity: 1; }
}

@media (min-width: 768px) {
  .land-section { padding-left: 48px; padding-right: 48px; }
  .feature-stage { max-width: 640px; min-height: 480px; }
}

/* ─── HERO LINKS ─── */
.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

/* ─── PORTFOLIO ─── */
.land-portfolio,
.land-reviews,
.land-articles-preview {
  padding-top: 48px;
  padding-bottom: 48px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 920px;
  margin: 24px auto 0;
}

@media (min-width: 640px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

.portfolio-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 207, 92, 0.18);
  background: rgba(8, 12, 24, 0.55);
  transform: translateY(var(--parallax-y, 0));
}

.portfolio-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.portfolio-item figcaption {
  padding: 10px 12px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}

/* ─── REVIEWS ─── */
.reviews-grid {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 24px auto 0;
}

@media (min-width: 640px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

.review-card {
  margin: 0;
  padding: 20px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 207, 92, 0.15);
  background: rgba(8, 12, 24, 0.55);
  transform: translateY(var(--parallax-y, 0));
}

.review-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--silver);
  font-style: italic;
}

/* ─── ARTICLES PREVIEW ─── */
.articles-preview-grid {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 24px auto 0;
}

@media (min-width: 640px) {
  .articles-preview-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

.article-preview-card {
  padding: 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 207, 92, 0.15);
  background: rgba(8, 12, 24, 0.55);
  transform: translateY(var(--parallax-y, 0));
}

.article-preview-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.article-preview-card h3 {
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.article-preview-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}
